-
Notifications
You must be signed in to change notification settings - Fork 0
/
HowTo.txt
22 lines (16 loc) · 1.22 KB
/
HowTo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AXSH.Library for ActiveScript Shell
===================================
This archive has been downloaded from GitHub at https://github.com/PhMajerus/AXSH.Library/.
It contains extra components, functions and modules for Majerus.net ActiveScript Shell, which must be installed separately from http://www.majerus.net/axsh/.
Create a folder named "Majerus.net ActiveScript Shell" in your Documents folder, such as "%UserProfile%\Documents\Majerus.net ActiveScript Shell\".
Then, copy the the content of this archive or folder into that folder.
ActiveScript Shell 2.0.8.0 or later will automatically load and parse functions from that library on their first call.
Similarly, ActiveScript Shell 2.0.10.0 will automatically load and parse modules on their first use.
To read the ReadMe.ans, which contains much more details, use the following statements depending on your language:
- JScript:
var ansi = new ActiveXObject("Majerus.ANSI");
echo(ansi.loadAnsi(envVars.expand("%UserProfile%\\Documents\\Majerus.net ActiveScript Shell\\ReadMe.ans")));
- VBScript:
Set ANSI = CreateObject("Majerus.ANSI")
Echo ANSI.LoadAnsi(EnvVars.Expand("%UserProfile%\Documents\Majerus.net ActiveScript Shell\ReadMe.ans"))
- Philippe Majerus