| Legolas9901 webforumsuser@macromedia.com 2004-01-26, 11:29 pm |
| Hey all-
Got a big problem. This is pretty much the shortest explanation. To begin, think of it as a music player.
I have a movie clip. In that are two buttons that control a PAUSE in the action and a PLAY. Also in this movie clip, I have another layer that contains music.
This is the actionscript coding for the two buttons:
FOR THE STOP/PAUSE:
on(release) {
gotoAndStop(1);
}
FOR THE PLAY:
on(release) {
gotoAndPlay(1);
}
Basically the problem is that they're not responding to my demands! I'm clicking them and nothing happens, the music keeps on playing. Is it the fact that they're within a movie clip? The buttons and the music are all in together in the same movie clip.
Any help would be great.
|