I have 2 swf Files one of them has large file size & I want to load that large file from the small one . that's easy but I want to check that a certain frame in the large file is loaded.
hmmmmmmm, u can't do that with loadMovie.
BillyT and u mentioned the ways u can do this with, so what's the problem??
ActionScript Code:
load_btn.onRelease =function(){
holder_mc.loadMovie("loaded_mc.swf")
loadInfo = setInterval(ckeckIfLoaded,10)}function ckeckIfLoaded(){if(holder_mc._currentframe=="targeted_frame"){//u can do it here with Billy's waytrace("frame # "+holder_mc._currentframe +"is right here")clearInterval(loadInfo)}}
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
sure, but is that what you want??
does it worked ??
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
so why are you asking as long u don't/won't use it??
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
I didn't mean that I won't use it . What I meant that I couldn't undrstand the code so I didn't know how can I use it. Put it in KeyFrame or MC or Button what elements I have to creat in the file and , etc.....