Does anyone know if it is possible to send keyboard input to an application that is not in the current responder chain?
I am implementing spring loaded folders in my finder replacement, and would like to get the space bar presses sent to my app whenever any other app is dragging over me. At present, I have it working after a delay by using the validateDrop messages in my tableView delegate, but I would like to support the classic finder style keyboard actions.
I've tried sending [[self window] makeKeyWindow] on my draggingEntered method, but that doesn't seem to work, I call [[self window] isKeyWindow] immediately after, and it returns NO.