Component TScript
=================
Version 1.6

Author: 
	Matthias Ackermann
	Hinter Gaerten 7
	4125 Riehen
	Switzerland

	e-mail: mackermann@student.ethz.ch

Legal Issues
------------
Copyright  1999 by Matthias Ackermann

This software is provided as it is, without any kind of warranty 
given. The author can not be held responsible for any kind of
damage, problems etc. arised from using this product.

The use of this software is free for educational, testing 
and comercional purposes.

Installation Delphi 5
---------------------
1. Unzip at least the following files from the zip archive (folder "comp5"): 
	- Script5.dpk
	- ScriptTypes.dcu 
	- ScriptExceptions.dcu
	- ScriptFunctions.dcu
	- ScriptTokenizer.dcu
2. Start Delphi 5 and open "Script5.dpk"
3. Press the "Install" button of the package editor.

Installation Delphi 4
---------------------
1. Unzip at least the following files from the zip archive (folder "comp4"): 
	- Script4.dpk
	- ScriptTypes.dcu 
	- ScriptExceptions.dcu
	- ScriptFunctions.dcu
	- ScriptTokenizer.dcu
2. Start Delphi 4 and open "Script4.dpk"
3. Press the "Install" button of the package editor.

Installation Delphi 3
---------------------
1. Unzip at least the following files from the zip archive (folder "comp3"): 
	- Script3.dpk
	- ScriptTypes.dcu 
	- ScriptExceptions.dcu
	- ScriptFunctions.dcu
	- ScriptTokenizer.dcu
2. Start Delphi 3 and open "Script3.dpk"
3. Press the "Install" button of the package editor.

The new components will be added to a panel called "Script"

How to use
----------
Add a TScript and a TFuncs component to your project. This will create two
objects called Script1 and Funcs1. Set the property "Functions" of Script1 
to Funcs1. To run a script add the following code to your project:

	Script1.Text := 'for x := 1 to 2 do CopyRight;'; // Or any other script code
	Script1.Execute;

If you edited your script code in a TMemo component replace the first line by:

	Script1.Text := Memo1.Lines.Text; 

Help
----
All documentation for TScript is located in the subfolder "help".

If you need more information just write me an email. I'll try
to answer your questions as soon as possible.


Source code
-----------
If you need the source code of this component just send me an email
and tell me who you are and what you plan to do with TScript. I'm 
just interested in who is using my code. 
