js:Token

From RPTools Wiki
Revision as of 06:01, 4 August 2021 by LPerkins (talk | contribs) (Created page with "Within the javascript environment used by {{code|js.eval}}, Tokens are represented by the {{code|Token}} class. The token class cannot be directly instantiated, but tokens ca...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Within the javascript environment used by js.eval, Tokens are represented by the Token class. The token class cannot be directly instantiated, but tokens can be found from the MapTool top level name.


token.getNotes() Function

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

Introduced in version 1.9.4
Returns the notes field of the token.

Usage

token.getNotes();


token.setNotes() Function

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

Introduced in version 1.9.4
Sets the notes field of the token.

Usage

token.setNotes(newNotes);


token.getName() Function

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

Introduced in version 1.9.4
Returns the name of the token.

Usage

token.getName();


token.setName() Function

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

Introduced in version 1.9.4
Sets the name of the token

Usage

token.setName(newName);


token.hasSight() Function

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

Introduced in version 1.9.4
Returns true if sight is enabled for the token

Usage

token.hasSight();


token.getId() Function

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

Introduced in version 1.9.4
Returns the maptool ID of the token.

Usage

token.getId();


token.getProperty() Function

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

Introduced in version 1.9.4
Returns the value of the token property.

Usage

token.getProperty(property);


token.setProperty() Function

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

Introduced in version 1.9.4
Sets the value of the token property.

Usage

token.setProperty(property, newValue);


token.getX() Function

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

Introduced in version 1.9.4
Returns the X position of the token.

Usage

token.getX();



token.getY() Function

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

Introduced in version 1.9.4
Returns the Y position of the token.

Usage

token.getY();


token.setX() Function

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

Introduced in version 1.9.4
Sets the X position of the token.

Usage

token.setX(newX);


token.setY() Function

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

Introduced in version 1.9.4
Sets the Y position of the token.

Usage

token.setY(newY);


See Also

JS: MapTool