Slider
Add a slider to your movie. Drag the button along the line between a minimum and maximum value.
Properties
On Change
• The script to be executed when the item changes.
|
The 'On Change' event includes one variables. 'Value', the current value of the slider.
alert(Value);
Minimum Value
• The minimum value of this control.
|
Initial Value
• The initial value of this control. The initial value must be between the minimum and maximum.
|
Maximum Value
• The maximum value of this control.
|
Fill Type
• The method of filling this item.
|
Gradient Angle
• The angle of the gradient fill.
|
Gradient Center X
• The horizontal center of a radial gradient, between -50 and 50.
|
Gradient Center Y
• The vertical center of a radial gradient, between -50 and 50.
|
Bevel Width
• The width of the bevel of the button.
|
Shape
• The shape of the button.
|
Use Mouse Over
• The button can change when the mouse is moved over it. This doesn’t work for touch screens and phones.
|
Image
• The background image. Only for image fill types.
|
Press Image
• The background image when pressed.
|
Over Image
• The background image when the mouse is moved over it.
|
Color
• The background color.
|
Gradient Color
• The gradient color, which is combined with the normal color.
|
Press Color
• The background color when pressed.
|
Press Gradient Color
• The gradient color, which is combined with the press color.
|
Over Color
• The background color when the mouse is moved over it.
|
Over Gradient Color
• The gradient color, which is combined with the over color.
|
Border Type
• The type of line, none, solid, dotted or dashed lines.
|
Border Color
• The color of the lines or borders.
|
Border Press Color
• The color of the lines or borders when pressed.
|
Border Over Color
• The color of the lines or borders when the mouse is moved over it.
|
Border Width
• The width of the lines or borders.
|
Shadows
• Add shadow effects.
|
Shadow Width
• The width of the shadow.
|
Shadow Height
• The height of the shadow.
|
Indent on Press
• Show an indent shadow when the button is pressed.
|
Bar Thickness
• The thickness of the bar.
|
Button Size
• The size of the button.
|
Read Only
• The text can only be read.
|
Direction
• The direction this control will move.
|
Tooltip
• Show some information when the mouse hovers over an item. Tooltips are not displayed when using touch.
|
Cursor
• Change the mouse cursor. Cursors are ignored on touch devices.
|
Custom Cursor
• Set the cursor to a cursor in the library.
|
Embed
• Embed any image data in the HTML export.
|
Some button shapes may have additional properties.
Top Left Corner
• The size of the rounded top left corner.
|
Top Right Corner
• The size of the rounded top right corner.
|
Bottom Left Corner
• The size of the rounded bottom left corner.
|
Bottom Right Corner
• The size of the rounded bottom right corner.
|
Points
• The number of point in the shape.
|
Large Radius
• The large radius of the points.
|
Small Radius
• The small radius of the points.
|
Script
Slider Get
• Get the current value of the slider. You must set a 'Script ID' value for the input in the timeline.
SliderGet("Script ID");
|
Slider Set
• Set the current value of the slider. You must set a 'Script ID' value for the input in the timeline.
SliderSet("Script ID",Value:Number);
|