Function: a!videoField()
Displays a video from the web.
See also: Web Video
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Label | label | Text | Optional text to display as the field label. |
Label Position | labelPosition | Text | Optional text to determine where the label appears. Valid values include
|
Instructions | instructions | Text | Optional text displayed below the label . |
Help Tooltip | helpTooltip | Text | Displays a help icon with the specified text as a tooltip. The tooltip displays a maximum of 500 characters. The help icon does not show when the label position is "COLLAPSED" . |
Videos | videos | Array of Web Videos | A list of videos to display created with a!webVideo(). |
Visibility | showWhen | Boolean | Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
Notes
Examples
Copy and paste an example into the INTERFACE DEFINITION in EXPRESSION MODE to see it displayed.
1
2
3
4
5
6
7
8
=a!videoField(
label: "Video Example",
videos: {
a!webVideo(
source: "http://www.w3schools.com/html/mov_bbb.mp4"
)
}
)
Returns the following:
The video controls allow users to play and pause the video, manage volume, expand to full screen, etc.
On This Page