setMacroProps: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
 
(22 intermediate revisions by 9 users not shown)
Line 1: Line 1:
==Function setMacroProps==
{{MacroFunction
Sets the properties for the specified [[Token:Macro Button|Macro Button]] on the [[Token:Current Token|Current Token]] . The properties are passed to this function as a [[Macros:String Property List|String Property List]]. This function accepts either a [[Token:Macro Button Index|Macro Button Index]] or the label of a [[Token:Macro Button|Macro Button]]. If it is a label then all of [[Token:Macro Button|Macro Button]]s on the [[Token:Current Token|Current Token]] with a matching label are changed. If the delimiter is not specified then the default value of ";" is used. As of MapTool 1.3b49 setMacroProps() accepts a [[Macros:json object|json object]] containing the button properties, no delimiter needs to be specified in this case.
|name=setMacroProps
|version=1.3b48
|description=Sets the properties for the specified [[Token:Macro Button|Macro Button]] on the given token. The properties are passed to this function as a [[String Property List]]. This function accepts either a [[getMacroButtonIndex|Macro Button Index]] or the label of a Macro Button. If it is a label, then all Macro Buttons on the token with a matching label are changed.


'''Valid Properties for Macro Buttons'''
|usage=
* autoExec - true/false - Will the macro be automatically executed when the button is clicked on.
<syntaxhighlight lang="mtmacro" line>
* color - The name of the color for the button.
setMacroProps(index, props)
* fontColor - The name of the font color for the button.
setMacroProps(index, props, delim)
* includeLabel - true/false - Will the label be output when the button is clicked.
setMacroProps(index, props, delim, id)
* group - The name of the group that the button is in.
setMacroProps(index, props, delim, id, mapname)
* sortBy - The sort by value of the macro button.
</syntaxhighlight>
* index - The index of the button.
<syntaxhighlight lang="mtmacro" line>
* label - the lavle of the button.
setMacroProps(label, props)
* fontSize - The size of the font for the button.
setMacroProps(label, props, delim)
* minWidth - the minimum width of the button.
setMacroProps(label, props, delim, id)
setMacroProps(label, props, delim, id, mapname)
</syntaxhighlight>
'''Parameters'''
{{param|index|The index of the macro button.}}
{{param|label|The label of the macro button.}}
{{param|props|A [[String Property List]] or [[JSON Object]] containing the properties for the button.
** See {{func|createMacro}} for a complete list of properties.}}
{{param|delim|The delimiter used in the [[String Property List]] that is used in the {{code|props}} parameter.  Defaults to {{code|";"}} (semicolon) and can be omitted if you are sending a [[JSON Object]] as the {{code|props}} parameter. If you are sending a JSON object as the {{code|props}} parameter, and using the {{code|id}} parameter, you can set this to {{code|"json"}}.}}
{{param|id|OPTIONAL: The token {{code|id}} of the token that the macro button is located on. From v1.15, accepts "campaign" and "gm" as ids for the relevant panels.{{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token. Defaults to the current map.}}


|example=
Changes the macro button to be red with white text.  First one is by index and the second one by label (name).
<syntaxhighlight lang="mtmacro" line>
[h: setMacroProps(1, "color=red;fontColor=white")]
[h: setMacroProps("Attack", "color=red;fontColor=white")]
</syntaxhighlight>


===Usage===
Somewhat silly example that changes the label (name) of the currently executing macro to the current time and randomly changes the button color.
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: setMacroProps(index, props)]
[h: color = listGet("Red, Blue, Green, White, Yellow, Orange", 1d6-1)]
[h: setMacroProps(index, props, delim)]
[h: index = getMacroIndexes(getMacroName())]
[h: setMacroProps(label, props)]
[h: dt = json.get(getInfo("server"), "timeDate")]
[h: setMacroProps(label, props, delim)]
[h: time = listGet(dt, 1, " ")]
</source>
[h: myProps = setStrProp("", "label", time)]
[h: myProps = setStrProp(myProps, "color", color)]
[h: setMacroProps(index, myprops)]
</syntaxhighlight>


===Examples===
|changes=
<source lang="mtmacro" line>
{{change|1.3b49|Added ability for {{code|props}} to accept a JSON object.}}
[h: setMacroProps(1, "color=red;fontColor=white")]
{{change|1.3b51|Added {{code|id}} parameter option.}}
[h: setMacroProps("Attack", "color=red;fontColor=white")]
{{change|1.3b53|Added ability for {{code|command}}, {{code|compare}}, {{code|playerEditable}}, {{code|applyToSelected}}, {{code|autoExecute}}, {{code|group}}, and {{code|tooltip}} parameters.}}
</source>
{{change|1.5.11|Added {{code|mapname}} parameter option.}}
{{change|1.15|Addition of "gm" and "campaign" options for id}}
}}
[[Category:Metamacro Function]][[Category:Macro Function]]

Latest revision as of 05:17, 17 March 2024

setMacroProps() Function

Introduced in version 1.3b48
Sets the properties for the specified Macro Button on the given token. The properties are passed to this function as a String Property List. This function accepts either a Macro Button Index or the label of a Macro Button. If it is a label, then all Macro Buttons on the token with a matching label are changed.

Usage

setMacroProps(index, props)
setMacroProps(index, props, delim)
setMacroProps(index, props, delim, id)
setMacroProps(index, props, delim, id, mapname)
setMacroProps(label, props)
setMacroProps(label, props, delim)
setMacroProps(label, props, delim, id)
setMacroProps(label, props, delim, id, mapname)

Parameters

  • index - The index of the macro button.
  • label - The label of the macro button.
  • props - A String Property List or JSON Object containing the properties for the button.
  • delim - The delimiter used in the String Property List that is used in the props parameter. Defaults to ";" (semicolon) and can be omitted if you are sending a JSON Object as the props parameter. If you are sending a JSON object as the props parameter, and using the id parameter, you can set this to "json".
  • id - OPTIONAL: The token id of the token that the macro button is located on. From v1.15, accepts "campaign" and "gm" as ids for the relevant panels.

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

  • mapname - The name of the map to find the token. Defaults to the current map.

Example

Changes the macro button to be red with white text. First one is by index and the second one by label (name).
[h: setMacroProps(1, "color=red;fontColor=white")]
[h: setMacroProps("Attack", "color=red;fontColor=white")]

Somewhat silly example that changes the label (name) of the currently executing macro to the current time and randomly changes the button color.

[h: color = listGet("Red, Blue, Green, White, Yellow, Orange", 1d6-1)]
[h: index = getMacroIndexes(getMacroName())]
[h: dt = json.get(getInfo("server"), "timeDate")]
[h: time = listGet(dt, 1, " ")]
[h: myProps = setStrProp("", "label", time)]
[h: myProps = setStrProp(myProps, "color", color)]
[h: setMacroProps(index, myprops)]


Version Changes

  • 1.3b49 - Added ability for props to accept a JSON object.
  • 1.3b51 - Added id parameter option.
  • 1.3b53 - Added ability for command, compare, playerEditable, applyToSelected, autoExecute, group, and tooltip parameters.
  • 1.5.11 - Added mapname parameter option.
  • 1.15 - Addition of "gm" and "campaign" options for id