+ Reply to Thread
Results 1 to 7 of 7

Thread: [HELP]Doing Mouse Script

  1. #1
    Kaskame Guest

    Default [HELP]Doing Mouse Script

    So I did this Thread as I was needing some help about this...
    And because you guys said to every people who needs help create a new thread..so here it is


    Quote Originally Posted by AlmarM
    Well, first of all download and install AutoIt. After that make a name AutoIt v3 file (rightclick anywere > New > AutoIt v3 script). And you should make a search for "Mouse" in the help file.
    Quote Originally Posted by Reinn
    And the 2 most basics commands with mouse are: "MouseMove" & "MouseClick".
    So this is not just for me but for whole ppl with need of help :3

    BTW trying to understand how that works
    Last edited by Kaskame; 01-12-2009 at 14:44.

  2. #2
    Join Date
    May 2009
    Location
    Denmark
    Age
    17
    Posts
    689
    Thanks
    42
    Thanked 3 Times in 3 Posts
    Rep Power
    5

    Default

    Well, it will be really "tiredly" if we have to answer to every function.

    The best way you can read about what functions do, etc. is to read the help file. (If you open Scite Editor & press F1, the help file will open.)

    What I said up there, doesn't mean I don't want to help... MouseMove is easy, and when you write a command in Scite, you can see what to input after it...

  3. #3
    Kaskame Guest

    Default

    How do I know the coordinates ? :S

  4. #4
    Join Date
    Sep 2009
    Posts
    21
    Thanks
    0
    Thanked 2 Times in 2 Posts
    Rep Power
    3

    Default

    Try AU3info in the AutoIT folder.

  5. #5
    Join Date
    May 2009
    Posts
    32
    Thanks
    0
    Thanked 4 Times in 4 Posts
    Rep Power
    4

    Default

    Quote Originally Posted by Bat View Post
    Try AU3info in the AutoIT folder.
    Im always using this little script to get screen coordinates:

    Code:
    HotKeySet("{HOME}", "_GetPos")
    HotKeySet("{ESC}", "_Exit")
    
    While 1
    	$pos = MouseGetPos()
    	Sleep(100)
    WEnd
    
    Func _GetPos()
    	ToolTip("X: " & $pos[0] & @CRLF & "Y: " & $pos[1], $pos[0], $pos[1], "XY Pos", "", 1)
    EndFunc ; ==> _GetPos()
    
    Func _Exit()
    	Exit
    EndFunc ; ==> _Exit()

  6. #6
    Kaskame Guest

    Default

    Yay Thanks !

    ^^ Now ima trying doing something :3 I will post here my results ^^

  7. #7
    Join Date
    May 2009
    Posts
    32
    Thanks
    0
    Thanked 4 Times in 4 Posts
    Rep Power
    4

    Default

    Sure, always tell us if u need any help with anything

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Replies: 2
    Last Post: 23-07-2011, 21:27
  2. [Release] Get Mouse Information
    By AlmarM in forum Release
    Replies: 1
    Last Post: 04-12-2009, 14:49
  3. [Tut] How To Make Mouse-Over Buttons
    By Moxxy in forum Tutorials
    Replies: 0
    Last Post: 13-09-2009, 15:58

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts