Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Blakeasd

macrumors 6502a
Original poster
Dec 29, 2009
643
0
Hello,
I created a file in quartz composer and I put it in a standalone application. I need the user to be able to see the desktop behind it. I tried setting the clear color opacity in IB to 0% however you just see the window behind it. I need the application window to be clear as well as the Quartz Composer so the things happing in the Quartz file appear to be happening over whatever is under the window.
Thanks
 
I suspect you'll want to play with the following three values. Interestingly, when I click on a clear area, I select the window behind it.

Code:
[self.window setBackgroundColor: [NSColor clearColor]];
[self.window setAlphaValue: 0.99];
[self.window setOpaque: NO];
 
Thanks,
I used your code for the window and then I set the Quartz Files clear color opacity to 0%
It Works
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.