Tooltip Component

Property summary for the Tooltip class

The following table lists properties of the Tooltip class.

Property Description
FlashSwfTooltipe.tooltipText A String for Set Tooltipe Text .
FlashSwfTooltipe.tooltipShow A Boolean for Set Tooltipe Visiblity .

Note: This component must be in the uppermost layer in the timeline.

Example

// example usage for Button:
on (rollOver) {
	mytooltip.tooltipText = "FlashSwf.com \n ToolTipe components";
	mytooltip.tooltipShow = true;
}
on (press, release, releaseOutside, rollOut, dragOver, dragOut) {
	mytooltip.tooltipShow = false;
}

// example usage for MovieClipe:
on (rollOver) {
	_parent.mytooltip.tooltipText = "FlashSwf.com \n ToolTipe components";
	_parent.mytooltip.tooltipShow = true;
}
on (press, release, releaseOutside, rollOut, dragOver, dragOut) {
	_parent.mytooltip.tooltipShow = false;
}

Download Sample Fla