Script Manager
The Script Manager provides the standard file management functions for scripts, such as edit, delete, rename, etc. and also provides a means for executing scripts. The command buttons in the right border of the window perform the usual functions. The active script is the one selected into the text box above the list.
This dialog is opened from the Script Manager command in the drop menu on the right side of the button on the main toolbar. The button itself runs a script when an Image window or Plot window is top-most. The down arrow accesses other script functions.
If your scripts refer to other script files, Mira provides a shortcut to long
path names by keeping anything used by the Script Manager inside the folder
named
C:\Documents
and Settings\All Users\Application Data\Mirametrics\Mira
MX 7 UE\Scripts
.
A script can access files inside this folder by
calling the script Include()
method with only a subfolder and a file name. The folders below the level of
...\Mira MX 7 UE\Scripts
are as
follows:
Classes
Include
Samples
Mira can load script files from these 3 subfolders
using a function call like
Include("Classes\\CImage.lua")
. This works for scripts
located in any particular folder, since Mira appends the argument
of theInclude()
method to the path to the
[folder]\Scripts
folder, where folder
isC:\Documents and Settings\All Users\Application
Data\Mirametrics\Mira MX 7 UE\Scripts
(see Mira's Special
Folders). Keeping your actual scripts inside
[folder]\Scripts
is simply a way to organize them and
be able to access them from the Script Manager.
In general, you can open, use, and save scripts to
any folder on your computer and not even use the Script Manager.
However, the script Include() function always refers to
C:\Documents and Settings\All Users\Application
Data\Mirametrics\Mira MX 7 UE\Scripts
.
tip |
Notice that the Include() statement above
uses a double backslash inside the quoted string. In a literal
string between quotes |
These script folders are described in the following table.
Script Groups |
|
Scripts |
This group contains the script files that you execute. Depending upon the script content, it may be global or it may operate on the view class that is active when the Script Manager is open. For example, if an Image Window is on top when you open the Script Manager, then executing a class script (one that uses a Mira class as input), would use that image window and have access to the images displayed in it. |
Include |
This group contains "helper" script files that
include functions or definitions used by other script files. These
files cannot be executed on their own but must be inserted into
scripts using the Include function. For example, LoadImages.lua is an include script; it does
nothing by itself but, when included into a script, the function
call |
Classes |
This group contains Lua classes that form an object-oriented interface between Mira and the script engine. |
Samples |
This group contains the sample scripts that come with the Mira Pro Script module. |
|
tip |
Script files may be located anywhere in the file system. However, the Script Manager can access them only if they are located in one of these 4 folders. |
The buttons on the right side of the Script Manager have functions described in the following table. They work with the script that is selected (highlighted) in the central list box in the dialog.
Button: |
Function: |
[Run] |
Executes the script. |
[Open] |
Opens the script into a Script Editor. |
[New] |
Creates a new, empty script in a Script Editor. |
[Rename] |
Renames the selected script. This changes the name of the file where the script is saved. |
[Delete] |
Deletes the file containing the selected script. |
[Close] |
Closes the Script Manager. |
|
Working with Scripts, Script Editor, Running Scripts, Mira's Special Folders