cover.onEnterFrame = function ()
{
if (this.hitTest(_root._xmouse, _root._ymouse) == false)
{
destY = 91;
} // end if
};
gal1_btn.onRollOver = function()
{
destY = this._y;
};
gal2_btn.onRollOver = function()
{
destY = this._y;
};
gal3_btn.onRollOver = function()
{
destY = this._y;
};
gal4_btn.onRollOver = function()
{
destY = this._y;
};
gal5_btn.onRollOver = function()
{
destY = this._y;
};
gal6_btn.onRollOver = function()
{
destY = this._y;
};
gal7_btn.onRollOver = function()
{
destY = this._y;
};
arrow_mc.onEnterFrame = function ()
{
this._y = this._y + (destY - this._y) / 10;
};
ok everything is ok. arrow eases and goes where you rolledover. once you leave the hitest it goes back to 91. the original spot. But I want it so that when you click on a button. the arrow now eases back towards the section you just clicked making it the default.
see what I mean? i’ve tried but im not any good.
thanks.