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
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
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