Hey everyone,
I’m having a code problem for an external swf that I’m loading into my main site. I have a button which has this code attached to it.
on (release) {
loadMovieNum(“worktv.swf”, 5);
_level5._x = -325;
_level5._y = -300;
_level5._alpha = 60;
}
and then I have an empty movieclip which has another set of code attached to it which is
onClipEvent (enterFrame) {
if (loaded>0 && loaded == _level5._totalframes) {
_root.percent = 100;
} else if (loaded<=0 && loaded<_level5._totalframes) {
_root.meback.attachMovie(_root.doormc);
_root.percent = Math.floor((_level5.getBytesLoaded/_level5.getBytesTotal)*100);
}
}
can someone please tell me why this isn’t working I’ve tried everything and nothing seems to work. I would appreciate the help!!!
Thanks,
Kyle