AutoHotkey Community

It is currently May 24th, 2012, 1:17 pm

All times are UTC [ DST ]


Search found 93 matches
Search these results:

Author Message

 Forum: Scripts   Topic: Crosshairs for ANY FPS

Posted: November 14th, 2011, 4:50 pm 

Replies: 4
Views: 418


Have you even tested it? because it doesnt work... your saving the mouse pos to xpos and ypos when your reading from Xpos and Ypos (note the capitals) and why are you taking 50 from x and taking no number from y (yet still including the minus sign?) it would be alright if it actually worked...

 Forum: Support   Topic: "Windows Live" Controls

 Post subject: "Windows Live" Controls
Posted: June 28th, 2011, 3:26 am 

Replies: 0
Views: 118


Programs by Windows Live have proven a little difficult for me to read\edit for example Windows Live Messenger instead of having a few edit controls and image controls for the display pictures, it uses one big control which has no text value or anything. In short and what I guess I'm asking would be...

 Forum: Support   Topic: Castlevania - SotN Sword brothers spell

Posted: June 26th, 2011, 2:40 pm 

Replies: 5
Views: 290


I attempted to make this aswell, Heres the code I used #InstallKeybdHook 1:: Send, {Left down} sleep 10 Send, {Left up} sleep 10 Send, {Right down} sleep 10 Send, {Down down} sleep 10 Send, {Right up} sleep 10 Send, {Left down} sleep 10 Sen...

 Forum: Support   Topic: Win+p to make windows recognise second monitor

Posted: June 8th, 2011, 2:46 pm 

Replies: 5
Views: 654


Wrong Section, go to "Ask for Help"
http://www.autohotkey.com/forum/viewforum.php?f=1

 Forum: Support   Topic: teach me to write some script please.

Posted: May 12th, 2011, 3:37 pm 

Replies: 7
Views: 213


http://www.autohotkey.com/docs/
Sorry I was going to post the link before but forgot I was posting then forgot the link.

 Forum: Support   Topic: teach me to write some script please.

Posted: May 12th, 2011, 3:12 pm 

Replies: 7
Views: 213


Look at the documentation at the Send command and Hotkeys

 Forum: Support   Topic: What do I need to add to this code?

Posted: May 6th, 2011, 9:24 pm 

Replies: 2
Views: 127


F1:: IfWinNotExist, SlingPlayer - My Slingbox { Run "C:\Program Files (x86)\Sling Media\SlingPlayer\SlingPlayer.exe" } if !toggle { WinMaximize, SlingPlayer - My Slingbox toggle := True } else { WinMinimize, SlingPlayer - My Slingbox toggle := False }...

 Forum: Support   Topic: Applying a Proxy just to one Program

Posted: April 6th, 2011, 10:54 am 

Replies: 2
Views: 152


Nahh this game doesn't have it anywhere, its programmed into it.

 Forum: Support   Topic: Applying a Proxy just to one Program

Posted: April 6th, 2011, 8:49 am 

Replies: 2
Views: 152


Would it be possible to use ahk to apply a proxy to a single application and\or any other child application of it? Like how changing Working directory for a program will affect any that it opens. The reason I would like this is because me and some friends have a game that looks up our skins when we ...

 Forum: Scripts   Topic: Mouse Numpad Grid

Posted: March 28th, 2011, 6:33 pm 

Replies: 2
Views: 1210


Upgraded your script, now it'll work with any resolution (No Multi-Monitor compatibility) #NoEnv #SingleInstance, force CoordMode, Mouse SetBatchLines -1 SetMouseDelay -1 #Include, Gdip.ahk ; Start gdi+ If !pToken := Gdip_Startup() { MsgBox, 48, gdiplus error!, Gdiplus failed to start. ...

 Forum: Scripts   Topic: Minecraft Hotkeys

 Post subject: Minecraft Hotkeys
Posted: March 19th, 2011, 7:44 pm 

Replies: 2
Views: 6436


Since I've seen a few Minecraft scripts up here so I thought I would add mine. Quick Place This one allows you to press Middle click as an alternative to scrolling to the last slot, right clicking, then scrolling back to what you were at. Good for placing torches =] ; In Short this script will try a...

 Forum: Support   Topic: hold keys while mouse moves

Posted: March 3rd, 2011, 2:12 pm 

Replies: 13
Views: 357


Send, {d down} Sleep, 100 Send, {d down} Sleep, 100 Send, {d down} will hold it down until you send d up, either by pressing and releasing d or by sending {d up} and the reason we use P is because if we don't then it will always return the state as true because its vir...

 Forum: Support   Topic: hold keys while mouse moves

Posted: March 3rd, 2011, 4:33 am 

Replies: 13
Views: 357


As nimda says, Sending down more then once works but only one up is needed to lift the key, If you want it so that if your holding D at the time it wont be told to let go then add the if statement to the Send key up WheelDown:: StartTime := A_TickCount WinGetActiveStats, winTitle, winW, winH midX :=...

 Forum: Support   Topic: Script VERY slow when pasting text -- PATH problem?

Posted: March 3rd, 2011, 4:25 am 

Replies: 13
Views: 275


If its trying to type it all out then try and change your hotstrings to instead, Set the clipboard to the value and then past so instead of :R:fr;::favorite restaurant use :R:fr;:: PutText("favorite restaurant") ; Putting it on the next line is necessary or else it will just type o...

 Forum: Support   Topic: hold keys while mouse moves

Posted: March 2nd, 2011, 12:29 pm 

Replies: 13
Views: 357


What are you using this for if !GetKeyState("a") and why are you putting random sleeps in there? Their is no need for sleep as all your doing is making it delay the time between moving your mouse and when the button is pressed and because its random its making it unreliable And if your mou...
Sort by:  
Page 1 of 7 [ Search found 93 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group