| Author |
Message |
Forum: Support Topic: What's happening with this variable? |
| t@k |
|
Posted: October 21st, 2006, 9:44 pm
|
|
Replies: 2 Views: 420
|
majkinetor wrote: place global keyword in functin to access global variables
Thanks majkinetor, sorry for the delay. |
|
 |
Forum: Support Topic: What's happening with this variable? |
| t@k |
|
Posted: October 13th, 2006, 6:25 pm
|
|
Replies: 2 Views: 420
|
| Could someone please explain why the variable holding the text to be displayed by the message box is empty, unless the message box is called by a subroutine? Gui, Add, GroupBox, , GroupBox Text = Message Gui, Show OnMessage(0x200, "WM_MOUSEMOVE") Return WM_MOUSEMOVE() {... |
|
 |
Forum: Support Topic: Call one script from another, exit both from first? |
| t@k |
|
Posted: July 30th, 2005, 3:58 pm
|
|
Replies: 3 Views: 612
|
| Thanks guys, the following works for me... ;Script 2 DetectHiddenWindows On ; Allows a script's hidden main window to be detected. SetTitleMatchMode 2 ; Avoids the need to specify the full path of the file below. run, script3.ahk ;Runs Script 3 Loop { ;Do stuff here with a conditional Break ... |
|
 |
Forum: Support Topic: Call one script from another, exit both from first? |
| t@k |
|
Posted: July 30th, 2005, 1:21 am
|
|
Replies: 3 Views: 612
|
| This is basically what I have... ;Script 1 - Define HotKeys F2::Run, script2.ahk ;Pressing F2 runs script 2 Return F3::Run, script3.ahk ;Pressing F3 runs script 3 Return ;Script 2 run, script3.ahk ;Runs Script 3 Loop { ;Do stuff here with a conditional Break } ExitApp $+F2:: ;Press Shift+F... |
|
 |
Forum: Support Topic: Convert hotkey to double-colon style |
| t@k |
|
Posted: July 7th, 2005, 1:23 am
|
|
Replies: 9 Views: 836
|
Ok guys this works...
Code: Loop { ;do stuff here } F2::ExitApp ;or F2::Pause
... but at the risk of sounding ungrateful, you all, including the help file, fail to mention that the hotkey goes at the end of the script.
Thanks all, I got there eventually.  |
|
 |
Forum: Support Topic: Convert hotkey to double-colon style |
| t@k |
|
Posted: July 6th, 2005, 1:48 pm
|
|
Replies: 9 Views: 836
|
| Ok, let me explain in a little more detail... I'm not a stranger to using automation programs, but I am at that stage in life where my learning capacity and memory retention is on the decline, so I tend to rely heavily on continual reference to working examples. What I am trying to achieve is a meth... |
|
 |
Forum: Scripts Topic: My script for automatic syntaxfile instalation for UltraEdit |
| t@k |
|
Posted: July 6th, 2005, 11:39 am
|
|
Replies: 57 Views: 18553
|
|
 |
Forum: Scripts Topic: My script for automatic syntaxfile instalation for UltraEdit |
| t@k |
|
Posted: July 6th, 2005, 10:59 am
|
|
Replies: 57 Views: 18553
|
I replace "`n" with a carriage return (new line)?
So Operators.txt => "=`n<`n>`n*`n/`n+`n-" should be ...Code: = < > * / + - and Separators.txt => "``n`n``r`n|`n,`n{`n}" should be...Code: `
``r | , { } Not entirely sure about the last one.
Thanks. |
|
 |
Forum: Support Topic: Convert hotkey to double-colon style |
| t@k |
|
Posted: July 6th, 2005, 4:18 am
|
|
Replies: 9 Views: 836
|
| Hi from a newcomer. I understand how the following script (adapted from helpfile hotkey example) works... Hotkey, F2, MyLabel Loop { WinWait, UltraEdit-32, IfWinNotActive, UltraEdit-32, , WinActivate, UltraEdit-32 WinWaitActive, UltraEdit-32, Send, Some text. Sleep, 500 Send, +{HOME}&... |
|
 |
Forum: Scripts Topic: My script for automatic syntaxfile instalation for UltraEdit |
| t@k |
|
Posted: July 6th, 2005, 3:46 am
|
|
Replies: 57 Views: 18553
|
| I tried the latest update but got the following error... AHK Syntax file(s) Operators.txt Separators.txt Special.txt cannot be found in G:\My Program Files\AutoHotkey\Extras\Editors\Syntax\. ... but I noticed this in the comments... Operators.txt => "=`n<`n>`n*`n/`n+`n-" Separators.txt => "``n`n``r`... |
|
 |
| Sort by: |