AutoHotkey Community

It is currently May 22nd, 2012, 12:37 pm

All times are UTC [ DST ]


Search found 48 matches
Search these results:

Author Message

 Forum: Issues   Topic: #WheelUp/Down: invokes Start Menu

Posted: February 9th, 2007, 5:39 pm 

Replies: 1
Views: 675


Please try this:
Code:
#WheelDown::Send {Down}
#WheelUp::Send {Up}

Why it invokes Start Menu? How to overcome this phenomenon?
Ver. 1.0.46.08

 Forum: Issues   Topic: SendPlay {WheelUp} works like SendPlay {WheelDown}

Posted: February 6th, 2007, 1:26 pm 

Replies: 3
Views: 1246


Chris,
thank you for the explanation.

 Forum: Issues   Topic: SendPlay {WheelUp} works like SendPlay {WheelDown}

Posted: February 5th, 2007, 12:54 pm 

Replies: 3
Views: 1246


Code:
#Down::SendPlay {WheelDown} ; works as expected
#Up::SendPlay {WheelUp} ; works like SendPlay {WheelDown}

P.S.: Version 1.0.46.07

 Forum: Support   Topic: x & y:: unexpectable behaviour (SOLVED tnx jonny!)

Posted: January 16th, 2007, 10:51 am 

Replies: 18
Views: 1031


Okay, I see. You want it working like Ctrl, but not literally as Ctrl. Absolutely! This is possible, but not with nifty one-liners. See below: ~x::ToolTip X key pressed x Up::ToolTip ; You could also put ~ in front of this hotkey and eliminate the else{} block, but then y would go through...

 Forum: Support   Topic: x & y:: unexpectable behaviour (SOLVED tnx jonny!)

Posted: January 15th, 2007, 9:55 pm 

Replies: 18
Views: 1031


Ok, may be my bad English is a cause of misunderstanding. I'll try explain the problem by example. Look at this code pls: ~Ctrl::ToolTip Ctrl key pressed Ctrl Up::ToolTip ^y::ToolTip Ctrl then Y pressed ~x::ToolTip X key pressed ; YOU CAN'T SEE THIS TOOLTIP! x Up::ToolTip x & y::ToolTip X then Y...

 Forum: Support   Topic: x & y:: unexpectable behaviour (SOLVED tnx jonny!)

Posted: January 15th, 2007, 7:04 pm 

Replies: 18
Views: 1031


Yes, I have read it: The presence of one of the above hotkeys causes the release of Numpad0 to perform the indicated action, but only if you did not press any other keys while Numpad0 was being held down. It means there is no way to reach my goal with a few lines only. Or not? Bluntly speaking, I ne...

 Forum: Support   Topic: x & y:: unexpectable behaviour (SOLVED tnx jonny!)

Posted: January 15th, 2007, 6:24 pm 

Replies: 18
Views: 1031


Many thanks Titan!
You are right.
But, unfortunately, using y & x instead x & y does not solve my problem.
I need to press X to get some action, then press Y while keeping X to get another action. Can I do this without using GetKeyState?

 Forum: Support   Topic: x & y:: unexpectable behaviour (SOLVED tnx jonny!)

Posted: January 15th, 2007, 5:41 pm 

Replies: 18
Views: 1031


I run following code:
Code:
x::ToolTip X key pressed
x Up::ToolTip

It works as expected.
But when I add another line:
Code:
x::ToolTip X key pressed
x Up::ToolTip
x & y::return

the X key stops responsing on the hitting! Why so?

 Forum: Support   Topic: Little misprint in Help

Posted: September 12th, 2006, 4:55 pm 

Replies: 5
Views: 499


Oh, sorry again. It was my mistake really. PhiLho, thanks a lot for the clarification

 Forum: Support   Topic: Little misprint in Help

Posted: September 12th, 2006, 3:33 pm 

Replies: 5
Views: 499


Sorry, may be my mistake.
But why
Code:
#IfWinActive
#c::MsgBox You pressed Win-C while any window except Notepad is active.

?
I guess #IfWinNotActive was meaned here.

 Forum: Support   Topic: Little misprint in Help

 Post subject: Little misprint in Help
Posted: September 12th, 2006, 3:14 pm 

Replies: 5
Views: 499


Help/Keyboard Control/Hotkeys and Hotstrings/Context-sensitive Hotkeys:

Code:
#IfWinActive
#c::MsgBox You pressed Win-C while any window except Notepad is active.


Must be:
Code:
#IfWinNotActive

 Forum: Support   Topic: How to use LButton instead of Ctrl key?

Posted: April 25th, 2006, 2:23 pm 

Replies: 4
Views: 491


I revealed that ~LButton & x::Send +{DEL} ~LButton & c::Send ^{INS} ~LButton & v::Send +{INS} works as expected (Cut/Copy/Paste when left button pressed). But ~LButton & x::Send ^x ~LButton & c::Send ^c ~LButton & v::Send ^v does not work the sam...

 Forum: Support   Topic: How to use LButton instead of Ctrl key?

Posted: April 25th, 2006, 11:29 am 

Replies: 4
Views: 491


PhiLho,
No! When selected any text I keep LButton pressed so the selection will remain and I can do both copy and paste.

 Forum: Support   Topic: How to use LButton instead of Ctrl key?

Posted: April 25th, 2006, 10:29 am 

Replies: 4
Views: 491


I would like to use left button for Cut/Copy/Paste control. I.g. I want to press left button and "c" together to run the Copy command. To get this I'm trying to apply following code: ~LButton & x::Send ^x ~LButton & c::Send ^c ~LButton & v::Send ^v But it does nothing. What is ...

 Forum: Scripts   Topic: Autorun.ahk & Exit.ahk

Posted: June 17th, 2005, 8:21 am 

Replies: 6
Views: 3935


Final Autorun.ahk. Both Registry and Startup Folder mode provided. Tested with 1.0.35.11. ; ; AutoHotkey Version: 1.0.35.11 ; Language: All ; Platform: XP ; Author: Dmitry B. Lyudmirsky <lud@skpress.ru> ; File Name: Autorun.ahk ; ; Script Function: ; Put Autorun.ahk into your script's directory. ; T...
Sort by:  
Page 1 of 4 [ Search found 48 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group