what does this do? what is !this.isRollOver? is this reserved word or what..
if (!this.isRollOver)
{
this.isRollOver = true;
trace("inner rollover: " + this);
}
}
else {
if (this.isRollOver)
{
this.isRollOver = false;
trace("inner rollout: " + this);
}




Reply With Quote