User Tools

Site Tools


macros:type:string

String

A string is comprising of one or more letters and numbers forming one or more words. Furthermore, a string might contain some symbols/special characters. In most cases you will note that inside strings there are only . (full stops) and , (commas) - but this is more convention than a fixed rule. Strictly, any number and combination of characters and symbols can be regarded a string - but that's way beyond the scope of this wiki.

Strings are enclosed in quotes, either 'single quotes' or “double quotes”. As all the factory macros use double quotes, you should adhere to that rule as well: always enclose strings with double quotes!

Also, this distincts a property's name from a property's value.

See from the example Timecode - Enable/Disable:

<step>ActionScript.SetProperty.Boolean("Timecode.Enabled", !Timecode.Enabled)</step>
  • ActionScript.SetProperty.Boolean is the important function here, and expects the name/id of the property to set passed as string, and the value to set passed as Boolean
  • “Timecode.Enabled” is the name of the property - we pass it as string, and hence enclose i in double quotes
  • !Timecode.Enabled is the property's value (forget about the ! here - this is a logical NOT, see Control Structures.
  • Hence, in total, this line says 'set the property 'Timecode.Enabled' to the opposite from what the value 'Timecode.Enabled' currently is'. One could write this shorter: toggle it!
Also used in
You could leave a comment if you were logged in.
macros/type/string.txt · Last modified: 2017/11/19 14:22 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki