| Author |
Message |
Forum: Gaming Topic: [release] RotMG, Realm of the Mad God, helper script |
| twiz |
|
Posted: March 1st, 2012, 6:54 pm
|
|
Replies: 8 Views: 2532
|
| Only thing that works for me is the Q shortcut. The AlwaysOnTop Window shows up with the word "Text" under a blue progress bar and nothing happens after that. I've got my character name image and measured the health bar and adjusted the size in the script. As a though, maybe include images... |
|
 |
Forum: Support Topic: Easy to make series of keybinds please help i don't know how |
| twiz |
|
Posted: February 25th, 2012, 9:40 pm
|
|
Replies: 4 Views: 105
|
| I believe what you need/want is very simple. Read here next time: http://www.autohotkey.com/docs/Tutorial.htm #NoEnv ;Disables looking for Environmental Variables #SingleInstance, Force ;Forces a single instance of the script F9:: Send /stopavi a{enter} Sleep 1000 Send /stopani b{ente... |
|
 |
Forum: Support Topic: Moving F1 key. |
| twiz |
|
Posted: February 4th, 2012, 6:01 pm
|
|
Replies: 5 Views: 152
|
|
 |
Forum: Support Topic: Moving F1 key. |
| twiz |
|
Posted: February 4th, 2012, 4:05 am
|
|
Replies: 5 Views: 152
|
Code: #IfWinActive, Battlefield 3 PgUp::Send q Numpad4::Send {F1} |
|
 |
Forum: Support Topic: SWTOR |
| twiz |
|
Posted: February 4th, 2012, 4:03 am
|
|
Replies: 7 Views: 447
|
| hey was wondering is there anything else i have to put in the code for star wars the old republic? also could you make it and upload it here for me? kinda new He DID make it... you just have to copy, paste then save it. If you are not able to copy/paste and save as a file, then maybe spend less tim... |
|
 |
Forum: Support Topic: Fileappend to top of text file? |
| twiz |
|
Posted: February 3rd, 2012, 9:35 pm
|
|
Replies: 7 Views: 165
|
'build up' your variable, in a loop or whatever, like so:
Code: ReverseOrder .= NewVar "`n" ReverseOrder
Then after you have it all 'reversed', outside the loop, write once to a file:
Code: FileAppend, %ReverseOrder%, C:\text.txt |
|
 |
Forum: Support Topic: Is it possible to use images (or icons) in a DropDownList |
| twiz |
|
Posted: February 3rd, 2012, 8:25 pm
|
|
Replies: 2 Views: 82
|
I have some small images (16x16px) that I'd like to use in place of text in a dropdownlist, but I can't find any way to use them.
Not sure if this is something beyond Autohotkey... (waits for an AHK guru to take that as a challenge). |
|
 |
Forum: Scripts Topic: Service() - Function set for Handling Windows Services |
| twiz |
|
Posted: January 23rd, 2012, 9:43 pm
|
|
Replies: 15 Views: 5714
|
| For some reason the Service_Stop() function only stops a function once per script run. After the first run, it would not stop the service, and the returned result would be blank. I asked about this in the #AHK IRC channel, and BamBam4275 took a look at it and fixed it up. Thanks again, BamBam4275! :... |
|
 |
Forum: Support Topic: Hotkey Remap to trigger other Hotkey |
| twiz |
|
Posted: November 21st, 2011, 9:21 pm
|
|
Replies: 7 Views: 181
|
| Have you tried this? xbutton1 & q:: SendInput, +u xbutton1 & W:: SendInput, +i xbutton1 & A:: SendInput, +j xbutton1 & S:: SendInput, +k xbutton1 & D:: SendInput, +l xbutton1 & F:: SendInput, +m "xbutton1::Shift" would set the xbutton1 to Shift so I don't think it w... |
|
 |
Forum: Support Topic: To launch a program in same folder |
| twiz |
|
Posted: November 19th, 2011, 10:05 pm
|
|
Replies: 3 Views: 89
|
Code: Run, Launcher.exe
But it just begs the question, why not just double click Launcher.exe? |
|
 |
Forum: Support Topic: Sending keys to Google Chrome page |
| twiz |
|
Posted: November 10th, 2011, 7:56 pm
|
|
Replies: 2 Views: 214
|
Still learning a bit myself, so I may not be the best to answer, but try this:
Code: SetTitleMatchMode, 2 WinName = Grooveshark ahk_class Chrome_WidgetWin_0 WinClass = Chrome_RenderWidgetHostHWND1
ControlSend, %WinClass%, <KeysToSend>, %WinName% |
|
 |
Forum: Support Topic: How to create a dead key? |
| twiz |
|
Posted: November 10th, 2011, 5:18 am
|
|
Replies: 5 Views: 144
|
| Stupid question, but if I downloaded AutoHotkey from the regular site, I probably don't have AutoHotkey_L, correct? It depends on which link you downloaded, there's AutoHotKey_L and AutoHotKey Basic. Both are offered on the download page. You want the top download from here , it's the one that &quo... |
|
 |
Forum: Support Topic: GUI/Menu - Getting ToggleCheck state |
| twiz |
|
Posted: November 9th, 2011, 12:52 am
|
|
Replies: 3 Views: 241
|
Thanks a bunch for that...
I came across the post last night during my searching, but skipped over it because I thought it was for external windows. I was hoping that since it was all being done by AHK, that there would be a simple way to get it's state internally. |
|
 |
Forum: Support Topic: format script for easy editing |
| twiz |
|
Posted: November 8th, 2011, 10:18 pm
|
|
Replies: 6 Views: 158
|
| For starters, combine the repeat keys: !A::SendInput {DOWN 5}23525{DOWN}fsdf{DOWN 4}32425{DOWN}dfgd{DOWN 4} I wasn't getting good results with splitting it up. Using "," at the start of the line gave commas in the text and using "(&quo... |
|
 |
Forum: Support Topic: Check if a hotkey is off |
| twiz |
|
Posted: November 8th, 2011, 9:51 pm
|
|
Replies: 2 Views: 87
|
| I'm not sure how to CHECK it and return the state, but if it's just a matter of turning on/off only, use: hotkey, <key> , toggle Pressing F1 will give you the popup, F2 will toggle the F1 hotkey between on and off. hotkey, F1, MyLabel hotkey, F2, OnOff return MyLabel: msgbox % A_ThisHotkey. return O... |
|
 |
| Sort by: |