| Author |
Message |
Topic: BlockInput |
Greg
Replies: 3
Views: 329
|
Forum: Ask for Help Posted: Thu May 25, 2006 5:42 pm Subject: BlockInput |
| Assuming the pen is in place of a mouse, BlockInput with the mouse argument should work. If not, you could try to just make a blank click hotkey and turn it on or off when needed. |
Topic: Adding to a variable - just don't get it right |
Greg
Replies: 4
Views: 286
|
Forum: Ask for Help Posted: Thu May 25, 2006 4:48 pm Subject: Adding to a variable - just don't get it right |
I don't know what you mean by "change variables on the fly," but the syntax for adding 5 is:
x = 5
x := x +5
msgbox %x% ;this will display 10
Notice, that is one line to increase ... |
Topic: Modify Files |
Greg
Replies: 6
Views: 354
|
Forum: Ask for Help Posted: Thu May 25, 2006 1:11 pm Subject: Modify Files |
| Use Pearl. |
Topic: How can I make a pop-up menu and activate it with hotkey? |
Greg
Replies: 8
Views: 387
|
Forum: Ask for Help Posted: Thu May 25, 2006 12:35 pm Subject: How can I make a pop-up menu and activate it with hotkey? |
Menu PopMenu, Add, Pop1, cmd001
Menu PopMenu, Add, Pop2, cmd002
Menu PopMenu, Add, Pop3, cmd003
return
cmd001:
msgbox 001
return
cmd002:
msgbox 002
return
cmd003:
msgbo ... |
Topic: How to send affirmation to dos prompt? |
Greg
Replies: 6
Views: 375
|
Forum: Ask for Help Posted: Wed May 24, 2006 7:25 pm Subject: How to send affirmation to dos prompt? |
Settitlematchmode, 2
ifwinexist, command
winactivate, command
Send, Y
|
Topic: where can i get WinSpector Spy ?? |
Greg
Replies: 5
Views: 471
|
Forum: Ask for Help Posted: Wed May 24, 2006 7:22 pm Subject: where can i get WinSpector Spy ?? |
| http://www.autohotkey.com/forum/viewtopic.php?t=7595 |
Topic: Modify Files |
Greg
Replies: 6
Views: 354
|
Forum: Ask for Help Posted: Wed May 24, 2006 4:44 pm Subject: Modify Files |
| You can't change the contents of the file directly. You will have to read ijn the contents to a variable and change the variable, then store it back to a file. |
Topic: Stringsplit Help |
Greg
Replies: 4
Views: 282
|
Forum: Ask for Help Posted: Tue May 23, 2006 6:56 pm Subject: Stringsplit Help |
Hint:
The number of characters from the right will always be 8. So read from the right first. Then just grab whatever is left. |
Topic: new to IF function and need some minor help |
Greg
Replies: 3
Views: 301
|
Forum: Ask for Help Posted: Tue May 23, 2006 4:24 pm Subject: new to IF function and need some minor help |
| No. You ask three different questions. And you don't provide enough information to create a sample script. Please elaborate exactly what you want. |
Topic: variable problems in first run |
Greg
Replies: 5
Views: 306
|
Forum: Ask for Help Posted: Tue May 23, 2006 2:57 pm Subject: variable problems in first run |
At the start of the script add:
Clipboard = |
Topic: help with script for juke box project |
Greg
Replies: 3
Views: 307
|
Forum: Ask for Help Posted: Mon May 15, 2006 8:02 pm Subject: help with script for juke box project |
Read the documentation for:
InputBox
WinActivate
Send
Those will be the basis for such a script. |
Topic: how to write % signs to a batch file |
Greg
Replies: 2
Views: 309
|
Forum: Ask for Help Posted: Mon May 15, 2006 7:58 pm Subject: how to write % signs to a batch file |
| Escape character = ` |
Topic: how to create a autopistol macro? |
Greg
Replies: 6
Views: 471
|
Forum: Ask for Help Posted: Fri May 12, 2006 4:37 pm Subject: how to create a autopistol macro? |
| x::Send {space 10} |
Topic: remapping MS mouse tilt-wheel |
Greg
Replies: 5
Views: 719
|
Forum: Ask for Help Posted: Mon May 08, 2006 5:56 pm Subject: remapping MS mouse tilt-wheel |
[url=http://www.autohotkey.com/forum/viewtopic.php?t=9638]The post from a few days ago
[url=http://www.autohotkey.com/forum/viewtopic.php?t=6203xbutton3]Another post a ... |
Topic: remapping MS mouse tilt-wheel |
Greg
Replies: 5
Views: 719
|
Forum: Ask for Help Posted: Mon May 08, 2006 4:13 pm Subject: remapping MS mouse tilt-wheel |
Use KeyHistory to determine the name of that button. Then do:
Name Of Button::Send {Alt Down}{Left}{Alt Up}
A question like this came up the other day (and m ... |
| |