home *** CD-ROM | disk | FTP | other *** search
- /*
- FinalDT Script V1.00
-
- (C)Copyright 1996 By Fabio Rotondo
-
- This script will call FinalDT program
- to place an image inside FinalWriter
- using DataTypes.
-
- Author: Fabio Rotondo
- e-mail: fsoft@intercom.it
-
- FinalDT is e-mail ware: if you use it, please send me an e-mail!!!
-
- Check Out FinalTyper, another cool FinalWriter Tool written by me!!!!!
- */
- OPTIONS RESULTS
-
- IF ( ADDLIB("rexxsupport.library", 0, -30, 0) = FALSE) THEN EXIT 20
- WPPort = ADDRESS() /* Here we have to know FinalWriter Port */
-
- ADDRESS VALUE WPPort
- STATUS PAGE INSERT /* In which page will the picture be imported ? */
- Page = RESULT
-
- GetImportPrefs LINKED /* Here we store User Import Graphic Prefs */
- Link = RESULT
-
- ImportPrefs LINKED No /* We force Graphic complete storing inside doc */
-
- ADDRESS command /* Here we call FinalDT */
-
- /*
- **********************************************************
- Change FinalDT Path Here BUT DO NOT CHANGE THE PARAMS !!!
- **********************************************************
- */
- 'Work:Programs/Proggy/MyProgs/FinalDT '|| WPPort || ' ' || Page
-
-
- ADDRESS VALUE WPPort /* Here we restore User Prefs */
- ImportPrefs LINKED Link
-
- Exit
-