andreyandrejev Posted July 1, 2013 Report Share Posted July 1, 2013 Naime, potrebno je da uz flash prezentaciju (swf fajl) napravim xml fajl koji sadrži određene odlike swf fajla. U konkretnoj stvari, kada izmenim tekst u xml fajlu, potrebno je da se na isti način izmeni tekst u swf fajlu, jedini uslov je da oba budu u istom direktorijumu. Da li je dovoljno da iz fla dokumenta odradim export xml, ili je potrebno više. Hvala Link to comment Share on other sites More sharing options...
JustBest Posted July 1, 2013 Report Share Posted July 1, 2013 Za ovo bi bilo potrebno i malo kodiranja. Napravices zaseban xml fajl, koristeci bilo koji text editor, koji ce sadrzati parametar koji ce biti izmenljiv. Kada to odradis napravis xml loader u flash-u i ucitas predhodno kreirani xml fajl. Kada je ucitavanje zavrseno, setovaces vrednost text polja vrednoscu koja je zapisana u xml-u. Primer koda: http://actionscriptexamples.com/2008/12/05...ctionscript-30/ var xml:XML; var textArea:TextField = new TextField(); textArea.width = 300; var urlRequest:URLRequest = new URLRequest("http://www.helpexamples.com/flash/xml/menu.xml"); var urlLoader:URLLoader = new URLLoader(); urlLoader.dataFormat = URLLoaderDataFormat.TEXT; urlLoader.addEventListener(Event.COMPLETE, urlLoader_complete); urlLoader.load(urlRequest); function urlLoader_complete(evt:Event):void { xml = new XML(evt.target.data); textArea.text = xml.toXMLString(); addChild(textArea); } Link to comment Share on other sites More sharing options...
andreyandrejev Posted July 9, 2013 Author Report Share Posted July 9, 2013 Hvala, videću šta mogu da uradim. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now