/////WITH IMAGE: on(rollOver){ _root.showTip("An example of a tip with an image","http://docs.miktex.org/roadmap/images/tip.png",100); } on(rollOut, releaseOutside){ _root.hideTip(); } on(release){ if(_root.tooltip_mc._alpha == 0){ _root.showTip("An example of a tip with an image","http://docs.miktex.org/roadmap/images/tip.png",100); }else{ _root.hideTip(); } } /////WITHOUT IMAGE: /////FUNCTION AUTOMATICALLY DETECTS IF THERE IS AN IMAGE REGISTERED /////IN FUNCTION PARAMETERS on(rollOver){ _root.showTip("An example of a tip with an image","",100); } on(rollOut, releaseOutside){ _root.hideTip(); } on(release){ if(_root.tooltip_mc._alpha == 0){ _root.showTip("An example of a tip with an image","",100); }else{ _root.hideTip(); } }