| Author |
Message |
Topic: switching between multiple fullscreen windows |
HotKeyIt
Replies: 3
Views: 19
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:18 pm Subject: switching between multiple fullscreen windows |
Why you don't just try it  |
Topic: Autohotkey.chm |
HotKeyIt
Replies: 1
Views: 21
|
Forum: Bug Reports Posted: Fri Mar 19, 2010 6:07 pm Subject: Autohotkey.chm |
Why bug report, there is no default Ctrl+F1 hotkey for that ^F1::Run % SubStr(A_AhkPath,1,InStr(A_AhkPath,"\",1,0)) . "AutoHotkey.chm"or^F1::Run ... |
Topic: How use Right Click to launch script ? |
HotKeyIt
Replies: 5
Views: 84
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:01 pm Subject: How use Right Click to launch script ? |
:Lbutton::
If !GetKeyState("F1","P")
Return
Send a
sleep 100
Send b
sleep 100
send c
return |
Topic: ToolTip() - Advanced ToolTip features |
HotKeyIt
Replies: 100
Views: 15751
|
Forum: Scripts & Functions Posted: Fri Mar 19, 2010 7:59 am Subject: ToolTip() - Advanced ToolTip features |
Try this, though it is not much better, but works okay ;)OnMessage(0x202,"WM_LBUTTONUP") ;Will make ToolTip Click possible
WM_LBUTTONUP(wParam,lParam,msg,hWnd){
globa ... |
Topic: OneLineCommands (Execute AHK code dynamically!) |
HotKeyIt
Replies: 11
Views: 2086
|
Forum: Scripts & Functions Posted: Fri Mar 19, 2010 6:30 am Subject: OneLineCommands (Execute AHK code dynamically!) |
| Thanks for letting me know, should work now [url=http://www.autohotkey.com/forum/viewtopic.php?p=340131#340131]Exec() |
Topic: multiple users |
HotKeyIt
Replies: 3
Views: 54
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 8:50 pm Subject: multiple users |
MsgBox was to show what files would get deleted, you'll need FileDelete.
[url=http://www.autohotkey.com/docs/commands/LoopFile.htm]LoopFile Help |
Topic: Print Selected files |
HotKeyIt
Replies: 17
Views: 157
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:53 pm Subject: Print Selected files |
Backup:=ClipboardAll
Clipboard=
Send ^c
ClipWait,0.2
List:=Clipboard
ClipBoard:=Backup
Loop,Parse,List,`n,`r
Run print %A_LoopField% |
Topic: Print Selected files |
HotKeyIt
Replies: 17
Views: 157
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 7:31 pm Subject: Print Selected files |
| Selected where from? |
Topic: OneLineCommands (Execute AHK code dynamically!) |
HotKeyIt
Replies: 11
Views: 2086
|
Forum: Scripts & Functions Posted: Thu Mar 18, 2010 7:28 pm Subject: OneLineCommands (Execute AHK code dynamically!) |
| Thx for the changes. Another thing to mention is may be not possible: The variables are dereferenced from global space. For such a function, that is may be ok. It would be perfect if it dereferences i ... |
Topic: Print Selected files |
HotKeyIt
Replies: 17
Views: 157
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 6:52 pm Subject: Print Selected files |
| Run print c:\Temp\test.txt |
Topic: Password too quick ! |
HotKeyIt
Replies: 3
Views: 79
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 6:50 pm Subject: Password too quick ! |
SendInput should work better  |
Topic: Exit script |
HotKeyIt
Replies: 3
Views: 53
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 6:47 pm Subject: Exit script |
| This should work, a GUI is ahk_class AutoHotkeyGUI.WinClose, C:\Program Files\... ahk_class AutoHotkey |
Topic: Best Hotstring Recognition algorithm? [not solved] |
HotKeyIt
Replies: 12
Views: 175
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 2:17 pm Subject: Best Hotstring Recognition algorithm? [not solved] |
You'll possibly need Input command here:
^!f::
exitFlag := 1
Input ; will cancel Input command and set ErrorLevel to NewInput
Return
With regards to your Caret problem, why do you n ... |
Topic: doubleclick on selected syslistview32 item ? |
HotKeyIt
Replies: 23
Views: 783
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 11:10 am Subject: doubleclick on selected syslistview32 item ? |
Kein problem
I think so, did you try it, does it work as well  |
Topic: Keycommand To Turn Of Monitors Fails |
HotKeyIt
Replies: 7
Views: 73
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:35 am Subject: Keycommand To Turn Of Monitors Fails |
| Are you on XP? |
| |