get LWJGL display to focus

googled all day and could not find anything on the subject.

is there a way to requestFocus(); for lwjgl display?

it is inside a jframe and i would like for it to be focused every time the mouse hovers it.

there is also other swing components in this program that do take focus from time to time.

The LWJGL Display has no requestFocus() method, however if you are using using Display.setParent() or AWTGLCanvas (as your question implies) then you just need to request focus on the Canvas that LWJGL sits on (the parent Canvas).

i have tried several variations of this but i cant seem to get it to work. i want it to be able to get key input using Keyboard class when the mouse is inside the display but its not working :confused: