Actionscript Reference
flashTooltip.alertSound
Availability
Flash Player 7
Usage
flashTooltip.alertSound
Description
The linkage ID of a sound file in the library to be played as the flashTooltip appears.
Example
myFlashTooltip.alertSound = "mySound";
trace(myFlashTooltip.alertSound);
flashTooltip.anchor
Availability
Flash Player 7
Usage
flashTooltip.anchor
Description
The position where the flashTooltip should appear, relative to the component's center or corner or the Mouse position.
Example
myFlashTooltip.anchor = "Mouse Position";
flashTooltip.appearOnMouseStop
Availability
Flash Player 7
Usage
flashTooltip.appearOnMouseStop
Description
Specifies whether the flashTooltip should wait until the mouse stops moving before it appears.
Example
myFlashTooltip.appearOnMouseStop = false;
flashTooltip.autosize
Availability
Flash Player 7
Usage
flashTooltip.autosize
Description
Specifies whether the size of the flashTooltip should be calculated dynamically based on its textual content.
Example
myFlashTooltip.autosize = true;
flashTooltip.background
Availability
Flash Player 7
Usage
flashTooltip.background
Description
Read only. Returns a reference to the clip containing the component's background.
Example
trace(myFlashTooltip.background);
flashTooltip.backgroundColor
Availability
Flash Player 7
Usage
flashTooltip.backgroundColor
Description
The color of the component's background.
Example
myFlashTooltip.backgroundColor = 0xFDFDC7;
flashTooltip.backgroundOpacity
Availability
Flash Player 7
Usage
flashTooltip.backgroundOpacity
Description
The opacity, as a percentage, of the component's background. (100 is fully opaque, 0 is fully transparent.)
Example
myFlashTooltip.backgroundOpacity = 90;
flashTooltip.border
Availability
Flash Player 7
Usage
flashTooltip.border
Description
Read only. Returns a reference to the clip containing the component's border.
Example
trace(myFlashTooltip.border);
flashTooltip.borderColor
Availability
Flash Player 7
Usage
flashTooltip.borderColor
Description
The color of the component's border.
Example
myFlashTooltip.borderColor = 0x9F9F9F;
flashTooltip.borderOpacity
Availability
Flash Player 7
Usage
flashTooltip.borderOpacity
Description
The opacity, as a percentage, of the component's border. (100 is fully opaque, 0 is fully transparent.)
Example
myFlashTooltip.borderOpacity = 90;
flashTooltip.borderThickness
Availability
Flash Player 7
Usage
flashTooltip.borderThickness
Description
The thickness of the component's border.
Example
myFlashTooltip.borderThickness = 1;
flashTooltip.corderRadius
Availability
Flash Player 7
Usage
flashTooltip.cornerRadius
Description
The radius of the curve at the corners of the component's background. (0 indicates square corners.)
Example
myFlashTooltip.cornerRadius = 2;
flashTooltip.fontColor
Availability
Flash Player 7
Usage
flashTooltip.fontColor
Description
The color of the component's text.
Example
myFlashTooltip.fontColor = 060606;
flashTooltip.fontFace
Availability
Flash Player 7
Usage
flashTooltip.fontFace
Description
The font used to display the text in the component.
Example
myFlashTooltip.fontFace = "Arial";
flashTooltip.fontSize
Availability
Flash Player 7
Usage
flashTooltip.fontSize
Description
The size of the text in the component.
Example
myFlashTooltip.fontSize = fontSize;
flashTooltip.height
Availability
Flash Player 7
Usage
flashTooltip.height
Description
The height of the component.
Example
myFlashTooltip.height = 20;
flashTooltip.hide
Availability
Flash Player 7
Usage
flashTooltip.hide
Description
Makes the flashTooltip dissappear.
Example
flashTooltip.html
Availability
Flash Player 7
Usage
flashTooltip.html
Description
Forces the component to display text as html (true) or without html formatting (false).
Example
myFlashTooltip.html = true;
flashTooltip.image
Availability
Flash Player 7
Usage
flashTooltip.image
Description
Specifies the linkage identifier of a movieclip in the library or the filename of an external image file to display in the tool tip.
Example
myFlashTooltip.image = "myImage.jpg";
flashTooltip.imageAlignment
Availability
Flash Player 7
Usage
flashTooltip.imageAlignment
Description
Specifies the alignment of the image and text in the tool tip.
Example
myFlashTooltip.imageAlignment = "Center";
flashTooltip.imageBuffer
Availability
Flash Player 7
Usage
flashTooltip.imageBuffer
Description
Specifies in pixels the space between the image and text in the tool tip.
Example
myFlashTooltip.imageBuffer = 5;
flashTooltip.imagePosition
Availability
Flash Player 7
Usage
flashTooltip.imagePosition
Description
Specifies whether the image should be displayed above or below the text in the tool tip.
Example
myFlashTooltip.imagePosition = "Top";
flashTooltip.inEffect
Availability
Flash Player 7
Usage
flashTooltip.inEffect
Description
The effect played as the flashTooltip appears.
Example
myFlashTooltip.inEffect = "Fade";
flashTooltip.inEffectDelay
Availability
Flash Player 7
Usage
flashTooltip.inEffectDelay
Description
The pause, in seconds, before the 'In Effect' effect is played.
Example
myFlashTooltip.inEffectDelay = 0;
flashTooltip.inEffectSpeed
Availability
Flash Player 7
Usage
flashTooltip.inEffectSpeed
Description
The speed, in seconds, of the 'In Effect' effect.
Example
myFlashTooltip.inEffectSpeed = 0.5;
flashTooltip.initializationBuffer
Availability
Flash Player 7
Usage
flashTooltip.initializationBuffer
Description
The delay, in seconds, between the component appearing on the stage and initialization.
Example
myFlashTooltip.initializationBuffer = 1;
flashTooltip.invalidate
Availability
Flash Player 7
Usage
flashTooltip.invalidate()
Description
Restarts the component.
Example
myFlashTooltip.invalidate();
flashTooltip.limitToStage
Availability
Flash Player 7
Usage
flashTooltip.limitToStage
Description
Specifies whether the flashTooltip should be limited to the visible stage area of the SWF (true) or if the flashTooltip should be allowed to move off stage (false).
Example
myFlashTooltip.limitToStage = false;
flashTooltip.outEffect
Availability
Flash Player 7
Usage
flashTooltip.outEffect
Description
The effect played as the flashTooltip disappears.
Example
myFlashTooltip.outEffect = "Fade";
flashTooltip.outEffectDelay
Availability
Flash Player 7
Usage
flashTooltip.outEffectDelay
Description
The pause, in seconds, before the 'Out Effect' effect is played.
Example
myFlashTooltip.outEffectDelay = outEffectDelay;
flashTooltip.outEffectSpeed
Availability
Flash Player 7
Usage
flashTooltip.outEffectSpeed
Description
The speed, in seconds, of the 'Out Effect' effect.
Example
myFlashTooltip.outEffectSpeed = 0.25;
flashTooltip.padding
Availability
Flash Player 7
Usage
flashTooltip.padding
Description
The space in pixels between the text in the component and the border of the component.
Example
myFlashTooltip.padding = 0;
flashTooltip.position
Availability
Flash Player 7
Usage
flashTooltip.position
Description
Position of the component relative to the position indicated by the 'anchor' property.
Example
myFlashTooltip.position = "Top Right";
flashTooltip.show
Availability
Flash Player 7
Usage
flashTooltip.show
Description
Causes flashTooltip to appear.
Example
flashTooltip.target
Availability
Flash Player 7
Usage
flashTooltip.target
Description
The instance name of the symbol on the stage that the flashTooltip is linked to.
Example
myFlashTooltip.target = "myClip";
flashTooltip.text
Availability
Flash Player 7
Usage
flashTooltip.text
Description
The text to be displayed by the flashTooltip.
Example
myFlashTooltip.text = "tool tip";
flashTooltip.textfield
Availability
Flash Player 7
Usage
flashTooltip.textfield
Description
Read only. Returns a reference to the textfield that contains the text displayed by the flashTooltip.
Example
trace(myFlashTooltip.textfield.text);
flashTooltip.useEmbeddedFont
Availability
Flash Player 7
Usage
flashTooltip.useEmbeddedFont
Description
Specifies whether the 'fontFace' property refers to an embedded font or not.
Example
myFlashTooltip.useEmbeddedFont = false;
flashTooltip.width
Availability
Flash Player 7
Usage
flashTooltip.width
Description
The width of the component.
Example
myFlashTooltip.width = 100;
flashTooltip.xAxisOffset
Availability
Flash Player 7
Usage
flashTooltip.xAxisOffset
Description
Value to adjust the horizontal position of the component by.
Example
myFlashTooltip.xAxisOffset = 0;
flashTooltip.yAxisOffset
Availability
Flash Player 7
Usage
flashTooltip.yAxisOffset
Description
Value to adjust the vertical position of the component by.
Example
myFlashTooltip.yAxisOffset = 0;