Libraries.Web.Page.Video Documentation
The Video class represents HTML's (Hypertext Markup Language) video tag which is used to add a video to the page. You can find more information about this tag at: The video attribute.
Example Code
use Libraries.Web.Page.all
class Main
action main
WebPage page
Video video
video:SetWidth("350")
video:SetHeight("270")
video:SetControlsVisible(true)
page:AddToBody(video)
output page:Generate()
end
end
Inherits from: Libraries.Web.Page.AttributeAccepter, Libraries.Language.Object, Libraries.Web.Page.GlobalAttributeAccepter, Libraries.Web.Page.WebTag, Libraries.Web.Page.FlowContent
Summary
Variable Summary Table
Variables | Description |
---|---|
text autoPreload | |
text noPreload | This action gets a boolean of whether autoplay is enable or not. If autoplay it enable true is returned and if autoplay is disabled false is returned. |
text metaDataPreload |
Actions Summary Table
Actions | Description |
---|---|
Add(Libraries.Web.Page.Attribute attribute) | This action adds an attribute to this object. |
AddAttribute(text name, text value) | This action adds an attribute to this object. |
AddClassAttribute(text value) | Adds to the ClassAttribute attribute. |
AddNestedTag(Libraries.Web.Page.WebTag tag) | This action adds a WebTag to the list of WebTags contained within the current WebTag. |
AddText(text value) | This action sets the description text for this WebTag. |
Compare(Libraries.Language.Object object) | This action compares two object hash codes and returns an integer. |
Equals(Libraries.Language.Object object) | This action determines if two objects are equal based on their hash code values. |
Generate() | This action sets a boolean of whether sound is muted or not. |
GenerateAttributes() | This action returns a text description of all attributes stored. |
GenerateNestedTags() | This action generates the HTML output text of all of the nested WebTags. |
GetAccessKey() | Returns the AccessKey attribute. |
GetAddress() | This action gets the URL or location of the video. |
GetAttribute(text name) | This action returns an attribute from this object's Attributes object. |
GetAttributeValue(text name) | This action returns an attribute from this object's Attributes object. |
GetAttributes() | Returns a list of all attributes on the system. |
GetAutoPlay() | This action gets a boolean of whether autoplay is enable or not. |
GetClassAttribute() | Returns the ClassAttribute attribute. |
GetContentEditable() | Returns the ContentEditable attribute. |
GetContextMenu() | Returns the ContextMenu attribute. |
GetControlsVisible() | This action gets a boolean of whether the video controls are visible or not. |
GetDraggable() | Returns the Draggable attribute. |
GetDropZone() | Returns the DropZone attribute. |
GetHashCode() | This action gets the hash code for an object. |
GetHeight() | This action gets the height of the video viewing area. |
GetHidden() | Returns the Hidden attribute. |
GetIdentifier() | Returns the Identifier attribute. |
GetIterator() | This action returns an iterator of all attributes stored in this object. |
GetLanguage() | Returns the Language attribute. |
GetLoop() | This action gets a boolean of whether the video should loop or not. |
GetMuted() | This action gets a boolean of whether sound is muted or not. |
GetNumberOfAttributes() | This action returns the number of attributes that are currently stored in this object. |
GetNumberOfNestedTags() | This action gets the number of nested tags within the current WebTag. |
GetPoster() | This action gets the URL or location of the image to be displayed while the video is loading or before the play button has been pressed. |
GetPreload() | This action gets the way the video is to be loaded. |
GetSpellcheck() | Returns the Spellcheck attribute. |
GetStyle() | Returns the Style attribute. |
GetTabIndex() | Returns the TabIndex attribute. |
GetTag(integer index) | This action gets the number of nested tags within the current WebTag. |
GetTextDirection() | Returns the TextDirection attribute. |
GetTitle() | Returns the Title attribute. |
GetWidth() | This action gets the width of the video viewing area. |
HasAttribute(text name) | This action returns whether or not an attribute exists for the key passed in as a parameter. |
Remove(Libraries.Web.Page.WebTag tag) | This action removes the first instance of a webtag found in the list of sub-WebTags. |
RemoveAttribute(text name) | This action removes an attribute with a particular key. |
SetAccessKey(text value) | Sets the AccessKey attribute. |
SetAddress(text value) | This action sets the URL or location of the video. |
SetAutoPlay(boolean isAutoPlay) | This action sets the autoplay of a video. |
SetClassAttribute(text value) | Sets the ClassAttribute attribute. |
SetContentEditable(text value) | Sets the ContentEditable attribute. |
SetContextMenu(text value) | Sets the ContextMenu attribute. |
SetControlsVisible(boolean controlsVisible) | This action sets the controls of a video to visible. |
SetDraggable(boolean value) | Sets the Draggable attribute. |
SetDropZone(text value) | Sets the DropZone attribute. |
SetHeight(text value) | This action sets the height of the video viewing area. |
SetHidden(boolean value) | Sets the AccessKey attribute. |
SetIdentifier(text value) | Sets the Identifier attribute. |
SetLanguage(text value) | Creates and sets an attribute for language. |
SetLoop(boolean loopVideo) | This action sets the loop of a video. |
SetMuted(boolean isMuted) | This action sets a boolean of whether sound is muted or not. |
SetPoster(text value) | This action sets the URL or location of the image to be displayed while the video is loading or before the play button has been pressed. |
SetPreload(text value) | This action sets the way the video is to be loaded. |
SetSpellcheck(boolean value) | Sets the Spellcheck attribute. |
SetStyle(text value) | Sets the Style attribute. |
SetTabIndex(text value) | Sets the TabIndex attribute. |
SetTextDirection(text value) | Sets the TextDirection attribute. |
SetTitle(text value) | Sets the Title attribute. |
SetWidth(text value) | This action sets the width of the video viewing area. |
Actions Documentation
Add(Libraries.Web.Page.Attribute attribute)
This action adds an attribute to this object. If an attribute with the same name as
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
Attribute attribute
attribute:SetName("src")
attribute:SetValue("http://www.google.com")
AttributeAccepter accept
accept:Add(attribute)
Parameters
- Libraries.Web.Page.Attribute: The attribute that will be stored.
AddAttribute(text name, text value)
This action adds an attribute to this object. This action is a helper action, which essentially does the same thing as the Add(Attribute) action. If an attribute with the same name as
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
Parameters
- text name: The name of the attribute functions as a key. For example, in a link, we might have a "src" and an actual address, like google.com. In this case, the name would be equivalent to the src.
- text value: As an example of link, imagine we have a value of "src" and an actual address, like google.com. In this case, the value would be equivalent to google.com.
AddClassAttribute(text value)
Adds to the ClassAttribute attribute. Multiple class names can be listed in the passed text, separated by a space.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:AddClassAttribute("myClass")
Parameters
- text value: The classes to be added to the element
AddNestedTag(Libraries.Web.Page.WebTag tag)
This action adds a WebTag to the list of WebTags contained within the current WebTag.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:SetDescription("name")
row:Add(cell)
Parameters
- Libraries.Web.Page.WebTag: The WebTag to be added to the list of sub-WebTags.
AddText(text value)
This action sets the description text for this WebTag.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:AddDescription("name")
row:Add(cell)
Parameters
- text value: The text contained in the WebTag.
Compare(Libraries.Language.Object object)
This action compares two object hash codes and returns an integer. The result is larger if this hash code is larger than the object passed as a parameter, smaller, or equal. In this case, -1 means smaller, 0 means equal, and 1 means larger. This action was changed in Quorum 7 to return an integer, instead of a CompareResult object, because the previous implementation was causing efficiency issues.
Example Code
Object o
Object t
integer result = o:Compare(t) //1 (larger), 0 (equal), or -1 (smaller)
Parameters
- Libraries.Language.Object: The object to compare to.
Return
integer: The Compare result, Smaller, Equal, or Larger.
Equals(Libraries.Language.Object object)
This action determines if two objects are equal based on their hash code values.
Example Code
use Libraries.Language.Object
use Libraries.Language.Types.Text
Object o
Text t
boolean result = o:Equals(t)
Parameters
- Libraries.Language.Object: The to be compared.
Return
boolean: True if the hash codes are equal and false if they are not equal.
Generate()
This action sets a boolean of whether sound is muted or not. If muted the value of true will be returned and false if the sound is not muted.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetMuted(true)
Return
text:
GenerateAttributes()
This action returns a text description of all attributes stored.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
text result = accept:GenerateAttributes()
Return
text:
GenerateNestedTags()
This action generates the HTML output text of all of the nested WebTags.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:SetDescription("name")
row:Add(cell)
output row:GenerateNestedTags()
Return
text: The text including all webtags within this WebTag.
GetAccessKey()
Returns the AccessKey attribute. Specifies a shortcut key for the web element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetAccessKey()
Return
Libraries.Web.Page.Attribute: The current AccessKey attribute.
GetAddress()
This action gets the URL or location of the video.
Example Code
use Libraries.Web.Page.Video
use Libraries.Web.Page.Attribute
Video video
video:SetAddress("myMovie.ogg")
Attribute source = video:GetAddress()
Return
Libraries.Web.Page.Attribute: The URL or location of the video.
GetAttribute(text name)
This action returns an attribute from this object's Attributes object. If no attribute exists for a given key, this action returns undefined.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
//as we have not set any attribute, this would
//return undefined
Attribute attribute = accept:GetAttribute("src")
Parameters
Return
GetAttributeValue(text name)
This action returns an attribute from this object's Attributes object. If no attribute exists for a given key, this action returns undefined.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
//This helper action would throw an error if "src" were not set.
text value = accept:GetAttributeValue("src")
Parameters
- text name: The key value in this case is described in more detail in the documentation for this class's Add actions.
Return
text:
GetAttributes()
Returns a list of all attributes on the system.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attributes
AttributeAccepter accept
Attributes attributes = accept:GetAttributes()
Return
Libraries.Web.Page.Attributes: The attributes class contains all of the attributes that have been set for this object.
GetAutoPlay()
This action gets a boolean of whether autoplay is enable or not. If autoplay it enable true is returned and if autoplay is disabled false is returned.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetAutoPlay(true)
boolean autoplay = video:GetAutoPlay()
Return
boolean: The autoplay state.
GetClassAttribute()
Returns the ClassAttribute attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetClassAttribute()
Return
Libraries.Web.Page.Attribute: The current ClassAttribute attribute.
GetContentEditable()
Returns the ContentEditable attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetContentEditable()
Return
Libraries.Web.Page.Attribute: The current ContentEditable attribute.
GetContextMenu()
Returns the ContextMenu attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetContextMenu()
Return
Libraries.Web.Page.Attribute: The current ContextMenu attribute.
GetControlsVisible()
This action gets a boolean of whether the video controls are visible or not. Passing a value of true will make the video controls visible and a value of false will make the video controls invisible to the user.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetControlsVisible(true)
boolean controls = video:GetControlsVisible()
Return
boolean: The video control's state of visiblity.
GetDraggable()
Returns the Draggable attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetDraggable()
Return
Libraries.Web.Page.Attribute: The current Draggable attribute.
GetDropZone()
Returns the DropZone attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetDropZone()
Return
Libraries.Web.Page.Attribute: The current DropZone attribute.
GetHashCode()
This action gets the hash code for an object.
Example Code
Object o
integer hash = o:GetHashCode()
Return
integer: The integer hash code of the object.
GetHeight()
This action gets the height of the video viewing area.
Example Code
use Libraries.Web.Page.Video
use Libraries.Web.Page.Attribute
Video video
video:SetHeight("250")
Attribute height = video:GetHeight()
Return
Libraries.Web.Page.Attribute: The height of the video viewing area.
GetHidden()
Returns the Hidden attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetHidden()
Return
Libraries.Web.Page.Attribute: The current Hidden attribute.
GetIdentifier()
Returns the Identifier attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetIdentifier()
Return
Libraries.Web.Page.Attribute: The current Identifier attribute.
GetIterator()
This action returns an iterator of all attributes stored in this object.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
use Libraries.Containers.Iterator
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
//output out all of the attributes
Iterator<Attribute> it = accept:GetIterator()
repeat while it:HasNext()
Attribute at = it:Next()
output at:Generate()
end
Return
Libraries.Containers.Iterator:
GetLanguage()
Returns the Language attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetLanguage()
Return
Libraries.Web.Page.Attribute: The current Language attribute.
GetLoop()
This action gets a boolean of whether the video should loop or not. If true the video playback will be looped and if false video playback will play once.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetLoop(true)
boolean loop = video:GetLoop()
Return
boolean: True if the video will loop and false if it will play once.
GetMuted()
This action gets a boolean of whether sound is muted or not. If muted the value of true will be returned and false if the sound is not muted.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetMuted(true)
boolean muted = video:GetMuted()
Return
boolean: True if muted and false if not.
GetNumberOfAttributes()
This action returns the number of attributes that are currently stored in this object.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
integer num = accept:GetNumberOfAttributes()
Return
integer:
GetNumberOfNestedTags()
This action gets the number of nested tags within the current WebTag.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:SetDescription("name")
row:Add(cell)
integer numTags = row:GetSize()
Return
integer: The number of nested tags.
GetPoster()
This action gets the URL or location of the image to be displayed while the video is loading or before the play button has been pressed.
Example Code
use Libraries.Web.Page.Video
use Libraries.Web.Page.Attribute
Video video
video:SetPoster("poster.gif")
Attribute poster = video:GetPoster()
Return
Libraries.Web.Page.Attribute: The URL or location of the image to display during load.
GetPreload()
This action gets the way the video is to be loaded. The options include, "auto" to load the video when the page loads, "metadata" to load only meta data when the page loads, and "none" if the video should not be loaded when the page loads.
Example Code
use Libraries.Web.Page.Video
use Libraries.Web.Page.Attribute
Video video
video:SetPreload("metadata")
Attribute preload = video:GetPreload()
Return
Libraries.Web.Page.Attribute: The preload specifications.
GetSpellcheck()
Returns the Spellcheck attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetSpellcheck()
Return
Libraries.Web.Page.Attribute: The current Spellcheck attribute.
GetStyle()
Returns the Style attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetStyle()
Return
Libraries.Web.Page.Attribute: The current Style attribute.
GetTabIndex()
Returns the TabIndex attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetTabIndex()
Return
Libraries.Web.Page.Attribute: The current TabIndex attribute.
GetTag(integer index)
This action gets the number of nested tags within the current WebTag.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:SetDescription("name")
row:Add(cell)
WebTag tag = row:GetTag(0)
Parameters
Return
Libraries.Web.Page.WebTag: The number of nested tags.
GetTextDirection()
Returns the TextDirection attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetTextDirection()
Return
Libraries.Web.Page.Attribute: The current TextDirection attribute.
GetTitle()
Returns the Title attribute.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
Attribute attribute = accept:GetTitle()
Return
Libraries.Web.Page.Attribute: The current Title attribute.
GetWidth()
This action gets the width of the video viewing area.
Example Code
use Libraries.Web.Page.Video
use Libraries.Web.Page.Attribute
Video video
video:SetWidth("250")
Attribute width = video:GetWidth()
Return
Libraries.Web.Page.Attribute: The width of the video viewing area.
HasAttribute(text name)
This action returns whether or not an attribute exists for the key passed in as a parameter.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
//This helper action would throw an error if "src" were not set.
boolean exists = accept:HasAttribute("src")
Parameters
- text name: The key value in this case is described in more detail in the documentation for this class's Add actions.
Return
boolean:
Remove(Libraries.Web.Page.WebTag tag)
This action removes the first instance of a webtag found in the list of sub-WebTags.
Example Code
use Libraries.Web.Page.TableRow
use Libraries.Web.Page.TableData
//TableRow and TableData are both WebTags
TableRow row
TableData cell
cell:SetDescription("name")
row:Add(cell)
row:Remove(cell)
Parameters
- Libraries.Web.Page.WebTag: The WebTag to remove from the list of WebTags.
RemoveAttribute(text name)
This action removes an attribute with a particular key. If that attribute does not exist, then this action returns undefined.
Example Code
use Libraries.Web.Page.AttributeAccepter
use Libraries.Web.Page.Attribute
AttributeAccepter accept
accept:AddAttribute("src", "http://www.google.com")
//This helper action would throw an error if "src" were not set.
accept:RemoveAttribute("src")
Parameters
- text name: The name of the attribute that should be removed.
Return
SetAccessKey(text value)
Sets the AccessKey attribute. Specifies a shortcut key for the web element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetAccessKey("z")
Parameters
- text value: The current AccessKey.
SetAddress(text value)
This action sets the URL or location of the video.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetAddress("myMovie.ogg")
Parameters
- text value: The URL or location of the video.
SetAutoPlay(boolean isAutoPlay)
This action sets the autoplay of a video. If autoplay is set to true autoplay will be enabled. If autoplay is set to false autoplay will be disabled.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetAutoPlay(true)
Parameters
SetClassAttribute(text value)
Sets the ClassAttribute attribute. Specifies a class name for the element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetClassAttribute("myClass")
Parameters
- text value: The current ClassAttribute.
SetContentEditable(text value)
Sets the ContentEditable attribute. Specifies wether content in an element is editable.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetContentEditable("true")
Parameters
- text value: The current ContentEditable.
SetContextMenu(text value)
Sets the ContextMenu attribute. Specifies a context menu that contains the element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetContextMenu("parentmenu")
Parameters
- text value: The current ContextMenu.
SetControlsVisible(boolean controlsVisible)
This action sets the controls of a video to visible. If controls are set to true the controls will be visible in the video. If controls are set to false they will not be displayed.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetControlsVisible(true)
Parameters
- boolean controlsVisible: True to make the video conrols visible and false to make them invisible.
SetDraggable(boolean value)
Sets the Draggable attribute. Specifies wether an element is draggable or not.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetDraggable(true)
Parameters
- boolean value: The current Draggable.
SetDropZone(text value)
Sets the DropZone attribute. This element specifies what happens when an element is dropped on a web page. The three valid values are copy, move, and link.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetDropZone("move")
Parameters
- text value: The current DropZone.
SetHeight(text value)
This action sets the height of the video viewing area.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetHeight("250")
Parameters
- text value: The height of the video viewing area.
SetHidden(boolean value)
Sets the AccessKey attribute. Specifies wether an element is hidden or not.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetHidden(false)
Parameters
- boolean value: To true to hide element and false to make it visible.
SetIdentifier(text value)
Sets the Identifier attribute. Specifies a unique name for the element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetIdentifier("myElement")
Parameters
- text value: The current Identifier.
SetLanguage(text value)
Creates and sets an attribute for language. As these codes are esoteric in the standard on the web (HTML), we recommend using the LanguageCode class to help.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.LanguageCode
use Libraries.Web.Page.Link
LanguageCode code
//use any WebItem, in this case a link
Link link
link:SetLanguage(code:english)
Parameters
SetLoop(boolean loopVideo)
This action sets the loop of a video. If loop is set to true the video will loop. If loop is set to false the video will not loop the video.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetLoop(true)
Parameters
- boolean loopVideo: True to loop and false to not loop the video.
SetMuted(boolean isMuted)
This action sets a boolean of whether sound is muted or not. If muted the value of true will be returned and false if the sound is not muted.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetMuted(true)
Parameters
- boolean isMuted: True if muted and false if not.
SetPoster(text value)
This action sets the URL or location of the image to be displayed while the video is loading or before the play button has been pressed.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetPoster("poster.gif")
Parameters
- text value: The URL or location of the image to display during load.
SetPreload(text value)
This action sets the way the video is to be loaded. The options include, "auto" to load the video when the page loads, "metadata" to load only meta data when the page loads, and "none" if the video should not be loaded when the page loads.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetPreload("none")
Parameters
SetSpellcheck(boolean value)
Sets the Spellcheck attribute. Specifies wether spellcheck is on or off.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetSpellcheck(true)
Parameters
- boolean value: The current Spellcheck.
SetStyle(text value)
Sets the Style attribute. Specifies inline css formatting for an element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetStyle("color:orange")
Parameters
- text value: The current Style.
SetTabIndex(text value)
Sets the TabIndex attribute. Specifies a tab order for elements.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetTabIndex("0")
Parameters
- text value: The current TabIndex.
SetTextDirection(text value)
Sets the TextDirection attribute. Specifies a direction for the text to be written. For example, "ltr" is left-to-right.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetTextDirection("rtl")
Parameters
- text value: The current TextDirection.
SetTitle(text value)
Sets the Title attribute. Specifies title information for the web element.
Example Code
use Libraries.Web.Page.GlobalAttributeAccepter
use Libraries.Web.Page.Attribute
GlobalAttributeAccepter accept
accept:SetTitle("MyTitle")
Parameters
- text value: The current Title.
SetWidth(text value)
This action sets the width of the video viewing area.
Example Code
use Libraries.Web.Page.Video
Video video
video:SetWidth("250")
Parameters
- text value: The width of the video viewing area.