home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Name : Hatch
- Created : 2-May-93
- Programmer : Urban Lindeskog
- Organisation : ProNova SoftWare Development Group
- Purpose : To Provide a more friendly interface
- to FHatch.
- */
-
- OPTIONS RESULTS
- OPTIONS FAILAT 15
-
- replace=""
-
- address Command
-
- 'Run Welcome LEFT "/Pictures/BigDisk" RIGHT "/Pictures/BigPNLogo" TEXT "Hatching files" COLUMNS 80 ROWS 10'
- 'Wait 1'
-
- address WELCOME
-
- REQUESTSTRING '"Enter full path for file:" "DL:"'
- filename=result
-
- REQUESTSTRING '"Enter Area:"'
- area=result
-
- REQUESTSTRING '"Enter File-Comment:"'
- comment=result
-
- ASK '"Replace File?" " Yes " " No "'
- if result then do
- REQUESTSTRING '"File to Replace:"'
- replace=result
- end
-
- TITLE 'RIGHT "/Pictures/BigHand" TEXT "Working... "'
-
- address Command
- 'Copy "'filename'" "FILE:'area'"'
- 'FHatch MAIL:Tick.cfg "'filename'" "'area'" "'comment'" "'replace'"'
-
- address WELCOME
- 'QUIT'
-