| Author |
Message |
Forum: Issues Topic: Windows Vista: Windows key - Send conflict |
| superdave2k |
|
Posted: January 18th, 2007, 4:32 am
|
|
Replies: 15 Views: 8934
|
| Those results are a bit unexpected, but I'm glad to have them. Thanks for sharing them. That was on Vista 32-bit; I noticed the OP was running x64. I do know that x64 is a lot more locked down (for example, all drivers must be WHQL signed or they will not install). Perhaps AHK just has these issues... |
|
 |
Forum: Issues Topic: Windows Vista: Windows key - Send conflict |
| superdave2k |
|
Posted: January 18th, 2007, 2:00 am
|
|
Replies: 15 Views: 8934
|
| Although I don't see how it would directly help, it might indirectly make a difference somehow. Also, maybe someone with Vista can also try out LWin::return to see if it completely blocks the LWin key (i.e. so that the Start Menu doesn't appear, and no shortcuts like Win-R work). If it does, that w... |
|
 |
Forum: Support Topic: {Up down} and Sleep not keep the Up key down! |
| superdave2k |
|
Posted: March 5th, 2006, 10:21 pm
|
|
Replies: 6 Views: 710
|
OK, I understand now, thanks for the explanation Chris.
I'd like to put my vote in for an for Send {key down} that does auto-repeat internally. At the very least I think there should be a link to your script in the "Send, {key down}" documentation, as this seems to be a FAQ. |
|
 |
Forum: Support Topic: {Up down} and Sleep not keep the Up key down! |
| superdave2k |
|
Posted: March 5th, 2006, 5:57 pm
|
|
Replies: 6 Views: 710
|
| Hi, I'm having a frustrating time simulating keeping an arrow key down. For example: #Persistent Run, notepad WinWaitActive, Untitled Send, This is a test{ENTER 10} Send {Up down} ; Press down the up-arrow key. Sleep 5000 ; Keep it down for 5 seconds. Send {Up up} ; Rel... |
|
 |
Forum: Suggestions Topic: "Edit this Script" should open Autohotkey.ini w/ I |
| superdave2k |
|
Posted: November 6th, 2005, 3:51 pm
|
|
Replies: 4 Views: 1057
|
| Excellent info! I should have realized the Edit verb was called, given the Autohotkeyscript Edit registry change (referenced in my initial post above) was necessary for standalone .AHK scripts. In the next update, this will be changed to try the "open" verb on .ini files if the "edit" verb fails. If... |
|
 |
Forum: Suggestions Topic: "Edit this Script" should open Autohotkey.ini w/ I |
| superdave2k |
|
Posted: November 6th, 2005, 2:02 pm
|
|
Replies: 4 Views: 1057
|
| Thanks Toralf, but I was merely trying to "pseudocode" of what AHK the program is doing internally; not quoting exact code that I can change. The other option I thought of was doing Menu, Tray commands to replace "Edit this Script" with my own alternate one that fired up UltraEdit instead of Notepad... |
|
 |
Forum: Suggestions Topic: "Edit this Script" should open Autohotkey.ini w/ I |
| superdave2k |
|
Posted: November 6th, 2005, 5:03 am
|
|
Replies: 4 Views: 1057
|
| BTW I've already saw this thread: http://www.autohotkey.com/forum/viewtopic.php?t=2434 ..and my HKCR\AutohotkeyScript\Shell\Edit\Command is already set to UltraEdit. This works fine for right-clicking an AHK file and choosing "Edit", but not for right-clicking the AHK tray icon and choosing "Edit Th... |
|
 |
Forum: Support Topic: Command-line parameter question |
| superdave2k |
|
Posted: June 20th, 2005, 7:17 pm
|
|
Replies: 3 Views: 996
|
| Thanks Titan, this fixed my issue! |
|
 |
Forum: Support Topic: Command-line parameter question |
| superdave2k |
|
Posted: June 20th, 2005, 6:26 pm
|
|
Replies: 3 Views: 996
|
| A bit baffled here, hope someone can help. This code works correctly if I pass 5 on the cmdline (I get "Parameter #1 * 2 is 10"): Loop, %0% { param := %A_Index% * 2 MsgBox, Parameter #%A_Index% * 2 is %param%. } However, I know I'm only going to get one parameter, so I eliminated the Loop ... |
|
 |
Forum: Support Topic: ControlSend question |
| superdave2k |
|
Posted: March 14th, 2005, 9:40 pm
|
|
Replies: 5 Views: 727
|
| If this doesn't work, you'll just have to keep them separate (is that so bad, anyway?): controlsend,,{alt down}f{alt up}{down}{enter},a Thanks, but that doesn't work either. I don't have a problem keeping them separate, I was just curious why that was necessa... |
|
 |
Forum: Support Topic: ControlSend question |
| superdave2k |
|
Posted: March 14th, 2005, 8:18 pm
|
|
Replies: 5 Views: 727
|
jonny wrote: But I can kinda guess what you're trying to do here, and I think the WinMenuSelectItem command would suit you better.
Unfortunately the window is non-standard (a Trillian IM window to be exact, which is skinned). I've already tried that function and it doesn't work. |
|
 |
Forum: Support Topic: ControlSend question |
| superdave2k |
|
Posted: March 14th, 2005, 7:56 pm
|
|
Replies: 5 Views: 727
|
| I have a hotkey that sends some keystrokes to a window. The strange thing is, for it to do what I want, I have to break the code into two distinct statements. For example, ControlSend, , !f{DOWN}{ENTER}, A Only seems to do the first part (the Alt-F to bring down the menu bar). Th... |
|
 |
Forum: Issues Topic: MouseMove doesn't work within Remote Desktop sessions |
| superdave2k |
|
Posted: February 13th, 2005, 1:35 am
|
|
Replies: 8 Views: 2931
|
| Is it possible that the cursor really is moving on the remote machine but that you just can't see it locally? In other words, maybe your local cursor takes precedence over the remote cursor. Good suggestion. However with Remote Desktop (unlike some VNC implementations) the remote cursor always trac... |
|
 |
Forum: Issues Topic: MouseMove doesn't work within Remote Desktop sessions |
| superdave2k |
|
Posted: February 12th, 2005, 10:29 pm
|
|
Replies: 8 Views: 2931
|
| firstly i've tried it just with keybd (not mouse), if you run the script *after* starting remote desktop, and the script has keybd hook, then it functions normally. probably that's true with mouse too. i can't test mouse functions right now. btw if the remote desktop window is not full screen, all ... |
|
 |
Forum: Issues Topic: MouseMove doesn't work within Remote Desktop sessions |
| superdave2k |
|
Posted: February 12th, 2005, 5:24 pm
|
|
Replies: 8 Views: 2931
|
| Hi, I just noticed something very strange, but it doesn't appear this has been reported before. If I run a AHK script on a machine I have Remote Desktop'ed (I know that's not a verb) into (running XP Pro), the MouseMove command doesn't move the mouse at all. I've tried "CoordMode, Mouse, Screen" jus... |
|
 |
| Sort by: |