Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hi5/XA

XA - Save/Load AutoHotkey Arrays in XML format
https://github.com/hi5/XA

arrays autohotkey autohotkey-arrays data objects xml

Last synced: about 2 months ago
JSON representation

XA - Save/Load AutoHotkey Arrays in XML format

Awesome Lists containing this project

README

        

# XA - Save/Load AutoHotkey Arrays in XML format

**Introduction**

XA was written by **trueski** and the original source can be found here http://www.autohotkey.com/board/topic/85461-ahk-l-saveload-arrays/
(The code posted there is no longer valid due to errors caused by upgrading the forum software.)

* XA_CleanInvalidChars() has been added to remove invalid characters in XML.
* Added InStr(XMLText,"

aa
bb
cc

```

result of test2
```xml

a
b
c

```

To check for error
```ahk
if (XA_Load("file.xml") = 1) ; the name of the variable containing the array is returned OR the value 1 in case of error
MsgBox Error loading XML file.
```

### AutoHotkey forum discussion

https://autohotkey.com/boards/viewtopic.php?f=6&t=34849