AutoHotkey Community

It is currently May 23rd, 2012, 4:13 am

All times are UTC [ DST ]


Search found 3098 matches
Search these results:

Author Message

 Forum: Support   Topic: ALT+NUM##

Posted: March 8th, 2012, 10:06 pm 

Replies: 4
Views: 151


Did you look at the link I posted :?: Try this: Loop 10 Hotkey % "~!Numpad" A_Index-1 ,Label ;make hotkeys for all numpad numbers Return Label: Var.=SubStr(A_ThisHotkey,0) ;add the number of the key pressed to the var If (SubStr(Var,-2)=113) ;if the last three numbe...

 Forum: Support   Topic: ALT+NUM##

Posted: March 8th, 2012, 3:42 am 

Replies: 4
Views: 151


Mobile Phone Keyboard - Hotkeys don't work has examples of alt numpad hotkeys.

 Forum: Offtopic   Topic: Excel Freecell.

Posted: February 13th, 2012, 3:01 am 

Replies: 4
Views: 484


Generate a your cards in a column in order, then in the column next to it make a list of random numbers "=RAND()" then sort both columns by the random list. That should randomize your list of cards without being hard to remember. :)

 Forum: Support   Topic: Circle through set of characters

Posted: January 29th, 2012, 3:31 am 

Replies: 3
Views: 100


This is one way (not exacty what you asked for but should help)
Code:
var = áàa
index = 1
#a::
If (A_TimeSincePriorHotkey<600 && A_PriorHotkey=A_ThisHotkey)
{
index++
Send % "{bs}" Substr(var,Mod(index,3),1)
}
Else
Send a
Return

 Forum: Support   Topic: Switch X and Y mouse movemants.

Posted: January 19th, 2012, 6:32 am 

Replies: 4
Views: 189


This is one way :wink:
Code:
CoordMode, Mouse, Screen
SetBatchLines, -1
SetMouseDelay, -1

g::SetTimer, MoveIt, % (f:=!f) ? 5 : "Off"

MoveIt:
MousegetPos,a,b
MouseMove, x+(y-b), y+(a-x)
MouseGetPos, x,y
Return

 Forum: Support   Topic: Minecraft utility

Posted: January 15th, 2012, 9:18 am 

Replies: 2
Views: 111


ToggleVar:=0 f::ToggleVar:=!ToggleVar #If ToggleVar ;this directive is AHKL only $RButton:: While GetKeyState("RButton","P") { Send {RButton} Sleep 50 } Return Next time please post your failed code so we can help you learn. You should also read FAQ-G...

 Forum: Support   Topic: Script is still working when i'm log out. Is it possible ?

Posted: January 10th, 2012, 5:15 am 

Replies: 3
Views: 118


While Windows is locked windows can not become active but you can use ControlSend and ControlClick to interact with them.

 Forum: Support   Topic: Which areas of the registry are user-independent?

Posted: January 9th, 2012, 7:17 am 

Replies: 6
Views: 296


If you are using the regestry to store data between runs of the script, without a sperate file, you may want to consider FileStreams as an alternative.

 Forum: Support   Topic: Not sure what I am looking for

Posted: January 9th, 2012, 1:13 am 

Replies: 8
Views: 170


Code:
var=abc
i=0
1::Send % SubStr(var,Mod(i++,3)+1,1)

 Forum: Support   Topic: Modern Warfare 3 Hold Breath + Zoom help

Posted: January 9th, 2012, 1:10 am 

Replies: 8
Views: 288


Code:
KeyWait RButton ;wait for you to release RButton

 Forum: Support   Topic: Modern Warfare 3 Hold Breath + Zoom help

Posted: January 9th, 2012, 12:41 am 

Replies: 8
Views: 288


Please try putting the symbol in the place I put it into your code

 Forum: Support   Topic: Not sure what I am looking for

Posted: January 8th, 2012, 11:46 pm 

Replies: 8
Views: 170


Code:
1::Send % (i:=!i) ? "a" : "b"

 Forum: Support   Topic: Not sure if it can be done, some help needed.

Posted: January 8th, 2012, 11:41 pm 

Replies: 4
Views: 177


Code:
KeyWait Rbutton, t0.2 ;wait for Rbutton or 200ms whichever is shorter
If (Errorlevel=0)  ; errorlevel is set to 1 if keywait times out

 Forum: Support   Topic: SOLVED how to use scan code with another key as a hot key?

Posted: January 8th, 2012, 5:36 pm 

Replies: 3
Views: 119


Code:
SC02 & d::run d:\desktop

 Forum: Support   Topic: Modern Warfare 3 Hold Breath + Zoom help

Posted: January 8th, 2012, 4:27 am 

Replies: 8
Views: 288


Code:
~a::Send b ;you would get ab the non blocked a and the sent b
Sort by:  
Page 1 of 207 [ Search found 3098 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group