Ease my frustration please!

Hi there,

The last few days I have been trying to figure out how to constrain a MC that follows the mouse on the Y axis with no luck.

While I have certainly come across many threads on the matter, on many boards, every method of doing it (including the mouse follow) is different and adding to my confusion.

Here’s the code I’m using, and by all means, if you know of something simplier, then let me know.

Okay, here it is:

onClipEvent (enterFrame) {
mousey = _root._Ymouse;
if (mousey<_y) {
followmouse = _y-mousey;
} else {
followmouse = mousey-_y;
}
moveSpeedx = followmouse/10;
if (mousey<_y) {
_Y = _Y-movespeedx;
} else {
_Y = _Y+movespeedx;
}
}

So, as I wanted this will follow my mouse. However, if the user was to go beyond the movie frame, I also lose the MC. I want to restrict it to a min of 20 and max of 230.

Can anyone help. I’m getting desparate here. Make me go to bed a happy girl.

Cheers. YP

Think about it…

if (this._y<20){
this._y = 20;
}

and

if (this._y>230){
this._y = 230;
}

That keeps an object from going past a certain point.

Thanks.

I’m fairly new to AS do you’ll have to forgive me. Where would this go in my AS?

Is there an easier way (i.e. shorter AS) to do this?

YP

The code goes in your onEnterFrame section, you will need to modify it to fit the needs of your movie, I can’t see exactly how everything works so that is up to you.

That is as short as you are going to get it.

THANKS A BUNCH!!! It works. I had to do another clipevent until I figure out how to incorporate both scripts but I got it from here.

Thanks.

No problem :slight_smile:

Lost, you seem to be the king of simple-yet-advanced Action Script.

LOL, I am not the king of any kind of AS, but I am very good at simple AS…lol.

lost is too modest. He’s ‘da man’, don’t let him fool you.

Yes, I am ‘da man’ of simple AS :stuck_out_tongue:

You never fool me lost!

I believe that in my post #3 I have said that. Or something like: “Yeah, lib rox!”

I´m way ahead of you. :stuck_out_tongue:

=)

Thanks guys :slight_smile: