User Tools

Site Tools


Sidebar

en:objects:mouse:get_xy:get_position

get_position

get_position($in_browser=false,$virtual=false); - this function is used to get the mouse cursor position relative to the upper-left corner of the desktop

The function accepts parameters as input:

  • $in_browser – in_browser - when is true, the coordinates are obtained relative to the browser, and when is false, relative to the desktop. (boolean) - (parameter available from 4.9.30)
  • $virtual – virtual - if is true, the coordinates are virtual (passed by the send_xxx commands), and if is false, they are real. (boolean) - (parameter available from 4.9.30)

    After testing, the function returns the result of its work to the script :
  • mouse position – x and y coordinates of the mouse, separated by a space, and the variables $mouse->x and $mouse->y (string)
  • false – operation failed (boolean)

    PHP example:

    <?php $xhe_host = "127.0.0.1:7010";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
       $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> mouse->".basename(__FILE__)."</font> <hr>";
     
    //1
    echo "1.Get position on screen:";
    echo $mouse->get_position()." n";
     
    //2
    echo "2.Get browser position:";
    echo $mouse->get_position(true)." n";
     
    //3
    $mouse->send_move(10,10);
    echo "3.Get real and virtual position:";
    echo $mouse->get_position(true)."|";
    echo $mouse->get_position(true, true)." n";
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
     
    xhe_host = "127.0.0.1:7011"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> mouse.xxxxxxxxx </font> <hr>")
     
    # 1
    echo("1.Get position on screen:")
    echo(mouse.get_position(), "
    ")
     
    # 2
    echo("2.Get browser position:")
    echo(mouse.get_position(true), "
    ")
     
    # 3
    mouse.send_move(10,10)
    echo("3.Get real and virtual position:")
    echo(mouse.get_position(true), "|")
    echo(mouse.get_position(true, true), "
    ")
     
    # end
    echo("<hr> <br>")
     
    # Quit
    app.quit()

    C# example:

    #region using
     
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
     
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
     
    #endregion
     
     class Program: XHEScript
     {
    static void Main(string [] args)
    {
    //init XHE
    server = "127.0.0.1:7072";
    InitXHE();
     
    //Start
    echo("<hr> <font color = blue> mouse.get_position </font> <hr>");
     
    //1 step
    echo("1.Current coordinates of the mouse on the screen:");
    echo(mouse.get_position() + "<br>");
     
    //step 2
    echo("1.Current mouse coordinates in the browser:");
    echo(mouse.get_position(true) + "<br>");
     
    //step 3
    echo("3.Current real and virtual coordinates of the mouse in the browser:");
    mouse.send_move(10,10);
    echo(mouse.get_position(true) + "");
    echo(mouse.get_position(true, true) + "<br>");
     
    //step 4
    echo("4.Current real and virtual coordinates of the mouse on the screen:");
    echo(mouse.get_position(false) + "");
    echo(mouse.get_position(false, true) + "<br>");
     
    //end
    echo("<hr> <br>");
     
    app.quit();
    }
    }

    Java Script example:

    //connect the object to control the emulator, if not already connected
    xhe_host = "127.0.0.1:7010";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> mouse.get_position </font> <hr>");
     
    //1 step
    echo("1.Get position on screen:");
    echo(mouse.get_position() + " n");
     
    //step 2
    echo("2.Get the position in the browser:");
    echo(mouse.get_position(true) + " n");
     
    //step 3
    echo("3.Get real and virtual position:");
    echo(mouse.get_position(true) + "");
    echo(mouse.get_position(true, true) + " n");
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/mouse/get_xy/get_position.txt · Last modified: 2020/10/14 12:49 (external edit)