Home » Archimedes archive » Acorn User » AU 1997-10 A.adf » Extras » Apple][e/PD/FileAct/!FileAct/Docs/Guide

Apple][e/PD/FileAct/!FileAct/Docs/Guide

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1997-10 A.adf » Extras
Filename: Apple][e/PD/FileAct/!FileAct/Docs/Guide
Read OK:
File size: 265C bytes
Load address: 0000
Exec address: 0000
File contents
__________________

FileAct user guide
__________________


User, please note
=================

FileAct is Freeware, i.e. it is free software.

Copyright notice
================

The copyright (c) of this program belongs to John Kortink. All rights are
reserved.

You may not change this program (except for documented configuration
changes). You may not use any part of this program in any other program or
product without my written approval. You may spread this program freely, but
only in complete and unchanged form, and only against bare distribution costs
(if any). This program is provided 'as is'. No fitness of this program for
any particular purpose is implied. Using this program is entirely at your own
risk.


//
//
// Introduction
//
//

FileAct can perform freely programmable operations on multiple files and/or
directories, which takes the chore out of many common tasks. In addition,
FileAct can be used to detect specific keypresses, and execute corresponding
code (enabling keypress application launches, keypress execution of common
OSCLI commands, etc..).

The operation to perform on the target objects (i.e. a set of files and/or
directories) is defined by an OSCLI-type command line which is executed using
Wimp_StartTask (which enables an external program to be invoked if needed).
The command line definition may contain 'variables', which are replaced by
(parts of) the object's full pathname before execution of the command line.
For example, something like 'strip off the last two characters of the object
pathname' may be specified by 'Rename %f %p.%L001-02' (for an explanation,
see below). The full pathname of the target object is also available
seperately as the value of a system variable.

An operation may be invoked by :

- Dragging a set of objects to a command line definition icon.
- Dragging a set of objects to the icon bar icon.
- Double-clicking on an object while holding down an Alt or Ctrl key.


//
//
// Using FileAct
//
//

On FileAct's iconbar menu the usual 'Info' and 'Quit' icons can be found. In
addition, 'Control' gives access to the 'FileAct control' window (click on
'Control' to make the window permanent) and 'Status' gives access to the
'Status' menu. The 'FileAct control' window and the 'Status' menu are
described below.


//
//
// The 'FileAct control' window
//
//

In this window, you will find two parts, called 'Actions' and 'Options'.

The 'Actions' part has two subparts : three columns of radio icons (headed by
'Bar', 'Alt' and 'Ctl'), and a set of writable icons (below the icon saying
'No action').

The command line definitions may be specified in the writable icons (there is
room for seven different command line definitions). Dragging a set of objects
to this icon will perform the operation directly. The 'Bar', 'Alt' and 'Ctl'
columns select the operation to perform when a set of objects is dragged to
FileAct's icon bar icon ('Bar' column), or when an object is double-clicked
on while holding down an Alt key ('Alt' column), or when an object is
double-clicked on while holding down a Ctrl key ('Ctl' column). When 'No
action' is selected, no operation is performed.

The 'Options' part contains a flag called 'Recurse'. If 'Recurse' is checked,
and a target object is a directory, all of the contents of that directory is
also processed, recursively.

NOTE : Use the 'Recurse' option with caution. If you execute a potentially
harmful operation, the damage you can do if recursion is enabled is, of
course, much larger.


//
//
// Command line definitions
//
//

On execution of a command line, the full pathname of the target object is
always available in the system variable 'FileAct$ObName'. This may be useful
in a number of situations.

Prior to execution, the command line definition is scanned for special
sequences of the form '%<id>', which will be replaced by the corresponding
part of the full pathname of the target object.

The <id> selects which part is substituted. In the examples following, the
object's full pathname is 'adfs::mydisc.$.dir1.dir2.fred'.

---------------------------------------------------------
 <id>  Meaning              Result for example
---------------------------------------------------------
 f     full pathname        adfs::mydisc.$.dir1.dir2.fred
 p     (pre-leaf) pathname  adfs::mydisc.$.dir1.dir2
 s     filing system name   adfs
 m     media name           mydisc
 d     directory path       $.dir1.dir2
 l     leafname             fred
---------------------------------------------------------

In addition, by using upper case characters (i.e. F,P,S,M,D or L), the part
may be cut down further by a MID$-like operation, as in BASIC.

The full <id> is then of the form '<upchar><arg1><arg2>', where <upchar> is
the upper case selection character, and <arg1> and <arg2> are 3-character
values representing the arguments for the MID$ function (i.e. their VAL is
taken). When a value is negative or zero, the value LEN(r$)+value is taken,
where r$ is the pathname part selected.

Some examples :

-------------------------------------------------------------------
 <id>     Result for example            Function
-------------------------------------------------------------------
 F001-01  adfs::mydisc.$.dir1.dir2.fre  MID$(r$,1,LENr$-1)
 D003005  dir1.                         MID$(r$,3,5)
 L-02002  re                            MID$(r$,LENr$-2,2)
 F002000  dfs::mydisc.$.dir1.dir2.fred  MID$(r$,2,LENr$)=MID$(r$,2)
-------------------------------------------------------------------

The power of this scheme will be demonstrated by giving a few example command
line definitions :

---------------------------------------------------------------------
 Definition             Result for example
---------------------------------------------------------------------
 Rename %f %f!          Appends a '!' to the end of the object's name
 Rename %f %p.%L001002  Truncates leafname to first two characters
 Rename %f %p.%L001-01  Cuts off last character of leafname
 Rename %f %p.%L002000  Cuts off first character of leafname
 Rename %f %s::%m.$.%l  Move object to root of media it's on
 Access %f WR           Set object's access to public write/read
 SetType %f 123         Set object's filetype to &123
 Namedisk :%m %l        Names the object's disc 'fred'
 Type %f -TabExpand     *Types file, with TAB expansion
 Dump %f 1000           *Dumps file, from PTR=&1000 onwards
---------------------------------------------------------------------


//
//
// Key definitions
//
//

FileAct can also execute specific command lines on detecting specific
keypresses.

To use this feature you have to create a key definition file, containing a
list of keypresses to be detected, and the corresponding command line to
execute.

The key definition file simply consists of a number of definition lines. A
definition line starts with a key token, followed by a single space
character, followed by the command line to execute. If the key token is not
recognized, the definition line is ignored (you may use this to insert
comments).

A valid key token consists of a single character specifying the 'special' key
to be pressed, followed by an uppercase A..Z or 0..9, or 'TAB' (for the TAB
key). The special key characters are :

's' : SHIFT
'c' : CTRL
'a' : ALT
'n' : none, i.e. the key must be pressed on its own

E.g. 'cH' means 'CTRL and H pressed simultaneously', 'nA' means 'A pressed on
its own', 'sTAB' means 'SHIFT and TAB pressed simultaneously', etc..

An example key definition file would be :

cF Run IDEFS::4.$.!FileAct
n0 Filer_OpenDir ADFS::0.$

The pathname of the key definition file is '<FileAct$KeyActDir>.KeyDefs',
i.e. the system variable 'FileAct$KeyActDir' must be set to the directory
path, without a trailing '.' (FileAct's !Run file is a good place for this),
and your key definition file must be called 'KeyDefs' and placed in that
directory. The !Run file that comes with your !FileAct copy may contain
somebody elses setting for 'FileAct$KeyActDir', so you probably want to
change this to your own. If the 'FileAct$KeyActDir' system variable is
undefined on startup, or if the directory that it points to does not exist,
or if the definition file 'KeyDefs' cannot be found in that directory,
FileAct's keypress functions will be silently disabled.

There is an example key definition directory called 'KeyActDir' inside the
!FileAct.Examples directory.

NOTE : FileAct will only try to detect keypresses if the caret is 'disowned'
(i.e. if it is not used by any application), because otherwise all keypresses
that have a 'FileAct definition' would cause two different things to happen
at the same time. E.g. pressing '0' in a writable icon would not only insert
a '0' but also cause FileAct's 'n0' definition to be executed each time.

RELATED NOTE : Pressing the right-hand ALT key and the right-hand CTRL key
together is pre-programmed to disown the caret, enabling FileAct to react to
keypresses immediately afterwards.


//
//
// The 'Status' menu
//
//

In this menu you can manipulate FileAct's 'status', which consists of a
number of configuration settings.

- 'Save' will save the current status.
- 'Load' will load the saved status.
- 'Default' will load the default status.
- 'Kill' will remove the saved status.

When FileAct starts up it loads the saved status, or the default status if
there is no saved status.

The status consists of the 'Actions' and 'Options' settings.


//
//
// Epilogue
//
//

Updates of FileAct will be made available by (in order of preference) :

- World Wide Web, on www.inter.nl.net/users/J.Kortink.
- Electronic mail, to kortink@inter.nl.net.
- Snail mail, to : John Kortink, Nutterbrink 31, 7544 WJ Enschede, The
  Netherlands. Include a DD or HD floppy, return envelope and one
  International Reply Coupon (IRC).

00000000  0a 5f 5f 5f 5f 5f 5f 5f  5f 5f 5f 5f 5f 5f 5f 5f  |._______________|
00000010  5f 5f 5f 0a 0a 46 69 6c  65 41 63 74 20 75 73 65  |___..FileAct use|
00000020  72 20 67 75 69 64 65 0a  5f 5f 5f 5f 5f 5f 5f 5f  |r guide.________|
00000030  5f 5f 5f 5f 5f 5f 5f 5f  5f 5f 0a 0a 0a 55 73 65  |__________...Use|
00000040  72 2c 20 70 6c 65 61 73  65 20 6e 6f 74 65 0a 3d  |r, please note.=|
00000050  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000060  0a 0a 46 69 6c 65 41 63  74 20 69 73 20 46 72 65  |..FileAct is Fre|
00000070  65 77 61 72 65 2c 20 69  2e 65 2e 20 69 74 20 69  |eware, i.e. it i|
00000080  73 20 66 72 65 65 20 73  6f 66 74 77 61 72 65 2e  |s free software.|
00000090  0a 0a 43 6f 70 79 72 69  67 68 74 20 6e 6f 74 69  |..Copyright noti|
000000a0  63 65 0a 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |ce.=============|
000000b0  3d 3d 3d 0a 0a 54 68 65  20 63 6f 70 79 72 69 67  |===..The copyrig|
000000c0  68 74 20 28 63 29 20 6f  66 20 74 68 69 73 20 70  |ht (c) of this p|
000000d0  72 6f 67 72 61 6d 20 62  65 6c 6f 6e 67 73 20 74  |rogram belongs t|
000000e0  6f 20 4a 6f 68 6e 20 4b  6f 72 74 69 6e 6b 2e 20  |o John Kortink. |
000000f0  41 6c 6c 20 72 69 67 68  74 73 20 61 72 65 0a 72  |All rights are.r|
00000100  65 73 65 72 76 65 64 2e  0a 0a 59 6f 75 20 6d 61  |eserved...You ma|
00000110  79 20 6e 6f 74 20 63 68  61 6e 67 65 20 74 68 69  |y not change thi|
00000120  73 20 70 72 6f 67 72 61  6d 20 28 65 78 63 65 70  |s program (excep|
00000130  74 20 66 6f 72 20 64 6f  63 75 6d 65 6e 74 65 64  |t for documented|
00000140  20 63 6f 6e 66 69 67 75  72 61 74 69 6f 6e 0a 63  | configuration.c|
00000150  68 61 6e 67 65 73 29 2e  20 59 6f 75 20 6d 61 79  |hanges). You may|
00000160  20 6e 6f 74 20 75 73 65  20 61 6e 79 20 70 61 72  | not use any par|
00000170  74 20 6f 66 20 74 68 69  73 20 70 72 6f 67 72 61  |t of this progra|
00000180  6d 20 69 6e 20 61 6e 79  20 6f 74 68 65 72 20 70  |m in any other p|
00000190  72 6f 67 72 61 6d 20 6f  72 0a 70 72 6f 64 75 63  |rogram or.produc|
000001a0  74 20 77 69 74 68 6f 75  74 20 6d 79 20 77 72 69  |t without my wri|
000001b0  74 74 65 6e 20 61 70 70  72 6f 76 61 6c 2e 20 59  |tten approval. Y|
000001c0  6f 75 20 6d 61 79 20 73  70 72 65 61 64 20 74 68  |ou may spread th|
000001d0  69 73 20 70 72 6f 67 72  61 6d 20 66 72 65 65 6c  |is program freel|
000001e0  79 2c 20 62 75 74 0a 6f  6e 6c 79 20 69 6e 20 63  |y, but.only in c|
000001f0  6f 6d 70 6c 65 74 65 20  61 6e 64 20 75 6e 63 68  |omplete and unch|
00000200  61 6e 67 65 64 20 66 6f  72 6d 2c 20 61 6e 64 20  |anged form, and |
00000210  6f 6e 6c 79 20 61 67 61  69 6e 73 74 20 62 61 72  |only against bar|
00000220  65 20 64 69 73 74 72 69  62 75 74 69 6f 6e 20 63  |e distribution c|
00000230  6f 73 74 73 0a 28 69 66  20 61 6e 79 29 2e 20 54  |osts.(if any). T|
00000240  68 69 73 20 70 72 6f 67  72 61 6d 20 69 73 20 70  |his program is p|
00000250  72 6f 76 69 64 65 64 20  27 61 73 20 69 73 27 2e  |rovided 'as is'.|
00000260  20 4e 6f 20 66 69 74 6e  65 73 73 20 6f 66 20 74  | No fitness of t|
00000270  68 69 73 20 70 72 6f 67  72 61 6d 20 66 6f 72 0a  |his program for.|
00000280  61 6e 79 20 70 61 72 74  69 63 75 6c 61 72 20 70  |any particular p|
00000290  75 72 70 6f 73 65 20 69  73 20 69 6d 70 6c 69 65  |urpose is implie|
000002a0  64 2e 20 55 73 69 6e 67  20 74 68 69 73 20 70 72  |d. Using this pr|
000002b0  6f 67 72 61 6d 20 69 73  20 65 6e 74 69 72 65 6c  |ogram is entirel|
000002c0  79 20 61 74 20 79 6f 75  72 20 6f 77 6e 0a 72 69  |y at your own.ri|
000002d0  73 6b 2e 0a 0a 0a 2f 2f  0a 2f 2f 0a 2f 2f 20 49  |sk....//.//.// I|
000002e0  6e 74 72 6f 64 75 63 74  69 6f 6e 0a 2f 2f 0a 2f  |ntroduction.//./|
000002f0  2f 0a 0a 46 69 6c 65 41  63 74 20 63 61 6e 20 70  |/..FileAct can p|
00000300  65 72 66 6f 72 6d 20 66  72 65 65 6c 79 20 70 72  |erform freely pr|
00000310  6f 67 72 61 6d 6d 61 62  6c 65 20 6f 70 65 72 61  |ogrammable opera|
00000320  74 69 6f 6e 73 20 6f 6e  20 6d 75 6c 74 69 70 6c  |tions on multipl|
00000330  65 20 66 69 6c 65 73 20  61 6e 64 2f 6f 72 0a 64  |e files and/or.d|
00000340  69 72 65 63 74 6f 72 69  65 73 2c 20 77 68 69 63  |irectories, whic|
00000350  68 20 74 61 6b 65 73 20  74 68 65 20 63 68 6f 72  |h takes the chor|
00000360  65 20 6f 75 74 20 6f 66  20 6d 61 6e 79 20 63 6f  |e out of many co|
00000370  6d 6d 6f 6e 20 74 61 73  6b 73 2e 20 49 6e 20 61  |mmon tasks. In a|
00000380  64 64 69 74 69 6f 6e 2c  0a 46 69 6c 65 41 63 74  |ddition,.FileAct|
00000390  20 63 61 6e 20 62 65 20  75 73 65 64 20 74 6f 20  | can be used to |
000003a0  64 65 74 65 63 74 20 73  70 65 63 69 66 69 63 20  |detect specific |
000003b0  6b 65 79 70 72 65 73 73  65 73 2c 20 61 6e 64 20  |keypresses, and |
000003c0  65 78 65 63 75 74 65 20  63 6f 72 72 65 73 70 6f  |execute correspo|
000003d0  6e 64 69 6e 67 0a 63 6f  64 65 20 28 65 6e 61 62  |nding.code (enab|
000003e0  6c 69 6e 67 20 6b 65 79  70 72 65 73 73 20 61 70  |ling keypress ap|
000003f0  70 6c 69 63 61 74 69 6f  6e 20 6c 61 75 6e 63 68  |plication launch|
00000400  65 73 2c 20 6b 65 79 70  72 65 73 73 20 65 78 65  |es, keypress exe|
00000410  63 75 74 69 6f 6e 20 6f  66 20 63 6f 6d 6d 6f 6e  |cution of common|
00000420  0a 4f 53 43 4c 49 20 63  6f 6d 6d 61 6e 64 73 2c  |.OSCLI commands,|
00000430  20 65 74 63 2e 2e 29 2e  0a 0a 54 68 65 20 6f 70  | etc..)...The op|
00000440  65 72 61 74 69 6f 6e 20  74 6f 20 70 65 72 66 6f  |eration to perfo|
00000450  72 6d 20 6f 6e 20 74 68  65 20 74 61 72 67 65 74  |rm on the target|
00000460  20 6f 62 6a 65 63 74 73  20 28 69 2e 65 2e 20 61  | objects (i.e. a|
00000470  20 73 65 74 20 6f 66 20  66 69 6c 65 73 20 61 6e  | set of files an|
00000480  64 2f 6f 72 0a 64 69 72  65 63 74 6f 72 69 65 73  |d/or.directories|
00000490  29 20 69 73 20 64 65 66  69 6e 65 64 20 62 79 20  |) is defined by |
000004a0  61 6e 20 4f 53 43 4c 49  2d 74 79 70 65 20 63 6f  |an OSCLI-type co|
000004b0  6d 6d 61 6e 64 20 6c 69  6e 65 20 77 68 69 63 68  |mmand line which|
000004c0  20 69 73 20 65 78 65 63  75 74 65 64 20 75 73 69  | is executed usi|
000004d0  6e 67 0a 57 69 6d 70 5f  53 74 61 72 74 54 61 73  |ng.Wimp_StartTas|
000004e0  6b 20 28 77 68 69 63 68  20 65 6e 61 62 6c 65 73  |k (which enables|
000004f0  20 61 6e 20 65 78 74 65  72 6e 61 6c 20 70 72 6f  | an external pro|
00000500  67 72 61 6d 20 74 6f 20  62 65 20 69 6e 76 6f 6b  |gram to be invok|
00000510  65 64 20 69 66 20 6e 65  65 64 65 64 29 2e 0a 54  |ed if needed)..T|
00000520  68 65 20 63 6f 6d 6d 61  6e 64 20 6c 69 6e 65 20  |he command line |
00000530  64 65 66 69 6e 69 74 69  6f 6e 20 6d 61 79 20 63  |definition may c|
00000540  6f 6e 74 61 69 6e 20 27  76 61 72 69 61 62 6c 65  |ontain 'variable|
00000550  73 27 2c 20 77 68 69 63  68 20 61 72 65 20 72 65  |s', which are re|
00000560  70 6c 61 63 65 64 20 62  79 0a 28 70 61 72 74 73  |placed by.(parts|
00000570  20 6f 66 29 20 74 68 65  20 6f 62 6a 65 63 74 27  | of) the object'|
00000580  73 20 66 75 6c 6c 20 70  61 74 68 6e 61 6d 65 20  |s full pathname |
00000590  62 65 66 6f 72 65 20 65  78 65 63 75 74 69 6f 6e  |before execution|
000005a0  20 6f 66 20 74 68 65 20  63 6f 6d 6d 61 6e 64 20  | of the command |
000005b0  6c 69 6e 65 2e 0a 46 6f  72 20 65 78 61 6d 70 6c  |line..For exampl|
000005c0  65 2c 20 73 6f 6d 65 74  68 69 6e 67 20 6c 69 6b  |e, something lik|
000005d0  65 20 27 73 74 72 69 70  20 6f 66 66 20 74 68 65  |e 'strip off the|
000005e0  20 6c 61 73 74 20 74 77  6f 20 63 68 61 72 61 63  | last two charac|
000005f0  74 65 72 73 20 6f 66 20  74 68 65 20 6f 62 6a 65  |ters of the obje|
00000600  63 74 0a 70 61 74 68 6e  61 6d 65 27 20 6d 61 79  |ct.pathname' may|
00000610  20 62 65 20 73 70 65 63  69 66 69 65 64 20 62 79  | be specified by|
00000620  20 27 52 65 6e 61 6d 65  20 25 66 20 25 70 2e 25  | 'Rename %f %p.%|
00000630  4c 30 30 31 2d 30 32 27  20 28 66 6f 72 20 61 6e  |L001-02' (for an|
00000640  20 65 78 70 6c 61 6e 61  74 69 6f 6e 2c 0a 73 65  | explanation,.se|
00000650  65 20 62 65 6c 6f 77 29  2e 20 54 68 65 20 66 75  |e below). The fu|
00000660  6c 6c 20 70 61 74 68 6e  61 6d 65 20 6f 66 20 74  |ll pathname of t|
00000670  68 65 20 74 61 72 67 65  74 20 6f 62 6a 65 63 74  |he target object|
00000680  20 69 73 20 61 6c 73 6f  20 61 76 61 69 6c 61 62  | is also availab|
00000690  6c 65 0a 73 65 70 65 72  61 74 65 6c 79 20 61 73  |le.seperately as|
000006a0  20 74 68 65 20 76 61 6c  75 65 20 6f 66 20 61 20  | the value of a |
000006b0  73 79 73 74 65 6d 20 76  61 72 69 61 62 6c 65 2e  |system variable.|
000006c0  0a 0a 41 6e 20 6f 70 65  72 61 74 69 6f 6e 20 6d  |..An operation m|
000006d0  61 79 20 62 65 20 69 6e  76 6f 6b 65 64 20 62 79  |ay be invoked by|
000006e0  20 3a 0a 0a 2d 20 44 72  61 67 67 69 6e 67 20 61  | :..- Dragging a|
000006f0  20 73 65 74 20 6f 66 20  6f 62 6a 65 63 74 73 20  | set of objects |
00000700  74 6f 20 61 20 63 6f 6d  6d 61 6e 64 20 6c 69 6e  |to a command lin|
00000710  65 20 64 65 66 69 6e 69  74 69 6f 6e 20 69 63 6f  |e definition ico|
00000720  6e 2e 0a 2d 20 44 72 61  67 67 69 6e 67 20 61 20  |n..- Dragging a |
00000730  73 65 74 20 6f 66 20 6f  62 6a 65 63 74 73 20 74  |set of objects t|
00000740  6f 20 74 68 65 20 69 63  6f 6e 20 62 61 72 20 69  |o the icon bar i|
00000750  63 6f 6e 2e 0a 2d 20 44  6f 75 62 6c 65 2d 63 6c  |con..- Double-cl|
00000760  69 63 6b 69 6e 67 20 6f  6e 20 61 6e 20 6f 62 6a  |icking on an obj|
00000770  65 63 74 20 77 68 69 6c  65 20 68 6f 6c 64 69 6e  |ect while holdin|
00000780  67 20 64 6f 77 6e 20 61  6e 20 41 6c 74 20 6f 72  |g down an Alt or|
00000790  20 43 74 72 6c 20 6b 65  79 2e 0a 0a 0a 2f 2f 0a  | Ctrl key....//.|
000007a0  2f 2f 0a 2f 2f 20 55 73  69 6e 67 20 46 69 6c 65  |//.// Using File|
000007b0  41 63 74 0a 2f 2f 0a 2f  2f 0a 0a 4f 6e 20 46 69  |Act.//.//..On Fi|
000007c0  6c 65 41 63 74 27 73 20  69 63 6f 6e 62 61 72 20  |leAct's iconbar |
000007d0  6d 65 6e 75 20 74 68 65  20 75 73 75 61 6c 20 27  |menu the usual '|
000007e0  49 6e 66 6f 27 20 61 6e  64 20 27 51 75 69 74 27  |Info' and 'Quit'|
000007f0  20 69 63 6f 6e 73 20 63  61 6e 20 62 65 20 66 6f  | icons can be fo|
00000800  75 6e 64 2e 20 49 6e 0a  61 64 64 69 74 69 6f 6e  |und. In.addition|
00000810  2c 20 27 43 6f 6e 74 72  6f 6c 27 20 67 69 76 65  |, 'Control' give|
00000820  73 20 61 63 63 65 73 73  20 74 6f 20 74 68 65 20  |s access to the |
00000830  27 46 69 6c 65 41 63 74  20 63 6f 6e 74 72 6f 6c  |'FileAct control|
00000840  27 20 77 69 6e 64 6f 77  20 28 63 6c 69 63 6b 20  |' window (click |
00000850  6f 6e 0a 27 43 6f 6e 74  72 6f 6c 27 20 74 6f 20  |on.'Control' to |
00000860  6d 61 6b 65 20 74 68 65  20 77 69 6e 64 6f 77 20  |make the window |
00000870  70 65 72 6d 61 6e 65 6e  74 29 20 61 6e 64 20 27  |permanent) and '|
00000880  53 74 61 74 75 73 27 20  67 69 76 65 73 20 61 63  |Status' gives ac|
00000890  63 65 73 73 20 74 6f 20  74 68 65 0a 27 53 74 61  |cess to the.'Sta|
000008a0  74 75 73 27 20 6d 65 6e  75 2e 20 54 68 65 20 27  |tus' menu. The '|
000008b0  46 69 6c 65 41 63 74 20  63 6f 6e 74 72 6f 6c 27  |FileAct control'|
000008c0  20 77 69 6e 64 6f 77 20  61 6e 64 20 74 68 65 20  | window and the |
000008d0  27 53 74 61 74 75 73 27  20 6d 65 6e 75 20 61 72  |'Status' menu ar|
000008e0  65 0a 64 65 73 63 72 69  62 65 64 20 62 65 6c 6f  |e.described belo|
000008f0  77 2e 0a 0a 0a 2f 2f 0a  2f 2f 0a 2f 2f 20 54 68  |w....//.//.// Th|
00000900  65 20 27 46 69 6c 65 41  63 74 20 63 6f 6e 74 72  |e 'FileAct contr|
00000910  6f 6c 27 20 77 69 6e 64  6f 77 0a 2f 2f 0a 2f 2f  |ol' window.//.//|
00000920  0a 0a 49 6e 20 74 68 69  73 20 77 69 6e 64 6f 77  |..In this window|
00000930  2c 20 79 6f 75 20 77 69  6c 6c 20 66 69 6e 64 20  |, you will find |
00000940  74 77 6f 20 70 61 72 74  73 2c 20 63 61 6c 6c 65  |two parts, calle|
00000950  64 20 27 41 63 74 69 6f  6e 73 27 20 61 6e 64 20  |d 'Actions' and |
00000960  27 4f 70 74 69 6f 6e 73  27 2e 0a 0a 54 68 65 20  |'Options'...The |
00000970  27 41 63 74 69 6f 6e 73  27 20 70 61 72 74 20 68  |'Actions' part h|
00000980  61 73 20 74 77 6f 20 73  75 62 70 61 72 74 73 20  |as two subparts |
00000990  3a 20 74 68 72 65 65 20  63 6f 6c 75 6d 6e 73 20  |: three columns |
000009a0  6f 66 20 72 61 64 69 6f  20 69 63 6f 6e 73 20 28  |of radio icons (|
000009b0  68 65 61 64 65 64 20 62  79 0a 27 42 61 72 27 2c  |headed by.'Bar',|
000009c0  20 27 41 6c 74 27 20 61  6e 64 20 27 43 74 6c 27  | 'Alt' and 'Ctl'|
000009d0  29 2c 20 61 6e 64 20 61  20 73 65 74 20 6f 66 20  |), and a set of |
000009e0  77 72 69 74 61 62 6c 65  20 69 63 6f 6e 73 20 28  |writable icons (|
000009f0  62 65 6c 6f 77 20 74 68  65 20 69 63 6f 6e 20 73  |below the icon s|
00000a00  61 79 69 6e 67 0a 27 4e  6f 20 61 63 74 69 6f 6e  |aying.'No action|
00000a10  27 29 2e 0a 0a 54 68 65  20 63 6f 6d 6d 61 6e 64  |')...The command|
00000a20  20 6c 69 6e 65 20 64 65  66 69 6e 69 74 69 6f 6e  | line definition|
00000a30  73 20 6d 61 79 20 62 65  20 73 70 65 63 69 66 69  |s may be specifi|
00000a40  65 64 20 69 6e 20 74 68  65 20 77 72 69 74 61 62  |ed in the writab|
00000a50  6c 65 20 69 63 6f 6e 73  20 28 74 68 65 72 65 20  |le icons (there |
00000a60  69 73 0a 72 6f 6f 6d 20  66 6f 72 20 73 65 76 65  |is.room for seve|
00000a70  6e 20 64 69 66 66 65 72  65 6e 74 20 63 6f 6d 6d  |n different comm|
00000a80  61 6e 64 20 6c 69 6e 65  20 64 65 66 69 6e 69 74  |and line definit|
00000a90  69 6f 6e 73 29 2e 20 44  72 61 67 67 69 6e 67 20  |ions). Dragging |
00000aa0  61 20 73 65 74 20 6f 66  20 6f 62 6a 65 63 74 73  |a set of objects|
00000ab0  0a 74 6f 20 74 68 69 73  20 69 63 6f 6e 20 77 69  |.to this icon wi|
00000ac0  6c 6c 20 70 65 72 66 6f  72 6d 20 74 68 65 20 6f  |ll perform the o|
00000ad0  70 65 72 61 74 69 6f 6e  20 64 69 72 65 63 74 6c  |peration directl|
00000ae0  79 2e 20 54 68 65 20 27  42 61 72 27 2c 20 27 41  |y. The 'Bar', 'A|
00000af0  6c 74 27 20 61 6e 64 20  27 43 74 6c 27 0a 63 6f  |lt' and 'Ctl'.co|
00000b00  6c 75 6d 6e 73 20 73 65  6c 65 63 74 20 74 68 65  |lumns select the|
00000b10  20 6f 70 65 72 61 74 69  6f 6e 20 74 6f 20 70 65  | operation to pe|
00000b20  72 66 6f 72 6d 20 77 68  65 6e 20 61 20 73 65 74  |rform when a set|
00000b30  20 6f 66 20 6f 62 6a 65  63 74 73 20 69 73 20 64  | of objects is d|
00000b40  72 61 67 67 65 64 20 74  6f 0a 46 69 6c 65 41 63  |ragged to.FileAc|
00000b50  74 27 73 20 69 63 6f 6e  20 62 61 72 20 69 63 6f  |t's icon bar ico|
00000b60  6e 20 28 27 42 61 72 27  20 63 6f 6c 75 6d 6e 29  |n ('Bar' column)|
00000b70  2c 20 6f 72 20 77 68 65  6e 20 61 6e 20 6f 62 6a  |, or when an obj|
00000b80  65 63 74 20 69 73 20 64  6f 75 62 6c 65 2d 63 6c  |ect is double-cl|
00000b90  69 63 6b 65 64 0a 6f 6e  20 77 68 69 6c 65 20 68  |icked.on while h|
00000ba0  6f 6c 64 69 6e 67 20 64  6f 77 6e 20 61 6e 20 41  |olding down an A|
00000bb0  6c 74 20 6b 65 79 20 28  27 41 6c 74 27 20 63 6f  |lt key ('Alt' co|
00000bc0  6c 75 6d 6e 29 2c 20 6f  72 20 77 68 65 6e 20 61  |lumn), or when a|
00000bd0  6e 20 6f 62 6a 65 63 74  20 69 73 0a 64 6f 75 62  |n object is.doub|
00000be0  6c 65 2d 63 6c 69 63 6b  65 64 20 6f 6e 20 77 68  |le-clicked on wh|
00000bf0  69 6c 65 20 68 6f 6c 64  69 6e 67 20 64 6f 77 6e  |ile holding down|
00000c00  20 61 20 43 74 72 6c 20  6b 65 79 20 28 27 43 74  | a Ctrl key ('Ct|
00000c10  6c 27 20 63 6f 6c 75 6d  6e 29 2e 20 57 68 65 6e  |l' column). When|
00000c20  20 27 4e 6f 0a 61 63 74  69 6f 6e 27 20 69 73 20  | 'No.action' is |
00000c30  73 65 6c 65 63 74 65 64  2c 20 6e 6f 20 6f 70 65  |selected, no ope|
00000c40  72 61 74 69 6f 6e 20 69  73 20 70 65 72 66 6f 72  |ration is perfor|
00000c50  6d 65 64 2e 0a 0a 54 68  65 20 27 4f 70 74 69 6f  |med...The 'Optio|
00000c60  6e 73 27 20 70 61 72 74  20 63 6f 6e 74 61 69 6e  |ns' part contain|
00000c70  73 20 61 20 66 6c 61 67  20 63 61 6c 6c 65 64 20  |s a flag called |
00000c80  27 52 65 63 75 72 73 65  27 2e 20 49 66 20 27 52  |'Recurse'. If 'R|
00000c90  65 63 75 72 73 65 27 20  69 73 20 63 68 65 63 6b  |ecurse' is check|
00000ca0  65 64 2c 0a 61 6e 64 20  61 20 74 61 72 67 65 74  |ed,.and a target|
00000cb0  20 6f 62 6a 65 63 74 20  69 73 20 61 20 64 69 72  | object is a dir|
00000cc0  65 63 74 6f 72 79 2c 20  61 6c 6c 20 6f 66 20 74  |ectory, all of t|
00000cd0  68 65 20 63 6f 6e 74 65  6e 74 73 20 6f 66 20 74  |he contents of t|
00000ce0  68 61 74 20 64 69 72 65  63 74 6f 72 79 20 69 73  |hat directory is|
00000cf0  0a 61 6c 73 6f 20 70 72  6f 63 65 73 73 65 64 2c  |.also processed,|
00000d00  20 72 65 63 75 72 73 69  76 65 6c 79 2e 0a 0a 4e  | recursively...N|
00000d10  4f 54 45 20 3a 20 55 73  65 20 74 68 65 20 27 52  |OTE : Use the 'R|
00000d20  65 63 75 72 73 65 27 20  6f 70 74 69 6f 6e 20 77  |ecurse' option w|
00000d30  69 74 68 20 63 61 75 74  69 6f 6e 2e 20 49 66 20  |ith caution. If |
00000d40  79 6f 75 20 65 78 65 63  75 74 65 20 61 20 70 6f  |you execute a po|
00000d50  74 65 6e 74 69 61 6c 6c  79 0a 68 61 72 6d 66 75  |tentially.harmfu|
00000d60  6c 20 6f 70 65 72 61 74  69 6f 6e 2c 20 74 68 65  |l operation, the|
00000d70  20 64 61 6d 61 67 65 20  79 6f 75 20 63 61 6e 20  | damage you can |
00000d80  64 6f 20 69 66 20 72 65  63 75 72 73 69 6f 6e 20  |do if recursion |
00000d90  69 73 20 65 6e 61 62 6c  65 64 20 69 73 2c 20 6f  |is enabled is, o|
00000da0  66 0a 63 6f 75 72 73 65  2c 20 6d 75 63 68 20 6c  |f.course, much l|
00000db0  61 72 67 65 72 2e 0a 0a  0a 2f 2f 0a 2f 2f 0a 2f  |arger....//.//./|
00000dc0  2f 20 43 6f 6d 6d 61 6e  64 20 6c 69 6e 65 20 64  |/ Command line d|
00000dd0  65 66 69 6e 69 74 69 6f  6e 73 0a 2f 2f 0a 2f 2f  |efinitions.//.//|
00000de0  0a 0a 4f 6e 20 65 78 65  63 75 74 69 6f 6e 20 6f  |..On execution o|
00000df0  66 20 61 20 63 6f 6d 6d  61 6e 64 20 6c 69 6e 65  |f a command line|
00000e00  2c 20 74 68 65 20 66 75  6c 6c 20 70 61 74 68 6e  |, the full pathn|
00000e10  61 6d 65 20 6f 66 20 74  68 65 20 74 61 72 67 65  |ame of the targe|
00000e20  74 20 6f 62 6a 65 63 74  20 69 73 0a 61 6c 77 61  |t object is.alwa|
00000e30  79 73 20 61 76 61 69 6c  61 62 6c 65 20 69 6e 20  |ys available in |
00000e40  74 68 65 20 73 79 73 74  65 6d 20 76 61 72 69 61  |the system varia|
00000e50  62 6c 65 20 27 46 69 6c  65 41 63 74 24 4f 62 4e  |ble 'FileAct$ObN|
00000e60  61 6d 65 27 2e 20 54 68  69 73 20 6d 61 79 20 62  |ame'. This may b|
00000e70  65 20 75 73 65 66 75 6c  0a 69 6e 20 61 20 6e 75  |e useful.in a nu|
00000e80  6d 62 65 72 20 6f 66 20  73 69 74 75 61 74 69 6f  |mber of situatio|
00000e90  6e 73 2e 0a 0a 50 72 69  6f 72 20 74 6f 20 65 78  |ns...Prior to ex|
00000ea0  65 63 75 74 69 6f 6e 2c  20 74 68 65 20 63 6f 6d  |ecution, the com|
00000eb0  6d 61 6e 64 20 6c 69 6e  65 20 64 65 66 69 6e 69  |mand line defini|
00000ec0  74 69 6f 6e 20 69 73 20  73 63 61 6e 6e 65 64 20  |tion is scanned |
00000ed0  66 6f 72 20 73 70 65 63  69 61 6c 0a 73 65 71 75  |for special.sequ|
00000ee0  65 6e 63 65 73 20 6f 66  20 74 68 65 20 66 6f 72  |ences of the for|
00000ef0  6d 20 27 25 3c 69 64 3e  27 2c 20 77 68 69 63 68  |m '%<id>', which|
00000f00  20 77 69 6c 6c 20 62 65  20 72 65 70 6c 61 63 65  | will be replace|
00000f10  64 20 62 79 20 74 68 65  20 63 6f 72 72 65 73 70  |d by the corresp|
00000f20  6f 6e 64 69 6e 67 0a 70  61 72 74 20 6f 66 20 74  |onding.part of t|
00000f30  68 65 20 66 75 6c 6c 20  70 61 74 68 6e 61 6d 65  |he full pathname|
00000f40  20 6f 66 20 74 68 65 20  74 61 72 67 65 74 20 6f  | of the target o|
00000f50  62 6a 65 63 74 2e 0a 0a  54 68 65 20 3c 69 64 3e  |bject...The <id>|
00000f60  20 73 65 6c 65 63 74 73  20 77 68 69 63 68 20 70  | selects which p|
00000f70  61 72 74 20 69 73 20 73  75 62 73 74 69 74 75 74  |art is substitut|
00000f80  65 64 2e 20 49 6e 20 74  68 65 20 65 78 61 6d 70  |ed. In the examp|
00000f90  6c 65 73 20 66 6f 6c 6c  6f 77 69 6e 67 2c 20 74  |les following, t|
00000fa0  68 65 0a 6f 62 6a 65 63  74 27 73 20 66 75 6c 6c  |he.object's full|
00000fb0  20 70 61 74 68 6e 61 6d  65 20 69 73 20 27 61 64  | pathname is 'ad|
00000fc0  66 73 3a 3a 6d 79 64 69  73 63 2e 24 2e 64 69 72  |fs::mydisc.$.dir|
00000fd0  31 2e 64 69 72 32 2e 66  72 65 64 27 2e 0a 0a 2d  |1.dir2.fred'...-|
00000fe0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001010  2d 2d 2d 2d 2d 2d 2d 2d  0a 20 3c 69 64 3e 20 20  |--------. <id>  |
00001020  4d 65 61 6e 69 6e 67 20  20 20 20 20 20 20 20 20  |Meaning         |
00001030  20 20 20 20 20 52 65 73  75 6c 74 20 66 6f 72 20  |     Result for |
00001040  65 78 61 6d 70 6c 65 0a  2d 2d 2d 2d 2d 2d 2d 2d  |example.--------|
00001050  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001080  2d 0a 20 66 20 20 20 20  20 66 75 6c 6c 20 70 61  |-. f     full pa|
00001090  74 68 6e 61 6d 65 20 20  20 20 20 20 20 20 61 64  |thname        ad|
000010a0  66 73 3a 3a 6d 79 64 69  73 63 2e 24 2e 64 69 72  |fs::mydisc.$.dir|
000010b0  31 2e 64 69 72 32 2e 66  72 65 64 0a 20 70 20 20  |1.dir2.fred. p  |
000010c0  20 20 20 28 70 72 65 2d  6c 65 61 66 29 20 70 61  |   (pre-leaf) pa|
000010d0  74 68 6e 61 6d 65 20 20  61 64 66 73 3a 3a 6d 79  |thname  adfs::my|
000010e0  64 69 73 63 2e 24 2e 64  69 72 31 2e 64 69 72 32  |disc.$.dir1.dir2|
000010f0  0a 20 73 20 20 20 20 20  66 69 6c 69 6e 67 20 73  |. s     filing s|
00001100  79 73 74 65 6d 20 6e 61  6d 65 20 20 20 61 64 66  |ystem name   adf|
00001110  73 0a 20 6d 20 20 20 20  20 6d 65 64 69 61 20 6e  |s. m     media n|
00001120  61 6d 65 20 20 20 20 20  20 20 20 20 20 20 6d 79  |ame           my|
00001130  64 69 73 63 0a 20 64 20  20 20 20 20 64 69 72 65  |disc. d     dire|
00001140  63 74 6f 72 79 20 70 61  74 68 20 20 20 20 20 20  |ctory path      |
00001150  20 24 2e 64 69 72 31 2e  64 69 72 32 0a 20 6c 20  | $.dir1.dir2. l |
00001160  20 20 20 20 6c 65 61 66  6e 61 6d 65 20 20 20 20  |    leafname    |
00001170  20 20 20 20 20 20 20 20  20 66 72 65 64 0a 2d 2d  |         fred.--|
00001180  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
000011b0  2d 2d 2d 2d 2d 2d 2d 0a  0a 49 6e 20 61 64 64 69  |-------..In addi|
000011c0  74 69 6f 6e 2c 20 62 79  20 75 73 69 6e 67 20 75  |tion, by using u|
000011d0  70 70 65 72 20 63 61 73  65 20 63 68 61 72 61 63  |pper case charac|
000011e0  74 65 72 73 20 28 69 2e  65 2e 20 46 2c 50 2c 53  |ters (i.e. F,P,S|
000011f0  2c 4d 2c 44 20 6f 72 20  4c 29 2c 20 74 68 65 20  |,M,D or L), the |
00001200  70 61 72 74 0a 6d 61 79  20 62 65 20 63 75 74 20  |part.may be cut |
00001210  64 6f 77 6e 20 66 75 72  74 68 65 72 20 62 79 20  |down further by |
00001220  61 20 4d 49 44 24 2d 6c  69 6b 65 20 6f 70 65 72  |a MID$-like oper|
00001230  61 74 69 6f 6e 2c 20 61  73 20 69 6e 20 42 41 53  |ation, as in BAS|
00001240  49 43 2e 0a 0a 54 68 65  20 66 75 6c 6c 20 3c 69  |IC...The full <i|
00001250  64 3e 20 69 73 20 74 68  65 6e 20 6f 66 20 74 68  |d> is then of th|
00001260  65 20 66 6f 72 6d 20 27  3c 75 70 63 68 61 72 3e  |e form '<upchar>|
00001270  3c 61 72 67 31 3e 3c 61  72 67 32 3e 27 2c 20 77  |<arg1><arg2>', w|
00001280  68 65 72 65 20 3c 75 70  63 68 61 72 3e 20 69 73  |here <upchar> is|
00001290  0a 74 68 65 20 75 70 70  65 72 20 63 61 73 65 20  |.the upper case |
000012a0  73 65 6c 65 63 74 69 6f  6e 20 63 68 61 72 61 63  |selection charac|
000012b0  74 65 72 2c 20 61 6e 64  20 3c 61 72 67 31 3e 20  |ter, and <arg1> |
000012c0  61 6e 64 20 3c 61 72 67  32 3e 20 61 72 65 20 33  |and <arg2> are 3|
000012d0  2d 63 68 61 72 61 63 74  65 72 0a 76 61 6c 75 65  |-character.value|
000012e0  73 20 72 65 70 72 65 73  65 6e 74 69 6e 67 20 74  |s representing t|
000012f0  68 65 20 61 72 67 75 6d  65 6e 74 73 20 66 6f 72  |he arguments for|
00001300  20 74 68 65 20 4d 49 44  24 20 66 75 6e 63 74 69  | the MID$ functi|
00001310  6f 6e 20 28 69 2e 65 2e  20 74 68 65 69 72 20 56  |on (i.e. their V|
00001320  41 4c 20 69 73 0a 74 61  6b 65 6e 29 2e 20 57 68  |AL is.taken). Wh|
00001330  65 6e 20 61 20 76 61 6c  75 65 20 69 73 20 6e 65  |en a value is ne|
00001340  67 61 74 69 76 65 20 6f  72 20 7a 65 72 6f 2c 20  |gative or zero, |
00001350  74 68 65 20 76 61 6c 75  65 20 4c 45 4e 28 72 24  |the value LEN(r$|
00001360  29 2b 76 61 6c 75 65 20  69 73 20 74 61 6b 65 6e  |)+value is taken|
00001370  2c 0a 77 68 65 72 65 20  72 24 20 69 73 20 74 68  |,.where r$ is th|
00001380  65 20 70 61 74 68 6e 61  6d 65 20 70 61 72 74 20  |e pathname part |
00001390  73 65 6c 65 63 74 65 64  2e 0a 0a 53 6f 6d 65 20  |selected...Some |
000013a0  65 78 61 6d 70 6c 65 73  20 3a 0a 0a 2d 2d 2d 2d  |examples :..----|
000013b0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
000013e0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 0a  |---------------.|
000013f0  20 3c 69 64 3e 20 20 20  20 20 52 65 73 75 6c 74  | <id>     Result|
00001400  20 66 6f 72 20 65 78 61  6d 70 6c 65 20 20 20 20  | for example    |
00001410  20 20 20 20 20 20 20 20  46 75 6e 63 74 69 6f 6e  |        Function|
00001420  0a 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |.---------------|
00001430  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001460  2d 2d 2d 2d 0a 20 46 30  30 31 2d 30 31 20 20 61  |----. F001-01  a|
00001470  64 66 73 3a 3a 6d 79 64  69 73 63 2e 24 2e 64 69  |dfs::mydisc.$.di|
00001480  72 31 2e 64 69 72 32 2e  66 72 65 20 20 4d 49 44  |r1.dir2.fre  MID|
00001490  24 28 72 24 2c 31 2c 4c  45 4e 72 24 2d 31 29 0a  |$(r$,1,LENr$-1).|
000014a0  20 44 30 30 33 30 30 35  20 20 64 69 72 31 2e 20  | D003005  dir1. |
000014b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000014c0  20 20 20 20 20 20 20 20  4d 49 44 24 28 72 24 2c  |        MID$(r$,|
000014d0  33 2c 35 29 0a 20 4c 2d  30 32 30 30 32 20 20 72  |3,5). L-02002  r|
000014e0  65 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |e               |
000014f0  20 20 20 20 20 20 20 20  20 20 20 20 20 4d 49 44  |             MID|
00001500  24 28 72 24 2c 4c 45 4e  72 24 2d 32 2c 32 29 0a  |$(r$,LENr$-2,2).|
00001510  20 46 30 30 32 30 30 30  20 20 64 66 73 3a 3a 6d  | F002000  dfs::m|
00001520  79 64 69 73 63 2e 24 2e  64 69 72 31 2e 64 69 72  |ydisc.$.dir1.dir|
00001530  32 2e 66 72 65 64 20 20  4d 49 44 24 28 72 24 2c  |2.fred  MID$(r$,|
00001540  32 2c 4c 45 4e 72 24 29  3d 4d 49 44 24 28 72 24  |2,LENr$)=MID$(r$|
00001550  2c 32 29 0a 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |,2).------------|
00001560  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001590  2d 2d 2d 2d 2d 2d 2d 0a  0a 54 68 65 20 70 6f 77  |-------..The pow|
000015a0  65 72 20 6f 66 20 74 68  69 73 20 73 63 68 65 6d  |er of this schem|
000015b0  65 20 77 69 6c 6c 20 62  65 20 64 65 6d 6f 6e 73  |e will be demons|
000015c0  74 72 61 74 65 64 20 62  79 20 67 69 76 69 6e 67  |trated by giving|
000015d0  20 61 20 66 65 77 20 65  78 61 6d 70 6c 65 20 63  | a few example c|
000015e0  6f 6d 6d 61 6e 64 0a 6c  69 6e 65 20 64 65 66 69  |ommand.line defi|
000015f0  6e 69 74 69 6f 6e 73 20  3a 0a 0a 2d 2d 2d 2d 2d  |nitions :..-----|
00001600  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001640  0a 20 44 65 66 69 6e 69  74 69 6f 6e 20 20 20 20  |. Definition    |
00001650  20 20 20 20 20 20 20 20  20 52 65 73 75 6c 74 20  |         Result |
00001660  66 6f 72 20 65 78 61 6d  70 6c 65 0a 2d 2d 2d 2d  |for example.----|
00001670  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
000016b0  2d 0a 20 52 65 6e 61 6d  65 20 25 66 20 25 66 21  |-. Rename %f %f!|
000016c0  20 20 20 20 20 20 20 20  20 20 41 70 70 65 6e 64  |          Append|
000016d0  73 20 61 20 27 21 27 20  74 6f 20 74 68 65 20 65  |s a '!' to the e|
000016e0  6e 64 20 6f 66 20 74 68  65 20 6f 62 6a 65 63 74  |nd of the object|
000016f0  27 73 20 6e 61 6d 65 0a  20 52 65 6e 61 6d 65 20  |'s name. Rename |
00001700  25 66 20 25 70 2e 25 4c  30 30 31 30 30 32 20 20  |%f %p.%L001002  |
00001710  54 72 75 6e 63 61 74 65  73 20 6c 65 61 66 6e 61  |Truncates leafna|
00001720  6d 65 20 74 6f 20 66 69  72 73 74 20 74 77 6f 20  |me to first two |
00001730  63 68 61 72 61 63 74 65  72 73 0a 20 52 65 6e 61  |characters. Rena|
00001740  6d 65 20 25 66 20 25 70  2e 25 4c 30 30 31 2d 30  |me %f %p.%L001-0|
00001750  31 20 20 43 75 74 73 20  6f 66 66 20 6c 61 73 74  |1  Cuts off last|
00001760  20 63 68 61 72 61 63 74  65 72 20 6f 66 20 6c 65  | character of le|
00001770  61 66 6e 61 6d 65 0a 20  52 65 6e 61 6d 65 20 25  |afname. Rename %|
00001780  66 20 25 70 2e 25 4c 30  30 32 30 30 30 20 20 43  |f %p.%L002000  C|
00001790  75 74 73 20 6f 66 66 20  66 69 72 73 74 20 63 68  |uts off first ch|
000017a0  61 72 61 63 74 65 72 20  6f 66 20 6c 65 61 66 6e  |aracter of leafn|
000017b0  61 6d 65 0a 20 52 65 6e  61 6d 65 20 25 66 20 25  |ame. Rename %f %|
000017c0  73 3a 3a 25 6d 2e 24 2e  25 6c 20 20 4d 6f 76 65  |s::%m.$.%l  Move|
000017d0  20 6f 62 6a 65 63 74 20  74 6f 20 72 6f 6f 74 20  | object to root |
000017e0  6f 66 20 6d 65 64 69 61  20 69 74 27 73 20 6f 6e  |of media it's on|
000017f0  0a 20 41 63 63 65 73 73  20 25 66 20 57 52 20 20  |. Access %f WR  |
00001800  20 20 20 20 20 20 20 20  20 53 65 74 20 6f 62 6a  |         Set obj|
00001810  65 63 74 27 73 20 61 63  63 65 73 73 20 74 6f 20  |ect's access to |
00001820  70 75 62 6c 69 63 20 77  72 69 74 65 2f 72 65 61  |public write/rea|
00001830  64 0a 20 53 65 74 54 79  70 65 20 25 66 20 31 32  |d. SetType %f 12|
00001840  33 20 20 20 20 20 20 20  20 20 53 65 74 20 6f 62  |3         Set ob|
00001850  6a 65 63 74 27 73 20 66  69 6c 65 74 79 70 65 20  |ject's filetype |
00001860  74 6f 20 26 31 32 33 0a  20 4e 61 6d 65 64 69 73  |to &123. Namedis|
00001870  6b 20 3a 25 6d 20 25 6c  20 20 20 20 20 20 20 20  |k :%m %l        |
00001880  4e 61 6d 65 73 20 74 68  65 20 6f 62 6a 65 63 74  |Names the object|
00001890  27 73 20 64 69 73 63 20  27 66 72 65 64 27 0a 20  |'s disc 'fred'. |
000018a0  54 79 70 65 20 25 66 20  2d 54 61 62 45 78 70 61  |Type %f -TabExpa|
000018b0  6e 64 20 20 20 20 20 2a  54 79 70 65 73 20 66 69  |nd     *Types fi|
000018c0  6c 65 2c 20 77 69 74 68  20 54 41 42 20 65 78 70  |le, with TAB exp|
000018d0  61 6e 73 69 6f 6e 0a 20  44 75 6d 70 20 25 66 20  |ansion. Dump %f |
000018e0  31 30 30 30 20 20 20 20  20 20 20 20 20 20 20 2a  |1000           *|
000018f0  44 75 6d 70 73 20 66 69  6c 65 2c 20 66 72 6f 6d  |Dumps file, from|
00001900  20 50 54 52 3d 26 31 30  30 30 20 6f 6e 77 61 72  | PTR=&1000 onwar|
00001910  64 73 0a 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |ds.-------------|
00001920  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001950  2d 2d 2d 2d 2d 2d 2d 2d  0a 0a 0a 2f 2f 0a 2f 2f  |--------...//.//|
00001960  0a 2f 2f 20 4b 65 79 20  64 65 66 69 6e 69 74 69  |.// Key definiti|
00001970  6f 6e 73 0a 2f 2f 0a 2f  2f 0a 0a 46 69 6c 65 41  |ons.//.//..FileA|
00001980  63 74 20 63 61 6e 20 61  6c 73 6f 20 65 78 65 63  |ct can also exec|
00001990  75 74 65 20 73 70 65 63  69 66 69 63 20 63 6f 6d  |ute specific com|
000019a0  6d 61 6e 64 20 6c 69 6e  65 73 20 6f 6e 20 64 65  |mand lines on de|
000019b0  74 65 63 74 69 6e 67 20  73 70 65 63 69 66 69 63  |tecting specific|
000019c0  0a 6b 65 79 70 72 65 73  73 65 73 2e 0a 0a 54 6f  |.keypresses...To|
000019d0  20 75 73 65 20 74 68 69  73 20 66 65 61 74 75 72  | use this featur|
000019e0  65 20 79 6f 75 20 68 61  76 65 20 74 6f 20 63 72  |e you have to cr|
000019f0  65 61 74 65 20 61 20 6b  65 79 20 64 65 66 69 6e  |eate a key defin|
00001a00  69 74 69 6f 6e 20 66 69  6c 65 2c 20 63 6f 6e 74  |ition file, cont|
00001a10  61 69 6e 69 6e 67 20 61  0a 6c 69 73 74 20 6f 66  |aining a.list of|
00001a20  20 6b 65 79 70 72 65 73  73 65 73 20 74 6f 20 62  | keypresses to b|
00001a30  65 20 64 65 74 65 63 74  65 64 2c 20 61 6e 64 20  |e detected, and |
00001a40  74 68 65 20 63 6f 72 72  65 73 70 6f 6e 64 69 6e  |the correspondin|
00001a50  67 20 63 6f 6d 6d 61 6e  64 20 6c 69 6e 65 20 74  |g command line t|
00001a60  6f 0a 65 78 65 63 75 74  65 2e 0a 0a 54 68 65 20  |o.execute...The |
00001a70  6b 65 79 20 64 65 66 69  6e 69 74 69 6f 6e 20 66  |key definition f|
00001a80  69 6c 65 20 73 69 6d 70  6c 79 20 63 6f 6e 73 69  |ile simply consi|
00001a90  73 74 73 20 6f 66 20 61  20 6e 75 6d 62 65 72 20  |sts of a number |
00001aa0  6f 66 20 64 65 66 69 6e  69 74 69 6f 6e 20 6c 69  |of definition li|
00001ab0  6e 65 73 2e 20 41 0a 64  65 66 69 6e 69 74 69 6f  |nes. A.definitio|
00001ac0  6e 20 6c 69 6e 65 20 73  74 61 72 74 73 20 77 69  |n line starts wi|
00001ad0  74 68 20 61 20 6b 65 79  20 74 6f 6b 65 6e 2c 20  |th a key token, |
00001ae0  66 6f 6c 6c 6f 77 65 64  20 62 79 20 61 20 73 69  |followed by a si|
00001af0  6e 67 6c 65 20 73 70 61  63 65 0a 63 68 61 72 61  |ngle space.chara|
00001b00  63 74 65 72 2c 20 66 6f  6c 6c 6f 77 65 64 20 62  |cter, followed b|
00001b10  79 20 74 68 65 20 63 6f  6d 6d 61 6e 64 20 6c 69  |y the command li|
00001b20  6e 65 20 74 6f 20 65 78  65 63 75 74 65 2e 20 49  |ne to execute. I|
00001b30  66 20 74 68 65 20 6b 65  79 20 74 6f 6b 65 6e 20  |f the key token |
00001b40  69 73 20 6e 6f 74 0a 72  65 63 6f 67 6e 69 7a 65  |is not.recognize|
00001b50  64 2c 20 74 68 65 20 64  65 66 69 6e 69 74 69 6f  |d, the definitio|
00001b60  6e 20 6c 69 6e 65 20 69  73 20 69 67 6e 6f 72 65  |n line is ignore|
00001b70  64 20 28 79 6f 75 20 6d  61 79 20 75 73 65 20 74  |d (you may use t|
00001b80  68 69 73 20 74 6f 20 69  6e 73 65 72 74 0a 63 6f  |his to insert.co|
00001b90  6d 6d 65 6e 74 73 29 2e  0a 0a 41 20 76 61 6c 69  |mments)...A vali|
00001ba0  64 20 6b 65 79 20 74 6f  6b 65 6e 20 63 6f 6e 73  |d key token cons|
00001bb0  69 73 74 73 20 6f 66 20  61 20 73 69 6e 67 6c 65  |ists of a single|
00001bc0  20 63 68 61 72 61 63 74  65 72 20 73 70 65 63 69  | character speci|
00001bd0  66 79 69 6e 67 20 74 68  65 20 27 73 70 65 63 69  |fying the 'speci|
00001be0  61 6c 27 20 6b 65 79 0a  74 6f 20 62 65 20 70 72  |al' key.to be pr|
00001bf0  65 73 73 65 64 2c 20 66  6f 6c 6c 6f 77 65 64 20  |essed, followed |
00001c00  62 79 20 61 6e 20 75 70  70 65 72 63 61 73 65 20  |by an uppercase |
00001c10  41 2e 2e 5a 20 6f 72 20  30 2e 2e 39 2c 20 6f 72  |A..Z or 0..9, or|
00001c20  20 27 54 41 42 27 20 28  66 6f 72 20 74 68 65 20  | 'TAB' (for the |
00001c30  54 41 42 0a 6b 65 79 29  2e 20 54 68 65 20 73 70  |TAB.key). The sp|
00001c40  65 63 69 61 6c 20 6b 65  79 20 63 68 61 72 61 63  |ecial key charac|
00001c50  74 65 72 73 20 61 72 65  20 3a 0a 0a 27 73 27 20  |ters are :..'s' |
00001c60  3a 20 53 48 49 46 54 0a  27 63 27 20 3a 20 43 54  |: SHIFT.'c' : CT|
00001c70  52 4c 0a 27 61 27 20 3a  20 41 4c 54 0a 27 6e 27  |RL.'a' : ALT.'n'|
00001c80  20 3a 20 6e 6f 6e 65 2c  20 69 2e 65 2e 20 74 68  | : none, i.e. th|
00001c90  65 20 6b 65 79 20 6d 75  73 74 20 62 65 20 70 72  |e key must be pr|
00001ca0  65 73 73 65 64 20 6f 6e  20 69 74 73 20 6f 77 6e  |essed on its own|
00001cb0  0a 0a 45 2e 67 2e 20 27  63 48 27 20 6d 65 61 6e  |..E.g. 'cH' mean|
00001cc0  73 20 27 43 54 52 4c 20  61 6e 64 20 48 20 70 72  |s 'CTRL and H pr|
00001cd0  65 73 73 65 64 20 73 69  6d 75 6c 74 61 6e 65 6f  |essed simultaneo|
00001ce0  75 73 6c 79 27 2c 20 27  6e 41 27 20 6d 65 61 6e  |usly', 'nA' mean|
00001cf0  73 20 27 41 20 70 72 65  73 73 65 64 20 6f 6e 0a  |s 'A pressed on.|
00001d00  69 74 73 20 6f 77 6e 27  2c 20 27 73 54 41 42 27  |its own', 'sTAB'|
00001d10  20 6d 65 61 6e 73 20 27  53 48 49 46 54 20 61 6e  | means 'SHIFT an|
00001d20  64 20 54 41 42 20 70 72  65 73 73 65 64 20 73 69  |d TAB pressed si|
00001d30  6d 75 6c 74 61 6e 65 6f  75 73 6c 79 27 2c 20 65  |multaneously', e|
00001d40  74 63 2e 2e 0a 0a 41 6e  20 65 78 61 6d 70 6c 65  |tc....An example|
00001d50  20 6b 65 79 20 64 65 66  69 6e 69 74 69 6f 6e 20  | key definition |
00001d60  66 69 6c 65 20 77 6f 75  6c 64 20 62 65 20 3a 0a  |file would be :.|
00001d70  0a 63 46 20 52 75 6e 20  49 44 45 46 53 3a 3a 34  |.cF Run IDEFS::4|
00001d80  2e 24 2e 21 46 69 6c 65  41 63 74 0a 6e 30 20 46  |.$.!FileAct.n0 F|
00001d90  69 6c 65 72 5f 4f 70 65  6e 44 69 72 20 41 44 46  |iler_OpenDir ADF|
00001da0  53 3a 3a 30 2e 24 0a 0a  54 68 65 20 70 61 74 68  |S::0.$..The path|
00001db0  6e 61 6d 65 20 6f 66 20  74 68 65 20 6b 65 79 20  |name of the key |
00001dc0  64 65 66 69 6e 69 74 69  6f 6e 20 66 69 6c 65 20  |definition file |
00001dd0  69 73 20 27 3c 46 69 6c  65 41 63 74 24 4b 65 79  |is '<FileAct$Key|
00001de0  41 63 74 44 69 72 3e 2e  4b 65 79 44 65 66 73 27  |ActDir>.KeyDefs'|
00001df0  2c 0a 69 2e 65 2e 20 74  68 65 20 73 79 73 74 65  |,.i.e. the syste|
00001e00  6d 20 76 61 72 69 61 62  6c 65 20 27 46 69 6c 65  |m variable 'File|
00001e10  41 63 74 24 4b 65 79 41  63 74 44 69 72 27 20 6d  |Act$KeyActDir' m|
00001e20  75 73 74 20 62 65 20 73  65 74 20 74 6f 20 74 68  |ust be set to th|
00001e30  65 20 64 69 72 65 63 74  6f 72 79 0a 70 61 74 68  |e directory.path|
00001e40  2c 20 77 69 74 68 6f 75  74 20 61 20 74 72 61 69  |, without a trai|
00001e50  6c 69 6e 67 20 27 2e 27  20 28 46 69 6c 65 41 63  |ling '.' (FileAc|
00001e60  74 27 73 20 21 52 75 6e  20 66 69 6c 65 20 69 73  |t's !Run file is|
00001e70  20 61 20 67 6f 6f 64 20  70 6c 61 63 65 20 66 6f  | a good place fo|
00001e80  72 20 74 68 69 73 29 2c  0a 61 6e 64 20 79 6f 75  |r this),.and you|
00001e90  72 20 6b 65 79 20 64 65  66 69 6e 69 74 69 6f 6e  |r key definition|
00001ea0  20 66 69 6c 65 20 6d 75  73 74 20 62 65 20 63 61  | file must be ca|
00001eb0  6c 6c 65 64 20 27 4b 65  79 44 65 66 73 27 20 61  |lled 'KeyDefs' a|
00001ec0  6e 64 20 70 6c 61 63 65  64 20 69 6e 20 74 68 61  |nd placed in tha|
00001ed0  74 0a 64 69 72 65 63 74  6f 72 79 2e 20 54 68 65  |t.directory. The|
00001ee0  20 21 52 75 6e 20 66 69  6c 65 20 74 68 61 74 20  | !Run file that |
00001ef0  63 6f 6d 65 73 20 77 69  74 68 20 79 6f 75 72 20  |comes with your |
00001f00  21 46 69 6c 65 41 63 74  20 63 6f 70 79 20 6d 61  |!FileAct copy ma|
00001f10  79 20 63 6f 6e 74 61 69  6e 0a 73 6f 6d 65 62 6f  |y contain.somebo|
00001f20  64 79 20 65 6c 73 65 73  20 73 65 74 74 69 6e 67  |dy elses setting|
00001f30  20 66 6f 72 20 27 46 69  6c 65 41 63 74 24 4b 65  | for 'FileAct$Ke|
00001f40  79 41 63 74 44 69 72 27  2c 20 73 6f 20 79 6f 75  |yActDir', so you|
00001f50  20 70 72 6f 62 61 62 6c  79 20 77 61 6e 74 20 74  | probably want t|
00001f60  6f 0a 63 68 61 6e 67 65  20 74 68 69 73 20 74 6f  |o.change this to|
00001f70  20 79 6f 75 72 20 6f 77  6e 2e 20 49 66 20 74 68  | your own. If th|
00001f80  65 20 27 46 69 6c 65 41  63 74 24 4b 65 79 41 63  |e 'FileAct$KeyAc|
00001f90  74 44 69 72 27 20 73 79  73 74 65 6d 20 76 61 72  |tDir' system var|
00001fa0  69 61 62 6c 65 20 69 73  0a 75 6e 64 65 66 69 6e  |iable is.undefin|
00001fb0  65 64 20 6f 6e 20 73 74  61 72 74 75 70 2c 20 6f  |ed on startup, o|
00001fc0  72 20 69 66 20 74 68 65  20 64 69 72 65 63 74 6f  |r if the directo|
00001fd0  72 79 20 74 68 61 74 20  69 74 20 70 6f 69 6e 74  |ry that it point|
00001fe0  73 20 74 6f 20 64 6f 65  73 20 6e 6f 74 20 65 78  |s to does not ex|
00001ff0  69 73 74 2c 0a 6f 72 20  69 66 20 74 68 65 20 64  |ist,.or if the d|
00002000  65 66 69 6e 69 74 69 6f  6e 20 66 69 6c 65 20 27  |efinition file '|
00002010  4b 65 79 44 65 66 73 27  20 63 61 6e 6e 6f 74 20  |KeyDefs' cannot |
00002020  62 65 20 66 6f 75 6e 64  20 69 6e 20 74 68 61 74  |be found in that|
00002030  20 64 69 72 65 63 74 6f  72 79 2c 0a 46 69 6c 65  | directory,.File|
00002040  41 63 74 27 73 20 6b 65  79 70 72 65 73 73 20 66  |Act's keypress f|
00002050  75 6e 63 74 69 6f 6e 73  20 77 69 6c 6c 20 62 65  |unctions will be|
00002060  20 73 69 6c 65 6e 74 6c  79 20 64 69 73 61 62 6c  | silently disabl|
00002070  65 64 2e 0a 0a 54 68 65  72 65 20 69 73 20 61 6e  |ed...There is an|
00002080  20 65 78 61 6d 70 6c 65  20 6b 65 79 20 64 65 66  | example key def|
00002090  69 6e 69 74 69 6f 6e 20  64 69 72 65 63 74 6f 72  |inition director|
000020a0  79 20 63 61 6c 6c 65 64  20 27 4b 65 79 41 63 74  |y called 'KeyAct|
000020b0  44 69 72 27 20 69 6e 73  69 64 65 20 74 68 65 0a  |Dir' inside the.|
000020c0  21 46 69 6c 65 41 63 74  2e 45 78 61 6d 70 6c 65  |!FileAct.Example|
000020d0  73 20 64 69 72 65 63 74  6f 72 79 2e 0a 0a 4e 4f  |s directory...NO|
000020e0  54 45 20 3a 20 46 69 6c  65 41 63 74 20 77 69 6c  |TE : FileAct wil|
000020f0  6c 20 6f 6e 6c 79 20 74  72 79 20 74 6f 20 64 65  |l only try to de|
00002100  74 65 63 74 20 6b 65 79  70 72 65 73 73 65 73 20  |tect keypresses |
00002110  69 66 20 74 68 65 20 63  61 72 65 74 20 69 73 20  |if the caret is |
00002120  27 64 69 73 6f 77 6e 65  64 27 0a 28 69 2e 65 2e  |'disowned'.(i.e.|
00002130  20 69 66 20 69 74 20 69  73 20 6e 6f 74 20 75 73  | if it is not us|
00002140  65 64 20 62 79 20 61 6e  79 20 61 70 70 6c 69 63  |ed by any applic|
00002150  61 74 69 6f 6e 29 2c 20  62 65 63 61 75 73 65 20  |ation), because |
00002160  6f 74 68 65 72 77 69 73  65 20 61 6c 6c 20 6b 65  |otherwise all ke|
00002170  79 70 72 65 73 73 65 73  0a 74 68 61 74 20 68 61  |ypresses.that ha|
00002180  76 65 20 61 20 27 46 69  6c 65 41 63 74 20 64 65  |ve a 'FileAct de|
00002190  66 69 6e 69 74 69 6f 6e  27 20 77 6f 75 6c 64 20  |finition' would |
000021a0  63 61 75 73 65 20 74 77  6f 20 64 69 66 66 65 72  |cause two differ|
000021b0  65 6e 74 20 74 68 69 6e  67 73 20 74 6f 20 68 61  |ent things to ha|
000021c0  70 70 65 6e 0a 61 74 20  74 68 65 20 73 61 6d 65  |ppen.at the same|
000021d0  20 74 69 6d 65 2e 20 45  2e 67 2e 20 70 72 65 73  | time. E.g. pres|
000021e0  73 69 6e 67 20 27 30 27  20 69 6e 20 61 20 77 72  |sing '0' in a wr|
000021f0  69 74 61 62 6c 65 20 69  63 6f 6e 20 77 6f 75 6c  |itable icon woul|
00002200  64 20 6e 6f 74 20 6f 6e  6c 79 20 69 6e 73 65 72  |d not only inser|
00002210  74 0a 61 20 27 30 27 20  62 75 74 20 61 6c 73 6f  |t.a '0' but also|
00002220  20 63 61 75 73 65 20 46  69 6c 65 41 63 74 27 73  | cause FileAct's|
00002230  20 27 6e 30 27 20 64 65  66 69 6e 69 74 69 6f 6e  | 'n0' definition|
00002240  20 74 6f 20 62 65 20 65  78 65 63 75 74 65 64 20  | to be executed |
00002250  65 61 63 68 20 74 69 6d  65 2e 0a 0a 52 45 4c 41  |each time...RELA|
00002260  54 45 44 20 4e 4f 54 45  20 3a 20 50 72 65 73 73  |TED NOTE : Press|
00002270  69 6e 67 20 74 68 65 20  72 69 67 68 74 2d 68 61  |ing the right-ha|
00002280  6e 64 20 41 4c 54 20 6b  65 79 20 61 6e 64 20 74  |nd ALT key and t|
00002290  68 65 20 72 69 67 68 74  2d 68 61 6e 64 20 43 54  |he right-hand CT|
000022a0  52 4c 20 6b 65 79 0a 74  6f 67 65 74 68 65 72 20  |RL key.together |
000022b0  69 73 20 70 72 65 2d 70  72 6f 67 72 61 6d 6d 65  |is pre-programme|
000022c0  64 20 74 6f 20 64 69 73  6f 77 6e 20 74 68 65 20  |d to disown the |
000022d0  63 61 72 65 74 2c 20 65  6e 61 62 6c 69 6e 67 20  |caret, enabling |
000022e0  46 69 6c 65 41 63 74 20  74 6f 20 72 65 61 63 74  |FileAct to react|
000022f0  20 74 6f 0a 6b 65 79 70  72 65 73 73 65 73 20 69  | to.keypresses i|
00002300  6d 6d 65 64 69 61 74 65  6c 79 20 61 66 74 65 72  |mmediately after|
00002310  77 61 72 64 73 2e 0a 0a  0a 2f 2f 0a 2f 2f 0a 2f  |wards....//.//./|
00002320  2f 20 54 68 65 20 27 53  74 61 74 75 73 27 20 6d  |/ The 'Status' m|
00002330  65 6e 75 0a 2f 2f 0a 2f  2f 0a 0a 49 6e 20 74 68  |enu.//.//..In th|
00002340  69 73 20 6d 65 6e 75 20  79 6f 75 20 63 61 6e 20  |is menu you can |
00002350  6d 61 6e 69 70 75 6c 61  74 65 20 46 69 6c 65 41  |manipulate FileA|
00002360  63 74 27 73 20 27 73 74  61 74 75 73 27 2c 20 77  |ct's 'status', w|
00002370  68 69 63 68 20 63 6f 6e  73 69 73 74 73 20 6f 66  |hich consists of|
00002380  20 61 0a 6e 75 6d 62 65  72 20 6f 66 20 63 6f 6e  | a.number of con|
00002390  66 69 67 75 72 61 74 69  6f 6e 20 73 65 74 74 69  |figuration setti|
000023a0  6e 67 73 2e 0a 0a 2d 20  27 53 61 76 65 27 20 77  |ngs...- 'Save' w|
000023b0  69 6c 6c 20 73 61 76 65  20 74 68 65 20 63 75 72  |ill save the cur|
000023c0  72 65 6e 74 20 73 74 61  74 75 73 2e 0a 2d 20 27  |rent status..- '|
000023d0  4c 6f 61 64 27 20 77 69  6c 6c 20 6c 6f 61 64 20  |Load' will load |
000023e0  74 68 65 20 73 61 76 65  64 20 73 74 61 74 75 73  |the saved status|
000023f0  2e 0a 2d 20 27 44 65 66  61 75 6c 74 27 20 77 69  |..- 'Default' wi|
00002400  6c 6c 20 6c 6f 61 64 20  74 68 65 20 64 65 66 61  |ll load the defa|
00002410  75 6c 74 20 73 74 61 74  75 73 2e 0a 2d 20 27 4b  |ult status..- 'K|
00002420  69 6c 6c 27 20 77 69 6c  6c 20 72 65 6d 6f 76 65  |ill' will remove|
00002430  20 74 68 65 20 73 61 76  65 64 20 73 74 61 74 75  | the saved statu|
00002440  73 2e 0a 0a 57 68 65 6e  20 46 69 6c 65 41 63 74  |s...When FileAct|
00002450  20 73 74 61 72 74 73 20  75 70 20 69 74 20 6c 6f  | starts up it lo|
00002460  61 64 73 20 74 68 65 20  73 61 76 65 64 20 73 74  |ads the saved st|
00002470  61 74 75 73 2c 20 6f 72  20 74 68 65 20 64 65 66  |atus, or the def|
00002480  61 75 6c 74 20 73 74 61  74 75 73 20 69 66 0a 74  |ault status if.t|
00002490  68 65 72 65 20 69 73 20  6e 6f 20 73 61 76 65 64  |here is no saved|
000024a0  20 73 74 61 74 75 73 2e  0a 0a 54 68 65 20 73 74  | status...The st|
000024b0  61 74 75 73 20 63 6f 6e  73 69 73 74 73 20 6f 66  |atus consists of|
000024c0  20 74 68 65 20 27 41 63  74 69 6f 6e 73 27 20 61  | the 'Actions' a|
000024d0  6e 64 20 27 4f 70 74 69  6f 6e 73 27 20 73 65 74  |nd 'Options' set|
000024e0  74 69 6e 67 73 2e 0a 0a  0a 2f 2f 0a 2f 2f 0a 2f  |tings....//.//./|
000024f0  2f 20 45 70 69 6c 6f 67  75 65 0a 2f 2f 0a 2f 2f  |/ Epilogue.//.//|
00002500  0a 0a 55 70 64 61 74 65  73 20 6f 66 20 46 69 6c  |..Updates of Fil|
00002510  65 41 63 74 20 77 69 6c  6c 20 62 65 20 6d 61 64  |eAct will be mad|
00002520  65 20 61 76 61 69 6c 61  62 6c 65 20 62 79 20 28  |e available by (|
00002530  69 6e 20 6f 72 64 65 72  20 6f 66 20 70 72 65 66  |in order of pref|
00002540  65 72 65 6e 63 65 29 20  3a 0a 0a 2d 20 57 6f 72  |erence) :..- Wor|
00002550  6c 64 20 57 69 64 65 20  57 65 62 2c 20 6f 6e 20  |ld Wide Web, on |
00002560  77 77 77 2e 69 6e 74 65  72 2e 6e 6c 2e 6e 65 74  |www.inter.nl.net|
00002570  2f 75 73 65 72 73 2f 4a  2e 4b 6f 72 74 69 6e 6b  |/users/J.Kortink|
00002580  2e 0a 2d 20 45 6c 65 63  74 72 6f 6e 69 63 20 6d  |..- Electronic m|
00002590  61 69 6c 2c 20 74 6f 20  6b 6f 72 74 69 6e 6b 40  |ail, to kortink@|
000025a0  69 6e 74 65 72 2e 6e 6c  2e 6e 65 74 2e 0a 2d 20  |inter.nl.net..- |
000025b0  53 6e 61 69 6c 20 6d 61  69 6c 2c 20 74 6f 20 3a  |Snail mail, to :|
000025c0  20 4a 6f 68 6e 20 4b 6f  72 74 69 6e 6b 2c 20 4e  | John Kortink, N|
000025d0  75 74 74 65 72 62 72 69  6e 6b 20 33 31 2c 20 37  |utterbrink 31, 7|
000025e0  35 34 34 20 57 4a 20 45  6e 73 63 68 65 64 65 2c  |544 WJ Enschede,|
000025f0  20 54 68 65 0a 20 20 4e  65 74 68 65 72 6c 61 6e  | The.  Netherlan|
00002600  64 73 2e 20 49 6e 63 6c  75 64 65 20 61 20 44 44  |ds. Include a DD|
00002610  20 6f 72 20 48 44 20 66  6c 6f 70 70 79 2c 20 72  | or HD floppy, r|
00002620  65 74 75 72 6e 20 65 6e  76 65 6c 6f 70 65 20 61  |eturn envelope a|
00002630  6e 64 20 6f 6e 65 0a 20  20 49 6e 74 65 72 6e 61  |nd one.  Interna|
00002640  74 69 6f 6e 61 6c 20 52  65 70 6c 79 20 43 6f 75  |tional Reply Cou|
00002650  70 6f 6e 20 28 49 52 43  29 2e 0a 0a              |pon (IRC)...|
0000265c