Código ActionScript :
var news_xml = new XML(); news_xml.ignoreWhite = true; news_xml.onLoad = function (success) { if (success) { parseNews(this); } // end if }; cframe = _root.mc_controls.play_btn._currentframe; _root.mc_controls.play_btn.onPress = function () { if (_root.autoplay == "false" && !first_touch) { if (first_touch != 1 && cframe == 1) { news_xml.load("getfile.xml"); } // end if first_touch = 1; } // end if }; if (_root.autoplay == "true") { news_xml.load("getfile.xml"); } // end if
SALUDOS