home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************/
- /* This EXEC contains the Communications function group definitions. */
- /* */
- /* ==> MCW 09/03/90 <== */
- /* */
- /* Copyright © 1990 Martin C. Warnett. */
- /************************************************************************/
-
- trace off
-
- parse arg PortName /* Get port name passed */
-
- if PortName ~= "" then do /* Was port name passed? */
- address VALUE PortName /* Make it the default port */
- end
-
- 'ClearFunctions' /* Delete existing buttons */
-
- 'DefineFunction 1 TagAll TagAll' /* Select all files */
- 'DefineFunction 2 Reset Reset' /* Deselect all files */
- 'DefineFunction Run CDSource 3 Shell NewShell NEWCON:0/50/640/100/AmigaShell'
- 'DefineFunction Sleep TargetRefresh 5 Copy copy FROM &sf TO &tf COM'
- 'DefineFunction Sleep TargetRefresh 6 CopyAll copy FROM &sf TO &tf COM ALL'
- 'DefineFunction Sleep Confirm SourceRefresh 7 Erase delete &sf'
- 'DefineFunction Sleep Confirm SourceRefresh 8 EraseAll delete &sf ALL'
- 'DefineFunction Sleep SourceRefresh TargetRefresh 9 Rename rename FROM &sf TO &tf'
- 'DefineFunction Run 10 More more &sf'
-
- 'DefineFunction NoSelect Run 13 BIX HardDisk:Communications/ATalk3 FROM BixApp.scr'
- 'DefineFunction NoSelect Run 14 BIXNews HardDisk:Communications/ATalk3 FROM BixNewsApp.scr'
-
- 'DefineFunction Console=2 CDSource SourceRefresh ARexx 29 Extract Extract &SF'
- 'DefineFunction Console=2 CDSource SourceRefresh 30 Compress LHArc -x a &tf &sa'
- 'DefineFunction Console=2 CDSource SourceRefresh 31 UnShar UnShar &sf'
-
- 'RedrawFunctions'
-
- return 0
-