Contents

Scenes Button

Frame Frame

A frame is used to define the position, rotation and visibility of an item at a certain point of time in the movie. You can add key frames using the timeline, or you can set an initial frame and use script to set the position etc.


Edit Properties

Use Timeline • Use the timeline to animate this item. The alternative is to use script.

Script ID • The 'Script ID' is used to identify an item in the timeline. This value is only available for items that support scripting like a YouTube video or items that are not using the timeline. Set 'Script ID' to an identification value like Video1 and then use a button to open different videos.

Label • The label will appear in the timeline next to the frame. It is only for assistance.

Visible • The frame of the movie is visible.

Opacity • A value between 0 invisible and 100 opaque.

Rotate Direction • The direction the item will rotate in when transitioning.

Rotations • The number of complete rotations and item will make when transitioning.

Angle • The angle of rotation. Some items can only be rotated ninety degrees or not at all. This is due to HTML restrictions.

Center of Rotation • Allow the center of rotation to be edited.

Center Angle • The center of rotation is calulated using an angle and radius from the original center.

The center of rotation can also be edited by dragging the central '+'.

Center Radius • The center of rotation is calulated using an angle and radius from the original center.

The center of rotation can also be edited by dragging the central '+'.

Easing Type • How the transition moves between this frame and the next.

Easing Strength • The strength of the easing.

Curve • The curve of the transition.

Transition • The frame will transition to the next frame.

Script Script

To use script with a frame. Turn off 'Use Timeline'. Add a 'Script ID' for example, 'MyItem'. Then set the properties of the item like this:


MyItem.Width=150;
MyItem.Visible
=false;
MyItem.Angle
++;
MyItem.SetBounds
(50,50,150,150);

X • The center X coordinate of the item.

ScriptId.X=Number;

Y • The center Y coordinate of the item.

ScriptId.Y=Number;

Width • The width of the item.

ScriptId.Width=Number;

Height • The height of the item.

ScriptId.Height=Number;

Angle • The clockwise angle of rotation of the item. Measured in degrees from 0 to 360. Some items only support 90 degrees rotation. Some items don't support any rotation. This is due to web browser limits.

ScriptId.Angle=Number;

Opacity • The opacity of the item from 0 to 100.

ScriptId.Opacity=Number;

Visible • The visibility of the item. true/false

ScriptId.Visible=Boolean;

Skew X • The skew of the item along the X axis.

ScriptId.SkewX=Number;

Skew Y • The skew of the item along the Y axis.

ScriptId.SkewY=Number;

Set Bounds • A function to set the bounds of the item.

ScriptId.SetBounds(Left:Number,Top:Number,Width:Number,Height:Number);

Set Center • A function to set the center X and Y of the item.

ScriptId.SetCenter(X:Number,Y:Number);

Set Size • A function to set the width and height of the item.

ScriptId.SetSize(Width:Number,Height:Number);

Scenes Button