hasMacro: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
No edit summary
Line 3: Line 3:
|version=1.3b48
|version=1.3b48
|description=
|description=
Returns 1 if a [[macro button]] with the specified label exists on the [[Token:Current Token|Current Token]].
Returns {{true}} if a [[macro button]] with the specified label exists on the [[Token:Current Token|Current Token]].


|usage=
|usage=
Line 9: Line 9:
hasMacro(label)
hasMacro(label)
</source>
</source>
<source lang="mtmacro" line>
hasMacro(label, id)
</source>
'''Parameters'''
{{param|label|The label of the macro to check for.}}
{{param|id|The token {{code|id}} of the token function is executed on. {{TrustedParameter}} }}
|changes=
{{change|1.3b51|Added optional token {{code|id}} parameter.}}
}}
}}
[[Category:Metamacro Function]]
[[Category:Metamacro Function]]

Revision as of 01:03, 23 March 2009

hasMacro() Function

Introduced in version 1.3b48
Returns true(1) if a macro button with the specified label exists on the Current Token.

Usage

hasMacro(label)
hasMacro(label, id)

Parameters

  • label - The label of the macro to check for.
  • id - The token id of the token function is executed on.

     Note: This parameter can only be used in a Trusted Macro


Version Changes

  • 1.3b51 - Added optional token id parameter.