AutoHotkey Community

It is currently May 23rd, 2012, 5:38 am

All times are UTC [ DST ]


Search found 20 matches
Search these results:

Author Message

 Forum: Support   Topic: Script for game.

Posted: September 28th, 2009, 4:21 pm 

Replies: 10
Views: 619


Code:
!^p::pause,toggle

 Forum: Support   Topic: Change internet browsers with script.

Posted: September 28th, 2009, 1:37 am 

Replies: 13
Views: 472


Code:
What's your code look like?

Most likely you will need to set the desired browser as your primary default browser.

 Forum: Support   Topic: Change internet browsers with script.

Posted: September 28th, 2009, 1:27 am 

Replies: 13
Views: 472


Code:
Run,IExplorer.exe ;Or whatever

Would change to...
Code:
Run,FireFox.exe ;Or whatever

 Forum: Support   Topic: Variable in a text file

Posted: September 28th, 2009, 12:38 am 

Replies: 8
Views: 663


Congratz on fixing the problem however in the future I would use .ini files for variable management.
Look into Ini Read and Ini Write.

 Forum: Support   Topic: My mouse double clicks

Posted: September 28th, 2009, 12:35 am 

Replies: 5
Views: 601


Untested-
Code:
LButton::
Click
Sleep,100
Return

 Forum: Support   Topic: search for 2 different shades of a color?

Posted: September 28th, 2009, 12:32 am 

Replies: 2
Views: 391


Why not just two pixel searches?
Code:
Pixelsearch, X1, Y1, 446, 272, 553, 358, 0x987D6D, 2
Pixelsearch, X2, Y2, 446, 272, 553, 358, 0xE0B2F7, 2

 Forum: Support   Topic: Sleep then Shutdown?

Posted: September 28th, 2009, 12:29 am 

Replies: 1
Views: 297


Untested- !^x::ShutDown,12 ;Force power down If not then... Shuts down, restarts, or logs off the system. Shutdown, Code Parameters Code A combination of shutdown codes listed below. Remarks The shutdown code is a combination of the following values: Logoff 0 Shutdown 1 Reboot 2 Force 4 Power down 8...

 Forum: Support   Topic: Click, Click, Repeat

Posted: September 28th, 2009, 12:24 am 

Replies: 4
Views: 343


Code:
Times=Number here
SleepTime=Time in milliseconds here ;1000ms=1s 10000ms=10s
;^!g::
Loop,%Times% ;Repeats however many times "time" equals
{
Click
Sleep,%SleepTime% ;Waits however many miliseconds sleeptime equals
Click
}

 Forum: Suggestions   Topic: 5-6 year old software

Posted: September 28th, 2009, 12:20 am 

Replies: 5
Views: 1213


*** XAT is lame. pointless...bleh. AHK has an IRC accound on Freenode. Get a client such as pidgin, miranda, mIRC, xchat or one if the many others and join #AHK. there is an active user base of 30-40 people. It may be but I feel the chat should be on the site rather than hosted elsewhere. But then ...

 Forum: Support   Topic: From the beggining, a countdown clock.

Posted: September 27th, 2009, 10:10 pm 

Replies: 9
Views: 2252


Agreed.
I was eating so was semi-distracted just picked first choice.

 Forum: Support   Topic: Script for game.

Posted: September 27th, 2009, 10:09 pm 

Replies: 10
Views: 619


Look at PixelGetColor
Untested-
Code:
IfWinActive
PixelGetColor,Color, X,Y,RGB
If Color <>#FF0000
{
;Stuff
}
Else
{
ExitApp

 Forum: Support   Topic: From the beggining, a countdown clock.

Posted: September 27th, 2009, 9:59 pm 

Replies: 9
Views: 2252


That sucks... Try this thread.

 Forum: Suggestions   Topic: 5-6 year old software

 Post subject: 5-6 year old software
Posted: September 27th, 2009, 9:57 pm 

Replies: 5
Views: 1213


AutoHotkey has been around a long time huh... My suggestions to improve it and bring it into it's prime... -New Logo -New forum/forum skin -Adverts on the site* -Advertisment for AHK** -Embed a xat chat box*** *With Chris making money off of this program that means he is more inclined to spend time ...

 Forum: Support   Topic: From the beggining, a countdown clock.

Posted: September 27th, 2009, 9:47 pm 

Replies: 9
Views: 2252


Look here the 3rd result may be most helpful http://www.autohotkey.com/forum/search.php?mode=results

EDIT: See below.

 Forum: Support   Topic: switch between two displays

Posted: September 27th, 2009, 9:39 pm 

Replies: 5
Views: 580


Look into Control Click and Control Send.
Sort by:  
Page 1 of 2 [ Search found 20 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group