i did the preloader/transition tut. in this site… it works great… but one thing i noticed that i the transition during the closing part is still showing the previous .swf file… and i dont want the previous .swf file to show while the transition is closing…
does anyone know how to make this happen?
if i didnt explain it very well, you can take a look at what i mean by going here…
i dont have a preloader for the main.swf so please be patient when the screen turns white… it will turn black and have a bar scroll across the screen when its loaded…
Gray_xx, this will be a warning, next time use the EDIT button to add more comments instead of posting consecutive posts. One more time and I’m banning you, have a nice day.
what i want to do is when my transition from one external swf to another external swf, i dont want the previous external swf to show up while doing the ‘closing’ part of my transition…
neaaa it is not still working so you making this transition by the loadMovie code huh ? i cant help you me didnt see what is the problem
still this The page cannot be displayed
hhmmmm i dont know but maybe you will make 3 or how many movies do you have and make so much frames
and the code it like it for example
b1.onRelease = function() {
if (_root.section != “profile.swf”) {
gotoandstop(1);
_root.section = “profile.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};
b2.onRelease = function() {
if (_root.section != “gallery.swf”) {
gotoandstop(2);
_root.section = “gallery.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};
b3.onRelease = function() {
if (_root.section != “photos.swf”) {
gotoandstop(3);
_root.section = “photos.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};
and so on this allways helps so what happens the 1 button mvoes to exact movie and when pushing next button it moves to the next free frame and loads the movie there;)
of course that’d make your 1st content just blip-out instead of transition out … meThinks you may want to go with an animated mask that _yscales to zero% / down for closing and expands back out to 100% for opening
ps:edit:: that’ll also save you from having to tween in your incoming content