To load in the CSV data into Flash we will use Zinc commands, in particular a command called mdm.Dialogs.BrowseFile.show
(http://www.multidmedia.com/support/learning/help/HTML/zinc/2.5/dialogs_browsefile_show().htm)to display a Browse Dialog so that the user can choose which
CSV file to load and also mdm.FileSystem.loadFile (http://www.multidmedia.com/support/learning/help/HTML/zinc/2.5/filesystem_loadfile().htm) which we will
use to actually load the file. In the sample FLA, the function openCSV does this for us :
2 to 4) These lines customise the text shown on our Browse Dialog so that only CSV files can be opened
5) Displays the Browse Dialog - The file path of the selected file will be placed in the variable 'csvPath'
7) Loads the file selected by the user and places the text data into the variable 'csvData'
8) Displays a dialog prompt informing the user that the file has been loaded.
9) This line ensures that return carraiges are read properly into Flash
10 - 11) Some CSV files have an ending return carraige, some dont. This code ensures that this ending return carraige is removed
Now we have imported the data into Flash we can now process it and turn it into XML data.
We hope the information helped you. If you have any questions
or comments, please don't hesitate to post them on the
Forums section Submit your Tutorial at Click Here