PDA

View Full Version : Content of Movieclip



louster
April 24th, 2005, 03:37 PM
Hi guys, can anybody tell me how to get/trace the content of a movieclip?

ex: im loading an image from a mysql database into a targetclip i flash, i do this by calling a php file with a id attached (loadimg.php?id=345), so i don't know the actual name of the image that gets loaded into the targetclip. but i would like to :-)

thanks!

MichaelxxOA
April 24th, 2005, 05:11 PM
maybe if you traced it using a for..in loop, a movie clip is an object so maybe doing something like

for (i in myClip_mc) {
trace(myClip_mc[i]);
}

or i'm sure that there is a better way to actually capture what the php file loads and then sending it to wherever you need it.
-Michael