Does LiveCode support external setting files like .xml or any other possibility?
I want to archive the following.
A LiveCode App calls a specific file (team_settings:xml) for example which is on a server. All LIveCode Clients can connect to the file. The file host a couple of simple Variables with a Picture Link. Example:
Code: Select all
<member_id>00001</member_id>
<member_name>Joe Doe</member_named>
<member_picture>[/server/pictures/member00001.png]</member_picture>
<member_title>Executive Officer</member_title>
<member_phone>0000.0000.000</member_phone>
<member_email>joe.doe@company.com</member_email>
<member_id>00002</member_id>
<member_name>Lisa Doe</member_named>
<member_picture>[/server/pictures/member00002.png]</member_picture>
<member_title>Artist</member_title>
<member_phone>0000.0000.000</member_phone>
<member_email>lisa.doe@company.com</member_email>
The reason why I want use a external script is that I can easily add more entries without changing all LiveCode Apps.
It that possible, if yes? Any tutorials available?