| Author |
Message |
Topic: Hotstring does not work with SP option --Vista problem? |
TAB4217
Replies: 2
Views: 219
|
Forum: Ask for Help Posted: Sat Mar 06, 2010 4:38 pm Subject: Hotstring does not work with SP option --Vista problem? |
search the forum for "sendplay vista" and you will find the answer.
Thank you! Since I don't want to monkey with security and disable UAC, I'll try to avoid play mode entirely. |
Topic: Hotstring containing hotkey does not work |
TAB4217
Replies: 5
Views: 502
|
Forum: Ask for Help Posted: Sat Mar 06, 2010 3:09 pm Subject: Hotstring containing hotkey does not work |
#Hotstring R * SE ;use "send raw", immediate replace
#UseHook
~t:: Send {BackSpace}t ;Hot_t
::rss::Hello there!
::rst::works!
OK,that ... |
Topic: Hotstring does not work with SP option --Vista problem? |
TAB4217
Replies: 2
Views: 219
|
Forum: Ask for Help Posted: Sat Mar 06, 2010 1:53 pm Subject: Hotstring does not work with SP option --Vista problem? |
#Hotstring * SP ; immediate replace, use "send play",
::abc::Hello there!
type 'abc' get 'ab': the 'c' is held up, the hotstring not processed. Why?
Remove the option SP ... |
Topic: Hotstring containing hotkey does not work |
TAB4217
Replies: 5
Views: 502
|
Forum: Ask for Help Posted: Fri Mar 05, 2010 9:58 am Subject: Hotstring containing hotkey does not work |
Hotstrings can never be triggered by keystrokes produced by any AutoHotkey script. This avoids the possibility of an infinite loop where hotstrings trigger each other over and over.
I agree. So, wh ... |
Topic: Hotstring containing hotkey does not work |
TAB4217
Replies: 5
Views: 502
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 11:10 pm Subject: Hotstring containing hotkey does not work |
#Hotstring R * SE ;use "send raw", immediate replace
#UseHook
t:: Send t
::rss::Hello there!
::rst::Does not work
rss works fine; rst does not -- ... |
Topic: $ hotkeys have 'priority' over 'normal' hotkeys |
TAB4217
Replies: 0
Views: 238
|
Forum: Ask for Help Posted: Thu Feb 25, 2010 12:02 pm Subject: $ hotkeys have 'priority' over 'normal' hotkeys |
SetKeyDelay 0 ; can be incresed to 999 without any change to the test results
a::Send UVW
$b::Send XYZ
$j::Send JK
c::Send PQ
d::Send aMb
e::Send ... |
Topic: post mode |
TAB4217
Replies: 2
Views: 196
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 4:16 pm Subject: Re: post mode |
What browser r u using?
FireFox 3.6
Can you copy paste the entire err msg?
Information
No post mode specified
Powered by phpBB © 2001, 2005 phpBB Group |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 4:00 pm Subject: Re: inverted sends |
it's completely intuitive for Send
OK; I was referring to the effect of #UseHook.
...(z was not part of this other question before now)
It was 'e' in previous post --2010 Feb Mon 22, 11:20 am
Se ... |
Topic: post mode |
TAB4217
Replies: 2
Views: 196
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 2:14 pm Subject: post mode |
| What's a 'post mode'? Half of my posts --either Preview or Submit-- fail with a 'no post mode specified' msg. |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 2:05 pm Subject: inverted sends |
#UseHook
SetKeyDelay, 119 ;//to ensure sent keys don't get jumbled
a::Send, UVW
b::Send, XYZ
c::Send, ab
d::SendInput, ab
e::Send, ba
...you must e ... |
Topic: Cannot use compiled help file |
TAB4217
Replies: 1
Views: 329
|
Forum: Ask for Help Posted: Tue Feb 23, 2010 3:55 pm Subject: Cannot use compiled help file |
When I try a compiled help file (AutoHotKey.chm, QuickAHK.chm)
I get
Navigation to the webpage was canceled
Why? What's the remedy?javascript:emoticon(' ')
What's a 'post mode'? Half of my post ... |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Tue Feb 23, 2010 1:39 pm Subject: AHK version |
Hover your mouse over the exe file itself, it should bring up a tooltip with the file version.
OK: 1.0.48.5 |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Mon Feb 22, 2010 9:20 pm Subject: version number |
| Where to find the version number? |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Mon Feb 22, 2010 8:53 pm Subject: prevent hotkey execution; hotkeys executed in reverse order |
Not true. I tried it:
Hit a, get UVW
Hit b, get XYZ
Hit c, get UVWXYZ not ab
Hit d, get UVWXYZ not ab
And you don't explain why, in the script I used, hitting 'c' or 'd' gives 'bUVW' instead of t ... |
Topic: How to send a string really raw? |
TAB4217
Replies: 13
Views: 421
|
Forum: Ask for Help Posted: Mon Feb 22, 2010 6:01 pm Subject: How to send a string really raw? |
Thank you! However, I ran into some weird behaviour:
SetKeyDelay 800 ; to ensure sent keys don't get jumbled
a:: send UVW
$b:: send XYZ
c:: send ab
d:: sendInput ... |
| |