SlideShowPro Help
SlideShowPro Help
Out of context: Reply #31
- Started
- Last post
- 40 Responses
- tbgd0
Try using a hitTest for the button rather then a onPress, like below. This ignores any on mouse events like rollovers etc. on movieclips/buttons that will be on top of your button and preventing it from working:
yourMc.onMouseDown = function(){
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
gotoAndPlay("test01");
}
}