User Tools

Site Tools


Sidebar



en:objects:debug:message_box:notification_box

notification_box

notification_box($rtf_text,$show_time=0); - output a debug message.

the input Function accepts parameters:

  • $rtf_text – notification text (RTF format)
  • $show_time – time when the notification is displayed (in seconds) , if 0, then we won't close it with our hands yet

    After testing, the function returns the result of its work to the script :
  • true – the notification was successfully output.
  • false – failed to display the notification.

    PHP example:

    <?php $xhe_host = "127.0.0.1:7019";
     
    //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> debug->".basename(__FILE__)."</font> <hr>";
     
    //1
    echo "1.Display a debug notification for 5 seconds:";
    echo $debug->notification_box("debug(5 seconds)  r  nnotification  r  n  r  nwithout stopping the script to show", 5)."<br>";
     
    //1
    echo "1.Display a debug notification for 7 seconds:";
    echo $debug->notification_box("debug(7 seconds)  r  nnotification  r  n  r  nwithout stopping the script to show", 7)."<br>";
     
    //1
    echo "1.Display a debug notification for 9 seconds:";
    echo $debug->notification_box("debug(9 seconds)  r  nnotification  r  n  r  nwithout stopping the script to show", 9)."<br>";
     
    echo "2.Display the infinite debug notification:";
    echo $debug->notification_box("debug infinite  r  nnotification  r  n  r  nwithout stopping the script to show", 0)."<br>";
     
    //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> debug.xxxxxxxxx </font> <hr>")
     
    # 1
    echo("1.Display a debug notification for 5 seconds:")
    echo(debug.notification_box("debug(5 seconds)
    notification
     
    without stopping the script for showing ", 5)," <br> ")
     
    echo("2.Display a debug infinite notification:")
    echo(debug.notification_box("debug infinite
    notification
     
    without stopping the script to show ", 0)," <br> ")
     
    # 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:7010";
    InitXHE();
     
    //Start
    echo("<hr> <font color = blue> debug.notification_box </font> <hr>");
     
    echo("1.Display infinite debug notification:");
    echo(debug.notification_box("debug infinite  r  nnotification  r  n  r  nwithout stopping the script to show", 0) + "<br>");
     
    //1 step
    echo("2.Display a debug notification for 5 seconds:");
    echo(debug.notification_box("debug(5 seconds)  r  nnotification  r  n  r  nwithout stopping the script to show", 5) + "<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> debug.notification_box </font> <hr>");
     
    //1 step
    echo("1.Display a debug notification for 5 seconds:");
    echo(debug.notification_box("debug(5 seconds)  r  nnotification  r  n  r  nwithout stopping the script to show", 5) + "<br>");
     
    //pause
    browser.sleep(6);
     
    echo("2.Display the infinite debug notification:");
    echo(debug.notification_box("debug infinite  r  nnotification  r  n  r  nwithout stopping the script to show", 0) + "<br>");
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/debug/message_box/notification_box.txt · Last modified: 2026/08/05 22:35 (external edit)