flash help..
flash help..
- Started
- Last post
- 2 Responses
- Krimzen
hey I'm tryin to load an external .swf from a button inside a movie clip do I need to change anything in this code or should it work?
on (release){
loadMovie("loadme.swf","myframe...
}I can get it to work from a button on the main stage but not from inside a movie clip.
thanks all
- phenom0
I think you need to define where your target is in the code.
use _root.movie1.movie2. etc etclike this:
on (release) {
loadMovie ("loadme.swf", "_root.movie1.movie2.myframe");
}
- Krimzen0
I had originally tried adding _root but it didn't work until I removed the " " marks.
thanks for the help