flash prob.
- Started
- Last post
- 11 Responses
- ufreq
just putting a simple movie clip on the stage with the following action -
onClipEvent (load) {
loadMovie("photo.swf",this);
}Any ideas why this isn't working?
help appreciated
- ********0
check your syntax
- unformatted0
did you put that on your mc or your frame?
- ufreq0
i put it as an action of the mc. i.e. i dragged mc clip on stage, right clicked on movie clip and typed in actionscript
- unformatted0
try
onClipEvent (enterFrame) {
this.loadMovie("photo.swf");
}
- ufreq0
unformatted: thanks for your help, my original movie clip disappears now but the other movie clip does not load in. I am definitely calling the correct .swf file, I have saved this flash file and swf in the same directory also so i don't think its a pathing problem. any more ideas, help appreciated, i can't believe i'm struggling with this
- ufreq0
anyone?
- ********0
ok, so you are certain the target path is correct, and the level that you are loading into is having its swf removed but you aren't seeing the new swf, yes?
If that is the case, check the swf being loaded in, its there, but not appearing... might be an error in its setup (are you using scenes?).
- unformatted0
you have the fla's? link them here or email me and i'll see if i can see what's happening.
- sauerbraten0
dont enterframe the shit and specify a level
onClipEvent (load) {
this.loadMovie("photo.swf", "_level5");
}
- autonoma0
Don't load a movie onEnterFrame. Why would you want to do that? You just need to load it once, not 24 times a second.
- unformatted0
oops my bad