all groups > flash actionscript > october 2004 >
You're in the

flash actionscript

group:

cannot play flash movie



cannot play flash movie amvian
10/18/2004 9:13:25 PM
flash actionscript: When I play movie in flash mx 2004 by Test Movie, my movie show.
My movie only have scrollbar and Textbox nothing else.
I read from XML file and display in the dynamic Textbox.

But when I try to open Flash Movie from directory, it didn't show anything.

Anyeone have any idea why? Please help!!

Re: cannot play flash movie flashphpdev
10/18/2004 9:19:35 PM
Are you getting the xml results displayed when you test from flash....Not
standalone??

If not try using a series of trace statements in the onLoad method of the
recieving xml object to see if the xml is passing properly...


var xmlObj:XML = new XML();
xmlObj.contentType = "text/xml";
xmlObj.ignoreWhite = true;

xmlObj.onLoad = function(success) {

if (success) {

var topLevelNode:XMLNode = xmlObj.firstChild;
trace(topLevelNode);

} else {

trace("error");

}
}

xmlObj.load('asldfj.xml");

Hopefully that will help you with your problem let me know if you need more
help

Dustin
Re: cannot play flash movie amvian
10/18/2004 9:48:12 PM
I get the result from xml file by using trace or appending at textbox
Textbox.text=data
AddThis Social Bookmark Button