Jump to content

Right mouse click


Recommended Posts

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

Link to comment
Share on other sites

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

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)


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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...