Advanced Flash Components
Search!
Search!
Home >  Knowledge Base >  Tooltip >  Animate tooltip position?
Animate tooltip position?
Date: Jun 5, 2007   Views: 1905  
Question:
Can the Tooltip V. 3.5 animate in and out like the one in this link? Thanks for your time.

http://www.flashden.net/item/dynamic-tooltip/312
Answer:

andreit (Admin)
The answer is yes, tooltip's position can be animated. Please note that this functionality will require custom scripting.

btn.onRollOver = function (){
  this.onEnterFrame = function (){
    _root.myTT._x += ((_xmouse-35) - _root.myTT._x)/5;
    _root.myTT._y += ((_ymouse-_root.myTT._height) - _root.myTT._y)/5;
  }
}
Component Info
Other Questions