get_x

get_x($in_browser=false,$virtual=false); - this function is used to get the x - coordinate of the mouse cursor

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 since 4.6.9)
  • $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 :
  • x – x - coordinate of the mouse (int)
  • false – operation failed (boolean)

    PHP example: mouse->".basename(__FILE__)."
    "; //1 echo "1.Current x-coordinate of the mouse on the screen:"; echo $mouse->get_x()."x".$mouse->get_y()."
    "; //2 echo "2.Current x-coordinate of the mouse in the browser:"; echo $mouse->get_x(true)."x".$mouse->get_y(true)." n"; //3 echo "3.Real and virtual coordinates:"; $mouse->send_move(10,10); echo $mouse->get_x(true)."x".$mouse->get_y(true)."|"; echo $mouse->get_x(true, true)."x".$mouse->get_y(true, true)." n"; //end echo "

    "; //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("
    mouse.xxxxxxxxx
    ") # 1 echo("1.Current x-coordinate of the mouse on the screen:") echo(mouse.get_x(), "x") echo(mouse.get_y(), " ") # 2 echo("2.Current x-coordinate of the mouse in the browser:") echo(mouse.get_x(true), "x") echo(mouse.get_y(true), " ") # 3 echo("3.Real and virtual coordinates:") mouse.send_move(10,10) echo(mouse.get_x(true), "x") echo(mouse.get_y(true), "|") echo(mouse.get_x(true, true), "x") echo(mouse.get_y(true, true), " ") # end echo("

    ") # 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("
    mouse.get_x
    "); //1 step echo("1.Current coordinate of the mouse on the screen:"); echo(mouse.get_x() + "" + mouse.get_y() + "
    "); //step 2 echo("2.Current mouse coordinate in the browser:"); echo(mouse.get_x(true) + "x" + mouse.get_x(true) + "
    "); //step 3 echo("3.Current real and virtual coordinates of the mouse in the browser:"); mouse.send_move(10,10); echo(mouse.get_x(true) + "x" + mouse.get_x(true) + ""); echo(mouse.get_x(true, true) + "x" + mouse.get_x(true, true)); //end echo("

    "); 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("
    mouse.get_x
    "); //1 step echo("1.Current x-coordinate of the mouse on the screen:"); echo(mouse.get_x() + "x" + mouse.get_y() + "
    "); //step 2 echo("2.Current x-coordinate of the mouse in the browser:"); echo(mouse.get_x(true) + "x" + mouse.get_y(true) + " n"); //step 3 echo("3.Real and virtual coordinates:"); mouse.send_move(10,10); echo(mouse.get_x(true) + "x" + mouse.get_y(true) + ""); echo(mouse.get_x(true, true) + "x" + mouse.get_y(true, true) + " n"); //end echo("

    "); //Quit app.quit();