Skip to main content

JavaScript Editor

Pro Feature

Pro features are only available with a Professional licence. To upgrade, visit cavalry.scenegroup.co.

Introduction

The JavaScript Editor can be used to write JavaScript scripts which can be run in Cavalry to create, connect and affect Layers. More information on how to write scripts can be found in the Scripting section.

caution

Scripts are saved across sessions (they will still be there when you close and reopen Cavalry) but it's important to note that the JavaScript Editor is not a way to edit files on the file system. A file can be imported from the file system but any edits to that script will not be saved to the original file.

Stallion

Visual Studio Code users should also check out Stallion – an extension to send scripts to Cavalry which ships with Cavalry's Typescript definitions.

UI

Buttons

Run Script - Run the script in the active tab. To run just the selected text, hold Option/Alt while clicking this button.

Clear Script - Clear the active tab.

Load... - Import a script from the file system. On import, a dialogue asking whether to load the script into a new tab or replace the active one will appear.

Save As... - Save the active tab to the file system.

Save Encrypted... - Save the active tab to the file system in an encrypted format.

Tabs

  • Use the + button to add a new Tab.
  • To rename a Tab, right click on one and choose Rename....
  • To close/remove a Tab, right click on one and choose Delete or click the x button.

Find

info

Hit Cmd/Ctrl + F to place the cursor/caret in the search field.

Search field - Enter a string to locate within the script.

Previous - Highlight the previous match to the search string.

Next - Highlight the next match to the search string.

Replace - When checked, a new row will appear with options to replace the search string with a new string.

Replace field - Enter a string to replace the search string(s) with.

Replace - Replace the current search string with the replace string.

Replace All - Replace all instances of the search string with the replace string.

Editor

Enter JavaScript code here. When writing, new lines will be auto-indented.

Autocomplete

When typing e.g. api., cavalry. or ui. an autocomplete window will appear. Use the ⬆︎/⬇︎ keys to select an option and then hit Return to select the required member function from the list of results. Alternatively, use the cursor and double click a result.

When typing {, [ or ", the matching/closing pair will be automatically created. If deleting the first of two such matching pairs, both will be deleted.

Errors

When hitting Run Script..., any errors are printed to the Message Bar.

Snippet Panel

The Snippet Panel can be used to save sections of code for reuse. To create/add a snippet:

  • Select a section of code from the editor and drag it into the Snippet Panel.
  • Use the Import... button to import a valid .json snippet file from the file system.
  • Drag and drop a valid .json snippet file from the file system into the Snippet Panel.

Delete - Delete any selected snippets.

Import... - Import a valid .json snippet file from the file system.

Export Selected... - Save the selected snippets to the file system.

tip

It's possible to drag and drop text directly into the Snippet Panel from apps that support dragging blocks of selected text like TextEdit or Sublime Text.

info

Snippets are saved as a JSON dictionary.

{
"resourceType": "cavalry.snippets",
"semVer": "1.0",
"snippets": [
{
"contents": "api.primitive(\"rectangle\");",
"name": "Example Snippet"
}
]
}

The snippets.json file containing snippets listed in the Snippets Panel can be found in:

  • macOS - ~/Library/Application Support/Cavalry/
  • Windows - C:\Users\<USER>\AppData\Roaming\Cavalry\