getLibPropertyNames: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added new Category tag)
m (Oops, it's "source" that should be replaced with "syntaxhighlight")
Line 7: Line 7:
{{note|When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the Edit Token window. In other words, even though a property is removed from the campaign properties, it remains available to macros.  '''getLibPropertyNames''' will return ''all'' token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (''i.e.'', they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use {{func|getAllPropertyNames}}.}}
{{note|When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the Edit Token window. In other words, even though a property is removed from the campaign properties, it remains available to macros.  '''getLibPropertyNames''' will return ''all'' token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (''i.e.'', they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use {{func|getAllPropertyNames}}.}}
|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
getLibPropertyNames()
getLibPropertyNames()
</source>
<source lang="mtmacro" line>
getLibPropertyNames(delim)
getLibPropertyNames(delim)
</source>
<source lang="mtmacro" line>
getLibPropertyNames(id, delim)
getLibPropertyNames(id, delim)
</source>
</syntaxhighlight >
'''Parameters'''
'''Parameters'''
{{param|delim|The delimiter used to separate the values in the [[String List]], defaults to {{code|","}}. Returns a [[JSON Array]] if set to {{code|"json"}}. }}
{{param|delim|The delimiter used to separate the values in the [[String List]], defaults to {{code|","}}. Returns a [[JSON Array]] if set to {{code|"json"}}. }}
Line 21: Line 17:


|example=
|example=
<source lang="mtmacro" line>
< syntaxhighlight lang="mtmacro" line>
[h: names = getLibPropertyNames()]
[h: names = getLibPropertyNames()]
[foreach(name, names, "<br>"): name]
[foreach(name, names, "<br>"): name]
</source>
</syntaxhighlight >


<source lang="mtmacro" line>
< syntaxhighlight lang="mtmacro" line>
[h: names = getLibPropertyNames("Lib:some_lib_token")]
[h: names = getLibPropertyNames("Lib:some_lib_token")]
[foreach(name, names, "<br>"): name]
[foreach(name, names, "<br>"): name]
</source>
</syntaxhighlight >
|changes=
|changes=
'''Updated in 1.11:'''
'''Updated in 1.11:'''
Line 35: Line 31:
This modification allows the namespace of the add-on library to be used where the {{code|Lib:}} token name would normally appear.  For example,
This modification allows the namespace of the add-on library to be used where the {{code|Lib:}} token name would normally appear.  For example,


<source lang="mtmacro" line>
< syntaxhighlight lang="mtmacro" line>
[h: getLibPropertyNames("com.myname.mt.my-first-addon")]
[h: getLibPropertyNames("com.myname.mt.my-first-addon")]
</source>
</syntaxhighlight >
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]

Revision as of 04:23, 11 February 2024

getLibPropertyNames() Function

Introduced in version 1.5.0
Returns a String List or JSON Array containing the names of the Token Properties on a Library Token. The type of the value returned depends on the delimiter parameter.


When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the Edit Token window. In other words, even though a property is removed from the campaign properties, it remains available to macros. getLibPropertyNames will return all token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (i.e., they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use getAllPropertyNames().

Usage

getLibPropertyNames()
getLibPropertyNames(delim)
getLibPropertyNames(id, delim)

Parameters

  • delim - The delimiter used to separate the values in the String List, defaults to ",". Returns a JSON Array if set to "json".
  • id - The token id of the token which has its property names returned, defaults to the Current Token. This parameter may be * or this to indicate the current Lib token that this macro is executing on.

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

Example

< syntaxhighlight lang="mtmacro" line>

[h: names = getLibPropertyNames()] [foreach(name, names, "
"): name] </syntaxhighlight >

< syntaxhighlight lang="mtmacro" line> [h: names = getLibPropertyNames("Lib:some_lib_token")] [foreach(name, names, "
"): name]

</syntaxhighlight >


Version Changes

Updated in 1.11: MTscript functions for acting on library tokens have been modified to also work on Add-on libraries. This modification allows the namespace of the add-on library to be used where the Lib: token name would normally appear. For example,

< syntaxhighlight lang="mtmacro" line> [h: getLibPropertyNames("com.myname.mt.my-first-addon")] </syntaxhighlight >