|

You may have several
scripts you want to ship with your application.
Furthermore, you may want to keep your scripts
secure so that others cannot view or edit them.
We have made it so EzScript can read scripts from
EzStor files.
You specify the script in the EzStor file with
this syntax: <EzStor filepath>::<internal
path>. For example,
scriptObj.RunScriptFile "c:\myproj\scripts.ezs::/JohnScripts/script1.vbs"
The above path
requires you have an EzStor file something like
that shown below.

Additionally, you can include other files in
your script. Suppose you have a math library named math.vbs in the inc
folder. You can include it in your script like this:
<!-- #include '/inc/math.vbs' -->
The root of the absolute path is built from the
internal root of the file.
EzStor Security
EzStor files can be secured with Encryption and locking so that
others cannot view or edit your scripts, or otherwise tamper with your script
files.
|