<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.actiona.tools/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://wiki.actiona.tools/feed.php">
        <title>Actiona Wiki - en:code:data</title>
        <description></description>
        <link>https://wiki.actiona.tools/</link>
        <image rdf:resource="https://wiki.actiona.tools/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-02T19:13:22+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:clipboard&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:file&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:inifile&amp;rev=1697304007&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:mailattachment&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:registry&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:sql&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:tcp&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:tcpserver&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:udp&amp;rev=1613215410&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.actiona.tools/doku.php?id=en:code:data:web&amp;rev=1723376795&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.actiona.tools/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>Actiona Wiki</title>
        <link>https://wiki.actiona.tools/</link>
        <url>https://wiki.actiona.tools/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:clipboard&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>clipboard</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:clipboard&amp;rev=1613215410&amp;do=diff</link>
        <description>Clipboard

This object allows you to have access to the system&#039;s clipboard.
Under Linux you also have access to the selection buffer.

Functions

Clipboard

Constructor function.

Syntax


var myObject = new Clipboard();



var myObject = new Clipboard(mode);</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:file&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>file</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:file&amp;rev=1613215410&amp;do=diff</link>
        <description>File

The File object allows you to read and write a file.

Functions

File

Constructor function.

Syntax


var myObject = new File();


Example

Create a File object.


var myObject = new File();


copy

Copy a file.

Syntax


File.copy(source, destination);</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:inifile&amp;rev=1697304007&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-10-14T17:20:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>inifile</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:inifile&amp;rev=1697304007&amp;do=diff</link>
        <description>IniFile

This object allows you to read and write to a INI file.

Quick Use

Usable example:


var myObject= new IniFile();
myObject.load(&quot;config.ini&quot;);
myObject.setSection(&quot;SomeSettingsSection&quot;);
if (myObject.keyExists(&quot;SomeKey&quot;)){
	mytext = myObject.keyValue(&quot;SomeKey&quot;);
	newtext = mytext + &quot;Bar&quot;;
	myObject.setKeyValue(&quot;SomeKey&quot;, newtext);
}else{
	myObject.setKeyValue(&quot;SomeKey&quot;, &quot;Foo&quot; );
	mytext = cfgini.keyValue(&quot;SomeKey&quot;);
}
myObject.save(&quot;config.ini&quot;);</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:mailattachment&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mailattachment</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:mailattachment&amp;rev=1613215410&amp;do=diff</link>
        <description>MailAttachment

This object represents an attachment to a Mail.

Functions

MailAttachment

Constructor function.

Syntax


var myObject = new MailAttachment();



var myObject = new MailAttachment(parameters);


Arguments

	*  parameters - (object) parameters</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:registry&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>registry</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:registry&amp;rev=1613215410&amp;do=diff</link>
        <description>Registry

This object allows you to have access to the system&#039;s registry.
It only works under Windows.

Functions

Registry

Constructor function.

Syntax


var myObject = new Registry();


Example

Create a Registry object.


var myObject = new Registry();</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:sql&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sql</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:sql&amp;rev=1613215410&amp;do=diff</link>
        <description>Sql

This object allows you to establish a connection to a SQL database like MySQL, PostgreSQL, SQLite and others.

Functions

Sql

Constructor function.

Syntax


var myObject = new Sql(driver);


Arguments

	*  driver - () the database driver to use</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:tcp&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tcp</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:tcp&amp;rev=1613215410&amp;do=diff</link>
        <description>Tcp

This object allows you to establish a connection to a TCP server.

Functions

Tcp

Constructor function.

Syntax


var myObject = new Tcp(events);


Arguments

	*  events - (object) the events that can be called
		*  onConnected - () called when the object is connected to the server</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:tcpserver&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tcpserver</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:tcpserver&amp;rev=1613215410&amp;do=diff</link>
        <description>TcpServer

This object allows you to create a TCP server, allowing you to listen to incoming connections.

Functions

TcpServer

Constructor function.

Syntax


var myObject = new TcpServer(events);


Arguments

	*  events - (object) the events that can be called</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:udp&amp;rev=1613215410&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2021-02-13T11:23:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>udp</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:udp&amp;rev=1613215410&amp;do=diff</link>
        <description>Udp

This object allows you to establish a connection to an UDP peer.

Functions

Udp

Constructor function.

Syntax


var myObject = new Udp(events);


Arguments

	*  events - (object) the events that can be called
		*  onConnected - () called when the object is connected to the peer</description>
    </item>
    <item rdf:about="https://wiki.actiona.tools/doku.php?id=en:code:data:web&amp;rev=1723376795&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-08-11T11:46:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>web</title>
        <link>https://wiki.actiona.tools/doku.php?id=en:code:data:web&amp;rev=1723376795&amp;do=diff</link>
        <description>Web

This object allows you to download data.

Functions

Web

Constructor function.

Syntax


var myObject = new Web(eventsAndOptions);


Arguments

	*  eventsAndOptions - (object) the events that can be called
		*  onFinished - () called when the data has been downloaded</description>
    </item>
</rdf:RDF>
