Difference between revisions of "TLO:Arg"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 18: Line 18:
 
== See Also ==
 
== See Also ==
 
* [[LavishScript:Top-Level Objects|Top-Level Objects]]
 
* [[LavishScript:Top-Level Objects|Top-Level Objects]]
 +
 +
[[Category:LavishScript]]

Revision as of 21:33, 25 May 2005

Description

Requires LavishScript 1.11

Forms

Retrieves a given argument by number, out of all following arguments

Examples

  • ${Arg[1,this]}
"this"
  • ${Arg[2,one,two]}
"two"
  • ${Arg[1,one,two,three]}
"one"
  • ${Arg[2,${MyVariable}]}
The second comma-separated value in MyVariable

See Also