Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!usc!apple!stevec From: stevec@Apple.COM (Steve Christensen) Newsgroups: comp.sys.mac.programmer Subject: Re: Drawing in the menu bar, again Message-ID: <9023@goofy.Apple.COM> Date: 6 Jul 90 21:15:40 GMT References: Organization: Apple Computer Inc., Cupertino, CA Lines: 11 In article Jon Joshua writes: >I want to draw something into the menu bar. Is there a way that I >could use CopyBits() to do the dirty work? I am stuck because >CopyBits() clips and does not include the menu bar. Yes, and it's really easy. First, save the clipRgn of the port you're drawing into, and then set it to something big enough to include the menu bar. Something like a rectangle with bounds (-32700,-32700,32700,32700) should do. Do the CopyBits() as usual, then restore the clipRgn. steve