Wikipedia:Reference desk/Computing: Difference between revisions
Content deleted Content added
Line 324:
A friend of mine asked me to create a website for his band. He said it doesn't need to be anything too fancy, although he'd like to have a flash site with it (I've already created an HTML alternative... or should it be XHTML?). My question is, how would I go about using XML files for the flash site? As in, how would I use a SWF "container" to display the content of various XML files? For example, if I had a button called "About" in flash, when clicked upon, it would call and parse the content from a corresponding external XML file, whereas it displays the members of the band, while clicking another button, say "Gigs", would load another XML file containing information about upcoming performances. How would I go about doing this? Thanks, [[User:vic93|<b><font color="#00ff00" size="3" face="Monotype Corsiva">''Valens''</font> <font color="#000000" face="Cambria Math">Impérial</font> <font color="ff0000" face="Century">Császár</font>]] [[User talk:vic93|<font color="#0000ff">93</font></b>]] 15:47, 22 July 2008 (UTC)
:Do you have Adobe
<pre>var textLoader:URLLoader = new URLLoader();
var textReq:URLRequest = new URLRequest("html.txt");
|