Suzaku7
01-23-2006, 08:50 PM
So I have a swf that randomly calls other swfs into it.
I have one swf that has an old film grain effect on it, and by it self it works just fine , but when called by my RandomLoader.swf it will not play the 3 MovieClips that make the effect work.
onClipEvent(enterFrame){
_root.line._x=random(728);
for (i=0; i<=2; i++)
{
_root.dot.duplicateMovieClip( "dot"+i, i+1);
}
if (i=2){
i=0;
}
}
I was thinking the _root was the problem and I tried _level0 too but that didnt do the job either.
any suggestions?
I have one swf that has an old film grain effect on it, and by it self it works just fine , but when called by my RandomLoader.swf it will not play the 3 MovieClips that make the effect work.
onClipEvent(enterFrame){
_root.line._x=random(728);
for (i=0; i<=2; i++)
{
_root.dot.duplicateMovieClip( "dot"+i, i+1);
}
if (i=2){
i=0;
}
}
I was thinking the _root was the problem and I tried _level0 too but that didnt do the job either.
any suggestions?