Features: * Easily adjustible * Fully editable in Flash MX * Resizable to any size
Instructions: * You may add as many tooltips as you want. * Duplicate component. Select it, open property panel and name component as 'tooltip1' (tooltip2, tooltip3 etc.) * Make necessary changes to parameters of the component (font-size, font-colour, transparency). * In 'dertext' field entitle your tooltip (for example: Link to my portfolio). * Remember to place all components outside the stage. Duplicate button. * Rename all tooltip names to corresponding components. For example for the component named 'tooltip2', change all entries 'tooltip2' to 'tooltip2' (in three places):
on (rollOver) { tooltip1._visible = true; startDrag("tooltip1", true); } on (rollOut) { tooltip1._visible = false; stopDrag(); }
So that the script look like this:
on (rollOver) { tooltip2._visible = true; startDrag("tooltip2", true); } on (rollOut) { tooltip2._visible = false; stopDrag(); }
Features:
* Easily adjustible
* Fully editable in Flash MX
* Resizable to any size
Instructions:
* You may add as many tooltips as you want.
* Duplicate component. Select it, open property panel and name component as 'tooltip1' (tooltip2, tooltip3 etc.)
* Make necessary changes to parameters of the component (font-size, font-colour, transparency).
* In 'dertext' field entitle your tooltip (for example: Link to my portfolio).
* Remember to place all components outside the stage.
Duplicate button.
* Rename all tooltip names to corresponding components. For example for the component named 'tooltip2', change all entries 'tooltip2' to 'tooltip2' (in three places):
on (rollOver) {
tooltip1._visible = true;
startDrag("tooltip1", true);
}
on (rollOut) {
tooltip1._visible = false;
stopDrag();
}
So that the script look like this:
on (rollOver) {
tooltip2._visible = true;
startDrag("tooltip2", true);
}
on (rollOut) {
tooltip2._visible = false;
stopDrag();
}
Keywords:
tooltip, tip, alternative, text, windows, buttons, links, help, tips