getMacroProps: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page GetMacroProps to getMacroProps: Converting page titles to lowercase) |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
getMacroProps(index) | getMacroProps(index) | ||
getMacroProps(index, delim) | getMacroProps(index, delim) | ||
getMacroProps(index, delim, | getMacroProps(index, delim, tokenRef) | ||
getMacroProps(index, delim, | getMacroProps(index, delim, tokenRef, mapRef) | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|index|The index of the [[Macro_Button|macro button]].}} | {{param|index|The index of the [[Macro_Button|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.}} | ||
{{param| | {{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token that the function is executed on. From v1.15, accepts "campaign" and "gm" as ids for the relevant panels.{{TrustedParameter}} }} | ||
{{param| | {{param|mapRef|The Name or ID of the map to find the token. Defaults to the current map.}} | ||
{{Note|Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.}} | |||
'''Macro Buttons Properties Returned''' | '''Macro Buttons Properties Returned''' | ||
Line 31: | Line 32: | ||
{{change|1.5.7|Added metadata to JSON output.}} | {{change|1.5.7|Added metadata to JSON output.}} | ||
{{change|1.5.11|Added {{code|mapname}} parameter option.}} | {{change|1.5.11|Added {{code|mapname}} parameter option.}} | ||
{{change|1.15|Addition of "gm" and "campaign" options for id}} | |||
}} | }} | ||
[[Category:Metamacro Function]] | [[Category:Metamacro Function]] |
Latest revision as of 23:59, 13 May 2024
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
This article needs: Examples
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() or getMacroButtonIndex() function. The type of the value returned depends on the delimiter parameter.
Usage
getMacroProps(index)
getMacroProps(index, delim)
getMacroProps(index, delim, tokenRef)
getMacroProps(index, delim, tokenRef, mapRef)
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.tokenRef
- Either the tokenid
or Token Name of the token that the function is executed 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.
mapRef
- The Name or ID of the map to find the token. Defaults to the current map.
Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.
Macro Buttons Properties Returned
metadata
- A JSON Object holding the metadata key/value pairs for the macro.uuid
-commandChecksum
-propsChecksum
-
- See createMacro() for a list of all other properties.
Version Changes
- 1.3b49 - Added
json
delimiter option. - 1.3b51 - Added optional token
id
parameter. - 1.3b53 - Added state of Macro Commonality settings under compare in JSON output.
- 1.5.7 - Added metadata to JSON output.
- 1.5.11 - Added
mapname
parameter option. - 1.15 - Addition of "gm" and "campaign" options for id