i dunno the right click code?

Discussion in 'Code Snippets and Tutorials' started by pandahorde, Mar 12, 2007.

  1. pandahorde

    pandahorde Level IV

    Joined:
    Dec 17, 2006
    Messages:
    2,249
    Likes Received:
    17
    Location:
    "MANILA ZOO"
    can anyone tell me the right click of the mouse code.?

    because clickmouse(x,y) is only left click in mouse..
     
  2. zav75

    zav75 Level I

    Joined:
    Feb 28, 2007
    Messages:
    76
    Likes Received:
    6
    Location:
    Canada, Province of Québec
    first its not
    Code (Text):
    1. clickmouse(x,y)
    it's
    Code (Text):
    1. clickmouse(x,y,true)
    for an left click, put false for right click.

    Code (Text):
    1. clickmouse(x,y,false)
     
  3. pandahorde

    pandahorde Level IV

    Joined:
    Dec 17, 2006
    Messages:
    2,249
    Likes Received:
    17
    Location:
    "MANILA ZOO"
    ok thx men! i get it
    thats why its false and the left click is true.. ahhhhh ic