Return to the tutorials
Return to the scripting
HDR Shop Scripting - Your first script
To create a new script, select New from the Script menu. This will open a new text window.

Once a script window is opened the menu will change to offer new text options such as search and replace. We will start with classic Hello World application. Simply type the following code:
Alert("Hello World")
It should look like this:

To run the script select Run from the Script menu.

This should pop up a small window with the message "Hello World"

The script can be downloaded here: HelloWorld.js
Return to the tutorials