link SWFs problem
- Started
- Last post
- 2 Responses
- siny
Dear all,
I have two files: Cube1.swf and Cube2.swf. When the viewer clicks on Cube1.swf, it will go to Cube2.swf or vice versa.
I use this action to link these two:Cube1.swf
on(release){
loadMovieNum("Cube2.swf",1);
_level0.stop();
}Cube2.swf
on(release){
loadMovieNum("Cube1.swf",1);
_level0.stop();
}When the viewer clicks on Cube2.swf, Cube1.swf appears. However, before Cube1.swf appears on the screen, a white screen or some frame of the Cube2.swf will appear first before Cube1.swf. Could anyone help me to solve this problem? Million of thanks!
Please download attachment:
www.delvetica.net/solution/fh008…...
- siny0
Sorry about the link.
http://www.delvetica.net/so lution/fh008.html
- 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...