WhileShowing window script element
- Last UpdatedJul 26, 2024
- 1 minute read
The WhileShowing script has two elements. The script text can be placed in a CDATA section.
|
Elements |
Description |
|---|---|
|
Text |
Text of the window script. Required. |
|
FREQUENCY |
Script execution frequency in milliseconds. Required when using the optional schema. Default is 1000. |
Example:
<ScriptWhileShowing>
<Text><![CDATA[
First line of script text
Second line of script text
N-th line of script text
]]></Text>
<Frequency>1000</Frequency>
</ScriptWhileShowing>
Minimal example:
<ScriptWhileShowing>
<Text>Single line of script text</Text>
<Frequency>1000</Frequency>
</ScriptWhileShowing>