| Author |
Message |
Forum: Support Topic: Run scripts on different computers/accounts |
| IconBoy |
|
Posted: March 8th, 2012, 10:26 pm
|
|
Replies: 5 Views: 108
|
In my shortcuts.ahk file I have about 100 autocorrect tweaks and about 20 shortcuts for programs (the amount isn't relevant) so do I set errorlevel once for that ahk file or do I do it for each tweak in that file?
I'm a little confused.
Thanks. |
|
 |
Forum: Support Topic: Run scripts on different computers/accounts |
| IconBoy |
|
Posted: March 8th, 2012, 9:02 pm
|
|
Replies: 5 Views: 108
|
| I have my AHK scripts in AHK folder on Dropbox and want to run them on different computers (32 bit and 64 bit) with different accounts (e.g. Home office computer, family computer etc.) I thought I might need to do IF statements for each shortcut/tweak then realised it would be an ineffective way to ... |
|
 |
Forum: Support Topic: Autocorrect used to work but now it does not |
| IconBoy |
|
Posted: January 6th, 2012, 12:12 am
|
|
Replies: 1 Views: 85
|
| I just downloaded the latest AutoCorrect.ahk file and when I run it, this message pops up: http://s17.postimage.org/5k3xor7gf/Screen_Shot.jpg I have used AutoHotKey for many years and this is the first time this has happened. Autocorrect no longer loads and works. I reinstalled AHK with the latest d... |
|
 |
Forum: Support Topic: No scroll-wheel, use trackpad for middle click |
| IconBoy |
|
Posted: March 17th, 2010, 5:42 pm
|
|
Replies: 5 Views: 952
|
| I am finding now that I cannot Ctrl and select files in Explorer. I closed all my AHK scripts and restarted therm one-by-one and the culprit is the FavoriteFolder script. Somehow, it is "catching" the control key and stopping me from multiple selecting files. Any ideas on how to remedy thi... |
|
 |
Forum: Support Topic: No scroll-wheel, use trackpad for middle click |
| IconBoy |
|
Posted: March 4th, 2010, 5:15 pm
|
|
Replies: 5 Views: 952
|
Thank you for your expertise.
I had to delete the bottom } because AHK error said it was missing an {
Still no joy with the menu items coming up with the middle click. If I have the hotkey as f_Hotkey = MButton, then it works.
Appreciate the help you have given. |
|
 |
Forum: Support Topic: No scroll-wheel, use trackpad for middle click |
| IconBoy |
|
Posted: March 4th, 2010, 6:09 am
|
|
Replies: 5 Views: 952
|
| If you want psuedo Middle Click everywhere, instead of the above, add this line return ;----End of auto-execute section. [color=red]<^LButton::SendInput {MButton}[/color] ;<- add this line here This assumes you have FavoriteFolders running all the time. I did as you suggested and and adde... |
|
 |
Forum: Support Topic: AHK not working at all - calling SDR() function |
| IconBoy |
|
Posted: March 2nd, 2010, 5:45 pm
|
|
Replies: 1 Views: 386
|
| I am using the latest version of AHK which I just downloaded and my scripts (which I use regularly - synced across a couple of computers working great with DropBox) for some reason are not working on the one computer all of a sudden. The error I get is: Call to nonexistent function -----> 001: sdr... |
|
 |
Forum: Support Topic: No scroll-wheel, use trackpad for middle click |
| IconBoy |
|
Posted: March 2nd, 2010, 6:22 am
|
|
Replies: 5 Views: 952
|
| In a previous post http://www.autohotkey.com/forum/viewtopic.php?t=38799 , I asked about how to get a middle mouse button click when I don't have a mouse attached but instead, a trackpad. To complicate matters further, I am sometimes using a Mac with Windows on it (only one clickable button on the M... |
|
 |
Forum: Support Topic: Apostrophe T, or V with autocorrect |
| IconBoy |
|
Posted: February 17th, 2010, 10:03 pm
|
|
Replies: 4 Views: 252
|
| Has anyone come up with a better solution to check for words that need an apostrophe before the T or V like: cant -> can't shouldnt -> shouldn't shouldve -> should've At the moment, I have added all the words that I can think of that need the apostrophe and autocorrect as standalone entries, but fig... |
|
 |
Forum: Support Topic: Capitalizing "I" changes other hotkeys |
| IconBoy |
|
Posted: February 17th, 2010, 9:31 pm
|
|
Replies: 3 Views: 276
|
I am also running AutoCorrect with hundreds of entries in that file.
Could it be something to do with the fact that I use a period to start my shortcut and AutoCorrect is checking on that...? |
|
 |
Forum: Support Topic: Capitalizing "I" changes other hotkeys |
| IconBoy |
|
Posted: February 17th, 2010, 7:57 am
|
|
Replies: 3 Views: 276
|
| I am using ::i::I to capitalize the letter I whenever I type it in a sentence. Works great! But, I also have a hotkey shortcut that types out a word when I use period as a start to the hotkey: :*:.ib::Instant Band Instead of .ib giving me Instand Band , I get Instant BanI . If I delete the ::i::I co... |
|
 |
Forum: Support Topic: Windows and Mac shortcuts keys - swap around |
| IconBoy |
|
Posted: February 17th, 2010, 6:35 am
|
|
Replies: 4 Views: 560
|
| Reading through some help and posts, I came up with this: #W:: WinGetActiveTitle, ActiveTitle IfInString, ActiveTitle, Firefox send, ^w return It works great! But now, if I want to add IE and Firefox so Win+W closes tabs, the shortcut doesn't work: #W:: WinGetActiveTitle, ActiveTitle IfInString, Act... |
|
 |
Forum: Support Topic: Windows and Mac shortcuts keys - swap around |
| IconBoy |
|
Posted: February 15th, 2010, 10:09 pm
|
|
Replies: 4 Views: 560
|
Thank you. I will try it out and let you know.
By the way, is there a way to only have it work if Firefox or IE (or prograns I choose) are running. That way, it won't interfere with other programs. |
|
 |
Forum: Support Topic: Windows and Mac shortcuts keys - swap around |
| IconBoy |
|
Posted: February 15th, 2010, 8:58 pm
|
|
Replies: 4 Views: 560
|
| I am using both a Mac and a PC and because of the two systems, i am now used to closing tabs in Firefox with Command+W (or Win+W if using the Mac keyboard using bootcamp). Is there a clever way to "swap" the shortcuts, so that if I press Win+W, it will be the same as pressing Ctrl+W and th... |
|
 |
Forum: Support Topic: Run a program if exists or another if not |
| IconBoy |
|
Posted: February 5th, 2010, 6:10 am
|
|
Replies: 4 Views: 312
|
Thank you very much for all the help. An ifExist statement seemed to work.
Code: #N:: ifExist c:\Program Files\Notepad++\Notepad++.exe run c:\Program Files\Notepad++\Notepad++.exe else run c:\Windows\notepad.exe return |
|
 |
| Sort by: |