I cant seem to find the tutorial where it talks about transitions in and out of buttons. I saw it the other day but I cant seem to find in the search or anywhere. little help would be great.
Cloak
Have you seen this one: http://www.kirupa.com/developer/mx2004/transitions.htm ?
yup I have, but im talking about when you have a mc on a button and lets say that button slides out and when you roll off it slides back. a normal button doesnt slide back smoothly. I know there is an example of it in the tutorial some where
or…
If someone knows the code to do this action could ya clue me in. I know its very similar to this, but with a diffrent contianer and mc thing.
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “home”;
container.loadMovie(“home.swf”);
} else if (_root.currMovie != “home”) {
if (container._currentframe>=container.midframe) {
_root.currMovie = “home”;
container.play();
}
}
}
i found it. Its the smartclip tutorial. Thanks kirupa