getMacroProps: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
(removed parameter 'label' as it is not supported)
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
getMacroProps(label)
</source>
<source lang="mtmacro" line>
<source lang="mtmacro" line>
getMacroProps(index)
getMacroProps(index)
</source>
<source lang="mtmacro" line>
getMacroProps(label, delim)
</source>
</source>
<source lang="mtmacro" line>
<source lang="mtmacro" line>
getMacroProps(index, delim)
getMacroProps(index, delim)
</source>
<source lang="mtmacro" line>
getMacroProps(label, delim, id)
</source>
</source>
<source lang="mtmacro" line>
<source lang="mtmacro" line>
Line 25: Line 16:
</source>
</source>
'''Parameters'''
'''Parameters'''
{{param|label|The label for the macro button. If you specify a label then '''all''' [[macro buttons]] on the [[Token:token|token]] that have that label will be returned.}}
{{param|index|The index of the [[macro button]].}}
{{param|index|The index of the [[macro button]].}}
{{param|delim|The delimiter used to separate the values in the  [[Macros:string property list|string property list]] which defaults to {{code|";"}} if not specified. This function returns a [[JSON Object]] if {{code|"json"}} is specified.}}
{{param|delim|The delimiter used to separate the values in the  [[Macros:string property list|string property list]] which defaults to {{code|";"}} if not specified. This function returns a [[JSON Object]] if {{code|"json"}} is specified.}}

Revision as of 11:54, 11 May 2010

getMacroProps() Function

Introduced in version 1.3b48
Returns a property list of the properties for a macro button for the Current Token. You can retrieve the index of a macro button with the getMacroIndexes() function.The type of the value returned depends on the delimiter parameter.

Usage

getMacroProps(index)
getMacroProps(index, delim)
getMacroProps(index, delim, id)

Parameters

  • index - The index of the macro button.
  • delim - The delimiter used to separate the values in the string property list which defaults to ";" if not specified. This function returns a JSON Object if "json" is specified.
  • id - The token id of the token that the function is executed on.

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

Valid Properties for Macro Buttons

  • applyToSelected - Should the macro be applied to the selected tokens.
  • autoExecute - If the macro will be automatically executed when the button is clicked, accepts true(1) or false(0).
  • color - The name of the color for the button.
  • command - The command for the macro (only when using JSON version of function).
  • fontColor - The name of the font color for the button.
  • fontSize - The size of the font for the button.
  • includeLabel - If the label will be output when the button is clicked. Accepts true(1) or false(0).
  • group - The name of the group that the button belongs to.
  • index - The index of the button.
  • sortBy - The sort by value of the macro button.
  • label - The label for the button.
  • maxWidth - The maximum width of the button.
  • minWidth - The minimum width of the button.
  • playerEditable - Is the button player editable, accepts true(1) or false(0).
  • tooltip - The tool tip for the macro button.
  • compare - Takes a JSON Array which can contain one or more of the following keywords (only usable with JSON version of the function).
    • applyToSelected - Use the macro applyToSelected for common macro comparisons.
    • autoExecute - Use the macro autoExec for common macro comparisons.
    • command - Use the macro command for common macro comparisons.
    • group - Use the macro group for common macro comparisons.
    • includeLabel - Use the macro includeLabel for common macro comparisons.
    • sortPrefix - Use the macro sortPrefix for common macro comparisons.


Version Changes

  • 1.3b49 - Added json delimiter option.
  • 1.3b51 - Added optional token id parameter.
  • 1.3b53 - Added ability for command, compare, playerEditable, applyToSelected, autoExecute, group, and tooltip parameters.