I am trying to create a site-specific browser application. I’ve created a new Cocoa app, added a WebView to my window, and am loading up the page. The page contains a Flash movie, which can be controlled via the keyboard. I’d like to wire up some menu commands to trigger the actions, presumably by simulating the keystrokes.
I’ve traversed the view hierarchy and have found the NSView that contains the movie (with class name “WebHostedNetscapePluginView”). But I’m stuck at the point of sending it keys. I tried using CGEventCreateKeyboardEvent() but the input keeps going to the top-level WebView rather than the subview containing the movie.
I tried [[webView window] makeFirstResponder: _myView] to set the target for the input.
Is CGEventCreateKeyboardEvent() the right function here and, if so, how do I get it to my target NSView?
Many thanks in advance.
My original answer would only work if the window was active. I also wanted it to work when the window was hidden, and came up with the code below.
This works for ordinary keys (Enter, Space, arrow keys, etc.). It uses keycodes so it won’t work for letters and symbols that might move around based on the user’s language and region.
And it doesn’t handle modifier keys like Command. If someone can figure that out I will gladly give them credit for the answer to this question.
You must first locate the Flash widget in the browser; pass your WebView to this.