link SWFs problem
link SWFs problem
Out of context: Reply #2
- Started
- Last post
- 2 Responses
- Neuarmy0
take a closer look at your AS siny...
you have it reversed:
----------------------------
Cube1.swf
on(release){
loadMovieNum("Cube2. swf",1);
_level0.stop();
}Cube2.swf
on(release){
loadMovieNum("Cube1. swf",1);
_level0.stop();
}----------------------------
the actions for Cube1.swf say to load cube2.swf and the actions for Cube2.swf say to load cube1.swf...just change the number of the swf yer loading...