home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Global Amiga Experience
/
globalamigaexperience.iso
/
text_dtp
/
editor
/
turbotext
/
rexx
/
saveblk.ttx
< prev
next >
Wrap
Text File
|
1995-07-10
|
983b
|
51 lines
/** $VER: SaveBlk.ttx 2.0 (27.8.93)
**
** Save the currently selected block to a file on disk.
**/
OPTIONS RESULTS
OPTIONS FAILAT 21
PARSE ARG file
GetCursorPos
PARSE VAR RESULT cursorLine cursorColumn .
GetBlkInfo
PARSE VAR RESULT blockActive verticalBlock blockLine blockColumn .
IF blockActive = "ON" THEN DO
SetDisplayLock ON
/* save current contents of clipboard to the end of the file */
SetBookmark 0
MoveEOF
SetBookmark 191 /* pick a number, any number... */
PasteClip
MoveBookmark 0
/* save the current block */
CopyBlk
SaveClip file
/* restore the previous contents of the clipboard */
MoveBookmark 191
ClearBookmark 191
MarkBlk
MoveEOF
CutBlk
/* remark the selected block */
Move blockLine blockColumn
IF verticalBlock = "ON" THEN
MarkBlk VERTICAL
ELSE DO
MarkBlk
END
Move cursorLine cursorColumn
CenterView OFF
SetDisplayLock OFF
END