Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!mailrus!purdue!decwrl!labrea!cascade!leeke From: leeke@cascade.Stanford.EDU (Steven D. Leeke) Newsgroups: comp.sys.mac.programmer Subject: Screen Dumps on a Mac II Message-ID: <1243@cascade.Stanford.EDU> Date: 26 Nov 88 16:41:16 GMT Reply-To: leeke@cascade.UUCP (Steven D. Leeke) Organization: Stanford University Center for Integrated Systems Lines: 28 In response to my question about mac II screen dumps, Capture from Mainstay seems to do a good job - but from the messages I've received it won't include the cursor in a dump. I also wrote the following LSC code fragment to do a dump of the screen programmatically using FKEY 3: /* - */ void screenDump() /* - */ { Handle fkey; fkey = GetResource('FKEY',3); if (fkey != NULL) { CallPascal((*fkey)); }; }; This seems to work well and I've hooked it up to the 'Print Screen' fctn. key on the extended keyboard (f13). Thanks for the help, Steve Leeke leeke@cascade.stanford.edu