I had asked the question on flash that I want the fade out effect to other buttons except that I choose.if five random buttons are there it should come at its place at the begining and at the end.
moraiyaa
I’ve moved this over to the Flah MX forum, it doesn’t belong in the Battle section.
moraiyaa >> ??? dunno what you mean
I think you didn’t get my question I have made buttons which are books and I want the moment I select one bookbutton the other should fade out and my book should be enlared and it will turn pages and while I am done with it the book should go back to original position and otherbookbuttons fade in and come back to original postion.
please help me to solve this problem
moraiyaa
OK, you need to use rollovers for this. Basically this is the kind of script you need attached to each book button: [AS]on (rollOver) {
tellTarget ("_root.book1") {
gotoAndPlay(“on”);
}
tellTarget ("_root.book2") {
gotoAndPlay(“off”);
}
}
on (rollOut) {
tellTarget ("_root.book1") {
gotoAndPlay(“on”);
}
tellTarget ("_root.book2") {
gotoAndPlay(“on”);
}
}
on (press) {
getURL(“book.htm”);
}[/AS] You should have a movie clip for each book with the rollover fading animation on it. Use frame labels to divide the timeline. It should have a starting position, faded in, and a Stop() action on that frame. Then the next frame should be labelled as a fade out, and have that anim, then the next lot of frames should be the fade in. Place an invisible button over each book movie to catch the rollover, and use the script to target the appropriate movie.
thanks for your reply but if you could send the example attached to it would be a great help.
if you can please send the example.
thanks for your prompt reply.
moraiyaa
I’ve attached an fla with an example inside. If you examine the way the button rollovers work, you should be able to piece together the right scripts for your movie.
thanks for your reply but I am sorry I haven’t got any attachment
with it can you send it to me or tell me where to get it
moraiyaa
I’m afraid the file is too big to attach.