<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://humanemulator.net/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://humanemulator.net/wiki/feed.php">
        <title>Human Emulator wiki en:objects:windowinterface:action</title>
        <description></description>
        <link>https://humanemulator.net/wiki/</link>
        <image rdf:resource="https://humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-06-28T02:47:07+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:close&amp;rev=1602681531&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:enable&amp;rev=1602681427&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:focus&amp;rev=1602681442&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:foreground&amp;rev=1602681460&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:maximize&amp;rev=1602681495&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:message&amp;rev=1602681580&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:minimize&amp;rev=1602681477&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:move&amp;rev=1602681549&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:resize&amp;rev=1602681565&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:restore&amp;rev=1602681514&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:screenshot&amp;rev=1602681595&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:set_text&amp;rev=1602681394&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:show&amp;rev=1602681412&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Human Emulator wiki</title>
        <link>https://humanemulator.net/wiki/</link>
        <url>https://humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:close&amp;rev=1602681531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:18:51+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:close</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:close&amp;rev=1602681531&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Close FAR:&quot;;
echo $window-&gt;get_by_text(&quot;Far&quot;)-&gt;close().&quot;&lt;br&gt;&quot;;

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$app-&gt;quit();
?&gt;</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:enable&amp;rev=1602681427&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:17:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:enable</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:enable&amp;rev=1602681427&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Disable XHE:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;);
echo $xhe-&gt;enable(false).&quot;&lt;br&gt;&quot;; sleep(5);

//2
echo &quot;2.Allow XHE:&quot;;
echo $xhe-&gt;enable(true).&quot;&lt;br&gt;&quot;;

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:focus&amp;rev=1602681442&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:17:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:focus</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:focus&amp;rev=1602681442&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Set focus on Skype:&quot;;
$skype = $window-&gt;get_by_text(&quot;Skype&quot;, false);
echo $skype-&gt;foreground().&quot;&quot;;
echo $skype-&gt;focus().&quot;&lt;br&gt;&quot;;

sleep(2);

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$app-&gt;q…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:foreground&amp;rev=1602681460&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:17:40+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:foreground</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:foreground&amp;rev=1602681460&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Set focus on Skype:&quot;;
$skype = $window-&gt;get_by_text(&quot;Skype&quot;, false);
echo $skype-&gt;foreground().&quot; n&quot;;
sleep(1);

echo &quot;2.Set focus to this copy of Human:&quot;;
echo $app-&gt;set_foregroun…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:maximize&amp;rev=1602681495&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:18:15+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:maximize</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:maximize&amp;rev=1602681495&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Minimize the human:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;, false);
echo $xhe-&gt;minimize().&quot;&lt;br&gt;&quot;; sleep(1);

//2
echo &quot;2.Maximizing human:&quot;;
echo $xhe-&gt;maximize().&quot;&lt;br&gt;&quot;; sleep(1);
…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:message&amp;rev=1602681580&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:19:40+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:message</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:message&amp;rev=1602681580&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Close FAR via WM_CLOSE = 0x0010:&quot;;
$far = $window-&gt;get_by_text(&quot;Far&quot;, false);
echo $far-&gt;message(0x0010,0,0).&quot;&lt;br&gt;&quot;; sleep(1);

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$app-&gt;quit();
?&gt;</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:minimize&amp;rev=1602681477&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:17:57+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:minimize</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:minimize&amp;rev=1602681477&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Minimize the human:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;, false);
echo $xhe-&gt;minimize().&quot;&lt;br&gt;&quot;; sleep(1);

//2
echo &quot;2.Maximizing human:&quot;;
echo $xhe-&gt;maximize().&quot;&lt;br&gt;&quot;; sleep(1);
…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:move&amp;rev=1602681549&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:19:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:move</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:move&amp;rev=1602681549&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let's set a new size for the human:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;, false);
echo $xhe-&gt;resize(800,600).&quot;&lt;br&gt;&quot;; sleep(1);

//2
echo &quot;2.Move the human:&quot;;
echo $xhe-&gt;move(300,3…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:resize&amp;rev=1602681565&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:19:25+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:resize</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:resize&amp;rev=1602681565&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let's set a new size for the human:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;, false);
echo $xhe-&gt;resize(800,600).&quot;&lt;br&gt;&quot;; sleep(1);

//2
echo &quot;2.Move the human:&quot;;
echo $xhe-&gt;move(300,3…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:restore&amp;rev=1602681514&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:18:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:restore</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:restore&amp;rev=1602681514&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Minimize the human:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;, false);
echo $xhe-&gt;minimize().&quot;&lt;br&gt;&quot;; sleep(1);

//2
echo &quot;2.Maximizing human:&quot;;
echo $xhe-&gt;maximize().&quot;&lt;br&gt;&quot;; sleep(1);
…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:screenshot&amp;rev=1602681595&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:19:55+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:screenshot</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:screenshot&amp;rev=1602681595&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let's take a screenshot of the XWeb:&quot;;
echo $window-&gt;get_by_text(&quot;XWeb&quot;)-&gt;screenshot(&quot;test \ 1.bmp&quot;).&quot;&lt;br&gt;&quot;;

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$app-&gt;quit();
?&gt;</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:set_text&amp;rev=1602681394&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:16:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:set_text</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:set_text&amp;rev=1602681394&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Get the text of the main visible window containing the name Skype:&quot;;
$skype = $window-&gt;get_by_text(&quot;Skype&quot;);
echo $skype-&gt;get_text().&quot;&lt;br&gt;&quot;;

//2
echo &quot;2.Change the text of the sk…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:show&amp;rev=1602681412&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-14T16:16:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:action:show</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:action:show&amp;rev=1602681412&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Hide XHE:&quot;;
$xhe = $window-&gt;get_by_text(&quot;XWeb&quot;);
echo $xhe-&gt;show(false).&quot;&lt;br&gt;&quot;; sleep(2);

//2
echo &quot;2.Show XHE:&quot;;
echo $xhe-&gt;show(true).&quot;&lt;br&gt;&quot;;

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$…</description>
    </item>
</rdf:RDF>
