My XML scripts work fine in the local swf. If I load an external swf, can I still retrieve XML data from the same way. What problems will I encounter with XML and externally loaded swf files?
Based on looking at my sample code, some response about XML problems would be appreciated. Thanks.
VARIABLE TYPES
var timer:Timer = new Timer(10);
var myString:String = "";
var count:int = 0;
var myStg:String = "";
var fcount:int = 0;
RUBY REXML
msg1 = {"msg" => {"head" => {"type" => "frctl", "seq_no" => seq_no, "version" => 1.0},
"SESSION" => {"text" => "88888", "timer" => -1000,
"count" => 10, "fcount" => "10"}}}
XML
<msg>
<head>
<seq_no>10000001</seq_no>
<type>frctl</type>
<version>1.0</version>
</head>
<body>
<fcount>10</fcount>
<timer>-1000</timer>
<count>10</count>
<file>svrReadyXML.swf</file>
</body>
</msg>