Results 1 to 3 of 3

Thread: GetMousePos Question

  1. #1
    Join Date
    Mar 2013
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Question GetMousePos Question

    Is there any way I can make the script get a mouse position in one procedure and then include it into another procedure?

  2. #2
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Quote Originally Posted by benisbeast1 View Post
    Is there any way I can make the script get a mouse position in one procedure and then include it into another procedure?
    There is a function called GetMousePos that takes two references..


    Usage:

    Simba Code:
    var
      X, Y: Integer;
    begin
      GetMousePos(X, Y);
      writeln(Point(X, Y));
    end.
    I am Ggzz..
    Hackintosher

  3. #3
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

Thread Information

Users Browsing this Thread

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

Posting Permissions

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