AutoHotkey Community

It is currently May 22nd, 2012, 1:12 pm

All times are UTC [ DST ]


Search found 245 matches
Search these results:

Author Message

 Forum: Support   Topic: BlockInput

Posted: May 25th, 2006, 5:42 pm 

Replies: 3
Views: 708


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.

 Forum: Support   Topic: Adding to a variable - just don't get it right

Posted: May 25th, 2006, 4:48 pm 

Replies: 4
Views: 648


I don't know what you mean by "change variables on the fly," but the syntax for adding 5 is:

Code:
x = 5
x := x +5
msgbox %x% ;this will display 10


Notice, that is one line to increase a variable by 5. How much faster do you expect?

 Forum: Support   Topic: Modify Files

Posted: May 25th, 2006, 1:11 pm 

Replies: 6
Views: 737


Use Pearl.

 Forum: Support   Topic: How can I make a pop-up menu and activate it with hotkey?

Posted: May 25th, 2006, 12:35 pm 

Replies: 8
Views: 818


Code:
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:
msgbox 003
return

#/::Menu PopMenu, Show


You had the Menu arguments slightly wrong.

 Forum: Support   Topic: How to send affirmation to dos prompt?

Posted: May 24th, 2006, 7:25 pm 

Replies: 6
Views: 790


Code:
Settitlematchmode, 2
ifwinexist, command
winactivate, command
Send, Y

 Forum: Support   Topic: where can i get WinSpector Spy ??

Posted: May 24th, 2006, 7:22 pm 

Replies: 7
Views: 7716


http://www.autohotkey.com/forum/viewtop ... highlight=

 Forum: Support   Topic: Modify Files

Posted: May 24th, 2006, 4:44 pm 

Replies: 6
Views: 737


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.

 Forum: Support   Topic: Stringsplit Help

Posted: May 23rd, 2006, 6:56 pm 

Replies: 4
Views: 647


Hint:
The number of characters from the right will always be 8. So read from the right first. Then just grab whatever is left.

 Forum: Support   Topic: new to IF function and need some minor help

Posted: May 23rd, 2006, 4:24 pm 

Replies: 3
Views: 675


No. You ask three different questions. And you don't provide enough information to create a sample script. Please elaborate exactly what you want.

 Forum: Support   Topic: variable problems in first run

Posted: May 23rd, 2006, 2:57 pm 

Replies: 5
Views: 705


At the start of the script add:

Code:
Clipboard =

 Forum: Support   Topic: help with script for juke box project

Posted: May 15th, 2006, 8:02 pm 

Replies: 3
Views: 685


Read the documentation for:

InputBox
WinActivate
Send

Those will be the basis for such a script.

 Forum: Support   Topic: how to write % signs to a batch file

Posted: May 15th, 2006, 7:58 pm 

Replies: 2
Views: 668


Escape character = `

 Forum: Support   Topic: how to create a autopistol macro?

Posted: May 12th, 2006, 4:37 pm 

Replies: 6
Views: 925


Code:
x::Send {space 10}

 Forum: Support   Topic: remapping MS mouse tilt-wheel

Posted: May 8th, 2006, 5:56 pm 

Replies: 8
Views: 2938


The post from a few days ago

Another post about how to use a more-than-five-button mouse

 Forum: Support   Topic: remapping MS mouse tilt-wheel

Posted: May 8th, 2006, 4:13 pm 

Replies: 8
Views: 2938


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 many times before it). AHK is limited to a 5-button mouse, but there is a thread that talks about using additional...
Sort by:  
Page 1 of 17 [ Search found 245 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group