home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-05 | 803 b | 41 lines | [TEXT/MPS ] |
- -- this is a general purpose launcher for both Acrobat and other app and files
-
-
- object GML_LAUNCHER is ANY
- has
- Open(theDoc)
- theDoc is? STRING;
- external "MyLauncherOpen";
-
- ChapterOpen(theDoc) -- this is the new method 11/27/95
- theDoc is? STRING;
- external "MyChapterOpen";
-
- AcrobatOpen(theDoc)
- theDoc is? STRING;
- external "MyAcroLauncherOpen";
-
- GotoPage(pageNum)
- pageNum is? INTEGER;
- external "MyLauncherGotoPage";
-
- end;
-
-
-
-
- object LAUNCHER_HELPER is ANY
- has
- ThePath; -- the path up to the application, including the delimiter
- TheDelimiter; -- the final char of ThePath, that is, the delimiter
-
- GetParams()
- do
- self.ThePath := oSorter.RelativeFolder.Name;
- self.TheDelimiter := (oSorter.RelativeFolder.Name @ #(oSorter.RelativeFolder.Name));
- end;
- end;
-
-
-
-