Re: fullscreen quicktime across multiple monitors

2008-10-17 Thread Memo Akten
I ended up writing a little app that plays a movie across all displays. If anyone else needs it (or has some advice to make it better) its here http://www.memo.tv/msa_qt_player_fullscreen_quicktime_player_across_multiple_video_outs --- Memo (Mehmet S.

Re: fullscreen quicktime across multiple monitors

2008-09-22 Thread Memo Akten
ah thanks, will try it out. On 21 Sep 2008, at 23:19, Jean-Daniel Dupas wrote: You are free to setup a window yourself , add a QTMovieView in it, and display it as you need. NSRect contents = [aScreen frame]; contents.origin = NSZeroPoint; NSWindow *window = [super initWithContentRect:conten

Re: fullscreen quicktime across multiple monitors

2008-09-21 Thread Jean-Daniel Dupas
You are free to setup a window yourself , add a QTMovieView in it, and display it as you need. NSRect contents = [aScreen frame]; contents.origin = NSZeroPoint; NSWindow *window = [super initWithContentRect:contents styleMask:NSBorderlessWindowMas

Re: fullscreen quicktime across multiple monitors

2008-09-21 Thread Memo Akten
hmm, yea does seem a bit problematic. so is it not possible to play quicktime across multiple monitors then? those threads seem to have not come to a solution... On 19 Sep 2008, at 17:48, Sean McBride wrote: It does, doesn't it. However, it has lots of little problems, and is only re

Re: fullscreen quicktime across multiple monitors

2008-09-19 Thread Sean McBride
It does, doesn't it. However, it has lots of little problems, and is only really useful for the simplest of cases. Search the list archives for "enterFullScreenMode". On 9/19/08 9:42 AM, Memo Akten said: >wow that looks perfect thanks.. > >On 19 Sep 2008, at 05:10, John C. Randolph wrote: > >>

Re: fullscreen quicktime across multiple monitors

2008-09-19 Thread Memo Akten
THanks, i'll look in to all that.. though I think for now NSView enterFullScreenMode:withOptions: may be quite good On 19 Sep 2008, at 05:13, Michael Ash wrote: On Wed, Sep 17, 2008 at 3:03 PM, Memo Akten <[EMAIL PROTECTED]> wrote: Hi All, I'd like to create a little app the runs a quickt

Re: fullscreen quicktime across multiple monitors

2008-09-19 Thread Memo Akten
wow that looks perfect thanks.. On 19 Sep 2008, at 05:10, John C. Randolph wrote: On Sep 17, 2008, at 12:03 PM, Memo Akten wrote: Hi All, I'd like to create a little app the runs a quicktime movie (prores) fullscreen across multiple monitors. I think I can figure out the QTKit stuff, but

Re: fullscreen quicktime across multiple monitors

2008-09-18 Thread Michael Ash
On Wed, Sep 17, 2008 at 3:03 PM, Memo Akten <[EMAIL PROTECTED]> wrote: > Hi All, I'd like to create a little app the runs a quicktime movie (prores) > fullscreen across multiple monitors. I think I can figure out the QTKit > stuff, but couldn't find upto date documentation on going fullscreen. I've

Re: fullscreen quicktime across multiple monitors

2008-09-18 Thread John C. Randolph
On Sep 17, 2008, at 12:03 PM, Memo Akten wrote: Hi All, I'd like to create a little app the runs a quicktime movie (prores) fullscreen across multiple monitors. I think I can figure out the QTKit stuff, but couldn't find upto date documentation on going fullscreen. I've found some code sni