SlideShowPro Help
SlideShowPro Help
Out of context: Reply #38
- Started
- Last post
- 40 Responses
- tbgd0
MrDinky, I've had his problem before and had to use the hitTest method as mouse events on higher levels block the buttons in the loaded SWFs.
just put this:
yourMc.onMouseDown = function(){
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
gotoAndPlay("test01");
}
}on the timeline in the SWF loading in put an instance name on your button of "yourMc" (or anythig else you want).