YoseMite Posted March 6, 2006 Posted March 6, 2006 Hi, How can I make it that if I right click (with the mouse) that I get a action? - I've searching but I can't find anything. I trough: If MouseClick("right")Then MsgBox(0,"Box","Right mouse click!") Endif But that doesn't work. Has anyone a idea? Thanks YoseMite
BigDod Posted March 6, 2006 Posted March 6, 2006 Hi, How can I make it that if I right click (with the mouse) that I get a action? - I've searching but I can't find anything. I trough: If MouseClick("right")Then MsgBox(0,"Box","Right mouse click!") Endif But that doesn't work. Has anyone a idea? Thanks YoseMiteHere you go #include <Misc.au3> $dll = DllOpen("user32.dll") While 1 Sleep ( 250 ) If _IsPressed("02", $dll) Then MsgBox(0,"_IsPressed", "Right Mouse Key Pressed") ExitLoop EndIf WEnd DllClose($dll) Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
seandisanti Posted March 6, 2006 Posted March 6, 2006 Here you go #include <Misc.au3> $dll = DllOpen("user32.dll") While 1 Sleep ( 250 ) If _IsPressed("02", $dll) Then MsgBox(0,"_IsPressed", "Right Mouse Key Pressed") ExitLoop EndIf WEnd DllClose($dll)also if this is for a gui you made w/ autoit, using event mode you can see the right click as an event: $GUI_EVENT_SECONDARYDOWN $GUI_EVENT_SECONDARYUP
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now