My account
Shopping cart
Knowledge base
Support


Usage and Code Samples for Easy ToolTip Flash Component



Easy ToolTip Component Usage and Code Samples

//(the instance name of the component on the stage is "toolTip"; "testMC" is a movieClip on the stage)

testMC.onRollOver = function() {
toolTip.toolTipText("the text to be displayed");
};
testMC.onRollOut = function() {
toolTip.clearText();
};