idea has been to have a select button in each keyframe of this movieclip containg these 5 frames which would do exactly the same as they have done in the maintimeline for example originally the script was;
btn_stop.onRelease = function() {
trace("Stop song");
clearInterval(timeInterval);
_root.timeDisplay_txt.text = "00:00/00:00";
this._parent.sound_mc.sound_obj.stop();
but now it's in the playermenu movieclip i would expect it to be this
playermenu.btn_stop.onRelease = function() {
trace("Stop song");
clearInterval(timeInterval);
_root.timeDisplay_txt.text = "00:00/00:00";
this._parent.sound_mc.sound_obj.stop();
However this doesnt work and i cant seem to find any info on buttons inside movieclips, any ideas would be much appreciated
