problems with buttons
Hello,
I try to make a GPS device interactive for a learning module. The problem is when I put an action to a button that he has to go to a frame the first time is no problem. He has to show what is on the display and a new button. This button is the same as before but needs a new different action ( show another button and display) but he is not going to the next button and display. he just stops.
Can anybody help me.
This is the code I use:
var _this = this;
/*
Clicking on the specified symbol instance executes a function.
*/
_this.knop_menu_01.on('click', function(){
/*
Moves the playhead to the specified frame number in the timeline and stops the movie.
Can be used on the main timeline or on movie clip timelines.
*/
_this.gotoAndStop(28);
});
