in MyTooltip you can re-assign the onRollOver to another name and call that from the new onRollOver, like this :

in MyTooltip

mc.onRollOver2 = mc.onRollOver;

mc.onRollOver = function()
{
   // some stuff here

   // call the original
   this.onRollOver2();
}

thats one way of doing it

martin

Matthias Dittgen wrote:
but it doesn't work for me, because I don't want to get onRollOver
from the superclass ( I don't do an extend). I just want to add some
functionality to the onRollOver of the same instance of a movieclip.
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to