I trying to create a dynamic panel such that when there is a mouse rollover the panel comes down and likewise when there is a rollout. I can archive this dynamic panel. The only problem is that the buttons embedded into this panel donot function. I was hoping there is someone who can solve this problem. If there is tuturial, I will be glad to learn. Here is the code I used on the main movie that holds the animated timeline of the panel. The code works well on the panel (bottombar)
on (rollOver) {
tellTarget ("_root.bottombar") {
play();
}
}
on (rollOout) {
tellTarget ("_root.bottombar") {
play();
}
}
The panel is a movie symbol. The buttons are embedded in this movie, but the buttons donot work. Thanks