Re: lion/mt. lion: preventing qtmovieview from taking key strokes

2012-09-18 Thread Matthew Weinstein
So problem solved by having a subclass of QTMovieView check in overridden performKeyEquivalent: whether it's firstResponder and returning NO if it isn't and passing to super if it is. On Sep 15, 2012, at 4:28 PM, Eric Wing wrote: > On 9/15/12, Matthew Weinstein wrote: >> Dear programmers, >> I

Re: lion/mt. lion: preventing qtmovieview from taking key strokes

2012-09-15 Thread Eric Wing
On 9/15/12, Matthew Weinstein wrote: > Dear programmers, > I have a window with a nstextview and a qtmovieview.. The problem is that > the movieview steals all of the keystrokes so the left and right arrow keys > never make it to the nstextview. I have tried subclassing qtmovieview and > capturing

lion/mt. lion: preventing qtmovieview from taking key strokes

2012-09-15 Thread Matthew Weinstein
Dear programmers, I have a window with a nstextview and a qtmovieview.. The problem is that the movieview steals all of the keystrokes so the left and right arrow keys never make it to the nstextview. I have tried subclassing qtmovieview and capturing keydown and keyup, but that didn't work... H