|
|
"comments" tag is used to enter a long or multiple line comments for the mScript. It can be added to any mScript tags but there should be no more than one "comments" tag for each tag. (rel 3.0.10)
Examples:
<if value1="$rand()" op="le" value2="0.5">
<comments>
only execute this block 50% of the time.
</comments>
<action code="$click('abc')"/>
</if>
Optionally you may add comments as an attribute to each tag as follows:
<if value1="$rand()" op="le" value2="0.5" comment="only execute this block 50% of the time.">
<action code="$click('abc')"/>
</if>