home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- userAlert("Printing is not available in the Demonstration version of Sources of Faith.")
- end
-
- on printTheField
- global fieldNum
- openXLib("Sources of Faith:MMMovies:PrintExt.obj")
- set pObj to PrintXobj(mnew)
- set fieldNum to the castNum of sprite 24
- pObj(mSetText, field fieldNum)
- pObj(mSetBodyFont, "Palatino")
- pObj(mSetBodySize, 18)
- pObj(mSetFooter, "Extract from 'Sources of Faith'")
- pObj(mSetFooterFont, "Helvetica")
- pObj(mSetFooterSize, 12)
- pObj(mSetLeftMargin, 30)
- pObj(mSetTopMargin, 40)
- pObj(mSetRightMargin, 515)
- pObj(mSetBottomMargin, 800)
- set ErrMessage to pObj(mPrint)
- if ErrMessage <> EMPTY then
- userAlert(ErrMessage)
- end if
- put pObj(mdispose)
- closeXLib("Sources of Faith:MMMovies:PrintExt.obj")
- end
-