getMacroProps: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Updated to refer to createMacro() for list of properties) |
||
Line 20: | Line 20: | ||
'''Macro Buttons Properties Returned''' | '''Macro Buttons Properties Returned''' | ||
* {{code|metadata}} - A [[JSON Object]] holding the metadata key/value pairs for the macro. | * {{code|metadata}} - A [[JSON Object]] holding the metadata key/value pairs for the macro. | ||
** {{code|uuid}} - | ** {{code|uuid}} - | ||
** {{code|commandChecksum}} - | ** {{code|commandChecksum}} - | ||
** {{code|propsChecksum}} - | ** {{code|propsChecksum}} - | ||
* See {{func|createMacro}} for a list of all other properties. | |||
|changes= | |changes= | ||
{{change|1.3b49|Added {{code|json}} delimiter option.}} | {{change|1.3b49|Added {{code|json}} delimiter option.}} |
Revision as of 00:34, 23 November 2021
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, id)
getMacroProps(index, delim, id, mapname)
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 tokenid
of the token that the function is executed on.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.
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.