As3 XML Encoding
ActionScript 3 lets you work with XML files to import and export data to and from your website Flash files. You must set the encoding at the top of your file, so any system reading the XML file can parse the data according to the encoding you set in the XML file. The encoding tag is always located at the top of the XML file you create from AS3.
Instructions
-
-
1
Right-click the AS3 XML file you want to edit and select "Open With." Click your preferred XML editor in the list of programs, but you can also choose Notepad if you have no third-party editor installed.
-
2
Add the following code to the very top of the XML file:
<?xml version="1.0" encoding="utf-8"?>
-
-
3
Press the "Ctrl" and "S" keys to save the XML file. After you finish the encoding statement, upload the file to your Web or data server to use it with your programs.
-
1