PlayEnabled - property of the PmgAnimImage object
Description:
Start/stop the animation.
Syntax:
Boolean PlayEnabled
Note:
Property access
for read and write.
The default value of this property is defined in the "
Animation enabled" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oImage = pMe.Items("/RImg0");
var bPlayEnabled = oImage.PlayEnabled;
// Reading from the property
oImage.PlayEnabled = true;
// Writing into the property
Dim oImage
Set oImage = pMe.Items("/RImg0")
Dim bPlayEnabled
bPlayEnabled = oImage.PlayEnabled
' Reading from the property
oImage.PlayEnabled = true
' Writing into the property