PDA

View Full Version : How to stop mc scrolling off stage


wownflutter
02-08-2006, 08:29 AM
I have an mc being scrolled under a mask by forward and backward buttons.

But, I can't figure out how to get the mc from being able to scroll off stage!

Help!

Flash Gordon
02-08-2006, 08:03 PM
if (_mc > 0 && _mc < Stage.width) {
// scroll
}

wownflutter
02-08-2006, 08:09 PM
Where do I put this code?

Is it part of a button script? or just put into a frame... or?

Thanks!

Flash Gordon
02-08-2006, 08:10 PM
depends on how you are moving it, but I'm guess on button.

wownflutter
02-08-2006, 08:30 PM
How can you apply that to this mc button:

on(press){
_root.panel_mc.tween("_x", _root.panel_mc._x-780, 1.1,"easeOutExpo", 0);
}