home *** CD-ROM | disk | FTP | other *** search
- on createXtraInstance
- -- Create instance of PrintOmatic Lite xtra
- set doc = new(xtra "PrintOmatic_Lite")
-
- return (doc) -- returns the Print instance for use
-
- end
-
- on deleteXtraInstance doc
- -- delete the xtra instance
-
- set doc = 0
-
- end
-
- on PrintDocument doc
- -- Prints if user clicks on Print in the Print dialog box
- -- if doJobSetup(doc) then print doc
-
- --print doc
- printPreview(doc)
-
- end
-
-