Groups | Blog | Home
all groups > macromedia mobile and devices flashlite > february 2005 >

macromedia mobile and devices flashlite : swf not loaded!


egalew
2/6/2005 2:12:36 PM
Hi
i am trying to load a swf
file but its not working.

on (press){
_level0:menuOpen = false
tellTarget ("_level0/dropDown")
loadMovieNum("test.swf", 2);
{
gotoAndPlay(6);
}

Can someone tell me what i am doing wrong?
Marcell Lelkes
2/6/2005 2:33:25 PM
There may be a problem with the syntax. Check your brackets. Something like
this should work. You may want to put the loadMovieNum outside the tellTarget
if that is what you wanted.

on (press){
_level0:menuOpen = false;
tellTarget ("_level0/dropDown")
{
loadMovieNum("test.swf", 2);
gotoAndPlay(6);
}
}
egalew
2/6/2005 2:44:30 PM
Thanks for the script but its not working

on (press){
_level0:menuOpen = false;
tellTarget ("_level0/dropDown")
{
loadMovieNum("test.swf", 2);
gotoAndPlay(6);
}
}
mars_d
2/7/2005 4:58:55 AM
Could you explain your development problem in detail.

Are you not able to load the file "test.swf", or is it that your "dropDown"
instance on stage is not being identified, or is it something else. With the
script that you have attached one cannot identify the problem and thus
solutions cannot be provided.
Paul Lamonby
2/7/2005 1:35:09 PM
Just to eliminate the obvious: Is your dropDown movieclip instance named
'dropDown'? Is your test.swf file in the same file location as the _level0
movie? Is this problem happening on the mobile device or the desktop or both?
Is the dropDown movieclip going to frame 6 and playing? Answers to these will
help narrow down the problem.
AddThis Social Bookmark Button