OverviewExamples
|
Video.SetProperties ( |
Sets the properties of a video object.
(string) The name of the video object.
(table) A table containing the video object's properties indexed by the following keys:
|
KEY |
TYPE |
DESCRIPTION |
|||||||||||||||||||||||||||||||||||||||||||||
|
VideoFile |
string |
The movie file to load into the video object. |
|||||||||||||||||||||||||||||||||||||||||||||
|
MaskFile |
string |
The path of the image to be used as the object mask. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ApplyCustomMask |
boolean |
True if a mask file should be used, false if it should not be. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ScalingMode |
number |
How the movie should 'fit' inside the video object:
|
|||||||||||||||||||||||||||||||||||||||||||||
|
CPStyle |
number |
How the control panel should appear:
|
|||||||||||||||||||||||||||||||||||||||||||||
|
SkinFile |
string |
The path to the skin file to be used if CPStyle is set to CONTROL_PANEL_CUSTOM. |
|||||||||||||||||||||||||||||||||||||||||||||
|
CPTime |
number |
How the time information should be displayed on the control panel:
|
|||||||||||||||||||||||||||||||||||||||||||||
|
PanelColor |
number |
The color of the control panel. |
|||||||||||||||||||||||||||||||||||||||||||||
|
TextColor |
number |
The color of the text (e.g. displayed time) displayed on the control panel. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ControlButtons |
boolean |
True if buttons should be displayed on the control panel, false if it should not be. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Slider |
boolean |
True if a slider should be displayed on the control panel, false if it should not be. |
|||||||||||||||||||||||||||||||||||||||||||||
|
AutoStart |
boolean |
True if the video object should automatically play the loaded movie as soon as the page or dialog is shown, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Loop |
boolean |
True if the movie should restart when it ends, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Border |
boolean |
True if a border should be shown around the video object, false if one should not be shown. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Enabled |
boolean |
True if the video object should be enabled, false if it should not be. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Visible |
boolean |
True if the video object should be visible, false if it should not be. |
|||||||||||||||||||||||||||||||||||||||||||||
|
X |
number |
The horizontal position (in pixels) of the top left corner of the video object in relation to the current page or dialog. Note: The top left corner of the current page or dialog has an X value of 0 |
|||||||||||||||||||||||||||||||||||||||||||||
|
Y |
number |
The vertical position (in pixels) of the top left corner of the video object in relation to the current page or dialog. Note: The top left corner of the current page or dialog has a Y value of 0 |
|||||||||||||||||||||||||||||||||||||||||||||
|
Width |
number |
The width (in pixels) of the video object. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Height |
number |
The height (in pixels) of the video object. |
|||||||||||||||||||||||||||||||||||||||||||||
|
Cursor |
number |
The mouse cursor that should be displayed when the mouse is over the video object:
|
|||||||||||||||||||||||||||||||||||||||||||||
|
ResizeLeft |
boolean |
True if the left side of the object should move when the application is resized, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ResizeRight |
boolean |
True if the right side of the object should move when the application is resized, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ResizeTop |
boolean |
True if the top of the object should move when the application is resized, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ResizeBottom |
boolean |
True if the bottom of the object should move when the application is resized, false if it should not. |
|||||||||||||||||||||||||||||||||||||||||||||
|
HighlightSound |
number |
The type of sound that should be played when the mouse moves over the video object.
|
|||||||||||||||||||||||||||||||||||||||||||||
|
HighlightSoundFile |
string |
The path to the video object's custom highlight sound file if it uses one. |
|||||||||||||||||||||||||||||||||||||||||||||
|
ClickSound |
number |
The type of sound that should be played when the mouse clicks the video object.
|
|||||||||||||||||||||||||||||||||||||||||||||
|
ClickSoundFile |
string |
The path to the video object's custom click sound file if it uses one. |
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions