diff options
author | das <das> | 2002-10-09 11:54:02 (GMT) |
---|---|---|
committer | das <das> | 2002-10-09 11:54:02 (GMT) |
commit | 5451c5041622ded8cdbc5b63e4b5a1ed14a31de6 (patch) | |
tree | fcd14750217863bb89fa52d2ccf756a933b9a514 /mac/AppleScript.html | |
parent | 22cf6ccfd778871f2ac0415b10e303a0af281e06 (diff) | |
download | tcl-5451c5041622ded8cdbc5b63e4b5a1ed14a31de6.zip tcl-5451c5041622ded8cdbc5b63e4b5a1ed14a31de6.tar.gz tcl-5451c5041622ded8cdbc5b63e4b5a1ed14a31de6.tar.bz2 |
* generic/tclInt.decls: made TclSetPreInitScript() declaration
generic as it is used on mac & aqua as well.
* generic/tclIntDecls.h:
* generic/tclStubInit.c: regen.
* generic/tclCompile.h: added prototype for TclCompileVariableCmd.
* mac/tclMacPort.h: removed incorrect <fcntl.h> definitions
and obsolete <stat.h> definitions.
* mac/tclMacChan.c: removed obsolete GetOpenMode() and replaced
associated constants with the <fcntl.h> analogues (they existing
defs were inconsistent with <fcntl.h> which was causing havoc when
Tcl_GetOpenMode was used instead of private GetOpenMode).
* mac/tclMacFCmd.c: removed GenerateUniqueName(), use equivalent
(and identiaclly named) routine from MoreFiles instead.
* mac/tclMacLoad.c: CONSTification, fixes to Vince's last changes.
* mac/tclMacFile.c:
* mac/tclMacTest.c:
* mac/tclMacUnix.c: CONSTification.
* mac/tclMacOSA.c: CONSTificcation, sprintf fixes, UH 3.4.x changes;
fix for missing autoname token from TclOSACompileCmd. (bdesgraupes)
* mac/AppleScript.html(AppleScript delete): doc fix. (bdesgraupes)
* mac/tcltkMacBuildSupport.sea.hqx: updated MoreFiles to 1.5.3,
updated build instructions for 8.4.
* mac/tclMacProjects.sea.hqx: rebuilt archive.
Diffstat (limited to 'mac/AppleScript.html')
-rw-r--r-- | mac/AppleScript.html | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/mac/AppleScript.html b/mac/AppleScript.html index 4a73fbb..32b2e9f 100644 --- a/mac/AppleScript.html +++ b/mac/AppleScript.html @@ -23,7 +23,7 @@ AppleScript - Communicate with the AppleScript OSA component to run <BR> <B>AppleScript <A NAME="decompile">decompile</A></B> <I>scriptName</I> <BR> -<B>AppleScript delete </B><I>scriptName</I> +<B>AppleScript <A NAME="delete">delete</A> </B><I>what scriptName</I> <BR> <B>AppleScript <A NAME="execute">execute</A> </B><I>?flags value?</I> <I>scriptData1 ?scriptData2 ...?</I> @@ -153,11 +153,25 @@ The possible sub-commands are: and returns the source code. <P> <DT> - <I>AppleScript</I> <B>delete </B><I>scriptName</I> + <I>AppleScript</I> <B><A NAME="delete">delete</A> </B><I>what scriptName</I> <BR> <DD> - This deletes the script data compiled into the script scriptName, - and frees up all the resources associated with it. + This deletes contexts or script data. The allowed values for "what" are: + <P> + <DL> + <DT> + <P> + <B>context</B> + <DD> + This deletes the context scriptName, + and frees up all the resources associated with it. + <DT> + <P> + <B>script</B> + <DD> + This deletes the script data compiled into the script scriptName, + and frees up all the resources associated with it. + </DL> <P> <DT> <I>AppleScript</I> <B><A NAME="execute">execute</A> </B><I>?flags value?</I> <I>scriptData1 |