js:MapTool: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Within the javascript environment used by {{code|js.eval}}, {{code|MapTool}} is the main entry point for manipulating tokens or maps, sending chat messages, running macros, and so on.  This page details the attributes and functions available on the {{code|MapTool}} object.
Within the javascript environment used by {{func|js.eval}}, {{code|MapTool}} is the main entry point for manipulating tokens or maps, sending chat messages, running macros, and so on.  This page details the attributes and functions available on the {{code|MapTool}} object.


{{MacroFunction
{{MacroFunction
Line 88: Line 88:
[[js:MapTool.clientInfo|JS: MapTool.clientInfo]]<br/>
[[js:MapTool.clientInfo|JS: MapTool.clientInfo]]<br/>
[[js:Token|JS: Tokens]]<br/>
[[js:Token|JS: Tokens]]<br/>
[[js:MTScript|JS: MTScript]]
[[js:MTScript|JS: MTScript]]<br/>
{{func|js.eval}}
[[Category:Javascript Function]]
[[Category:Javascript Function]]

Revision as of 06:04, 4 August 2021

Within the javascript environment used by js.eval(), MapTool is the main entry point for manipulating tokens or maps, sending chat messages, running macros, and so on. This page details the attributes and functions available on the MapTool object.


MapTool.getSelectedTokens() Function

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

Introduced in version 1.9.4
Returns a javascript array containing the selected tokens.

Usage

let a = MapTool.getSelectedTokens();

Parameters

  • return - An array containing all selected tokens.


MapTool.getSelected() Function

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

Introduced in version 1.9.4
Like getSelectedTokens(), but only returns the first token.

Usage

let token = MapTool.getSelected();

Parameters

  • return - The first selected token, or null if no token is selected.


MapTool.getTokenByID() Function

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

Introduced in version 1.9.4
Returns the token specified.

Usage

let token = MapTool.getTokenByID(tid);

Parameters

  • tid - String containing a valid token ID.
  • return - The token with specified ID.
  • throws - ArrayIndexOutOfBounds exception if the token cannot be found.


MapTool.tokens.getMapTokens() Function

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

Introduced in version 1.9.4
Returns a list of all tokens on all maps.

Usage

let token = MapTool.tokens.getMapTokens();

Parameters

  • return - A list containing all tokens on every map.


See Also

JS: MapTool.chat
JS: MapTool.clientInfo
JS: Tokens
JS: MTScript
js.eval()