I have three swfs. 1. ‘main’ 2. ‘anim’ 3. ‘1st’
- main.swf the first one. with jus a background image. & a movie clip with the instance name ‘contents’. with this script…
stop();
_root.contents.loadMovie(“anim.swf”);
anim.swf. loads on that ‘main’.
- “anim.swf”
now on in anim. there is a button, i want the button to take the user to, or load ‘1st.swf’ i used this…
on (release) {
_parent.contents.loadMovie(“1st.swf”);
}
3.1st.swf
BUT the button is not taking me to 1st.swf
did i explain that right?