AutoHotkey Community

It is currently May 21st, 2012, 5:02 pm

All times are UTC [ DST ]


Search found 56 matches
Search these results:

Author Message

 Forum: Support   Topic: Mapping a built-in keyboard macro to a single keypress

Posted: August 31st, 2011, 2:58 pm 

Replies: 2
Views: 115


Well, the command that you are doing basically creates the !Home to become an alt button rather than Send to the computer that you hit Alt. I would try
Code:
!Home::Send {Alt}

See if that fixes it for you.

 Forum: Support   Topic: Goto Desktop?

Posted: July 1st, 2010, 8:19 pm 

Replies: 3
Views: 236


Thanks so much.

 Forum: Support   Topic: Goto Desktop?

 Post subject: Goto Desktop?
Posted: July 1st, 2010, 8:15 pm 

Replies: 3
Views: 236


I was wondering what command I would need to be able to goto desktop/minimize all windows. I want the same functionality of Win+D (Win+D doesn't work on the Shell Replacement I'm using, that's why I need it, by the way)

 Forum: Support   Topic: Power Options

Posted: January 17th, 2010, 11:03 pm 

Replies: 2
Views: 286


Close, but it doesn't quite do what I wanted, I still have to click a button to get to the screen which is pictured on that website. If there is a way to get past the clicking part it would be fantastic, otherwise this will have to do. My thanks for what you gave you so far!

 Forum: Support   Topic: Power Options

 Post subject: Power Options
Posted: January 17th, 2010, 9:28 pm 

Replies: 2
Views: 286


Does anyone know the code to open the Power Options menu on Vista? It's AHK_Class #32770
If that helps at all...I was wanting a hotkey to open that window up and wasn't sure how to do so since it's not a program itself or something.

 Forum: Support   Topic: multiple keystroke with delay

Posted: October 9th, 2009, 11:53 pm 

Replies: 4
Views: 305


I've achieved this before. Writing an example would be a bitch, sorry. But just make it so that when you hit 0 it checks and sets variables, have if statements, if var = 1 { commands, set var = 2 } , if var = 2 {commands, set var = 3} (that's not syntax or anything, just what needs to be done). And ...

 Forum: Support   Topic: out the date on the next monday?

Posted: October 9th, 2009, 9:23 pm 

Replies: 6
Views: 183


Could you not just do a IfInString with a variable set to the date you want it to display. Something like DateCheck = Oct172009 IfInString, DateCheck, %date% { MsgBox %date% Return } Of course DateCheck would be whatever it's checking against, and do a loop with a sleep time set to a day's...

 Forum: Support   Topic: GUI Help? Another Window after first

Posted: October 9th, 2009, 7:02 pm 

Replies: 12
Views: 911


That's for creating multiple windows simultaneously, which is not what I want.

 Forum: Support   Topic: GUI Help? Another Window after first

Posted: October 9th, 2009, 6:44 pm 

Replies: 12
Views: 911


I was wanting to begin some GUI work, and I was wanting a login dialog. I've almost gotten that to work, only thing I need is when I successfully login I want it to then open a new GUI set, how do I do that? I've gotten all the variable checks needed, I just need to know how I can then open up a new...

 Forum: Support   Topic: How do you create a script which can help to replace ",

Posted: June 11th, 2009, 5:55 pm 

Replies: 3
Views: 328


Replace it as you type or like you open a document and want to replace all the commas with plus signs?
A simple
Code:
::,::+

Will do it as you type.

 Forum: Support   Topic: how to run python script from ahk script?

Posted: June 11th, 2009, 2:26 am 

Replies: 1
Views: 942


When doing a Run command, if it doesn't work right away from doing the full path and then the file do

Code:
Run cleanup.py, C:\Test



And commas right after commands are unnecessary. It'll usually tell you in the manual if a comma is necessary.

 Forum: Support   Topic: Add a "|" when ENTER is pressed

Posted: June 10th, 2009, 10:43 pm 

Replies: 6
Views: 281


Use either
Process
Or
IfWinActive

EDIT:Meant Active not Exist.

 Forum: Support   Topic: Sort of application protector.

Posted: June 10th, 2009, 10:42 pm 

Replies: 10
Views: 601


DetectHiddenWindows

Finds titles in the tray.

 Forum: Support   Topic: What command would i use to delete the Recent Documents??

Posted: June 10th, 2009, 9:44 pm 

Replies: 3
Views: 406


FileRemoveDir
That deletes a folder.

Please look in documentation before posting here, a simple word search on the command reference could have shown you the command.

Alternately
FileDelete

To delete all files rather than the entire folder.

 Forum: Support   Topic: (Newbie Help) Executing another AHK file

Posted: May 29th, 2009, 11:51 pm 

Replies: 7
Views: 438


Code:
Run Other.ahk

That'll run the other script, which apparently is what you want -shrugs- Don't really see the point in putting 2 lines of code in a script file by itself, but whatever.
Sort by:  
Page 1 of 4 [ Search found 56 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group