vote up 0 vote down star

hi developers, how can i get current focused window id using objective c, the return value should be an int, help is highly appreciated! I just need to get the following line working

CGImageRef windowImage = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, winNum, kCGWindowImageBoundsIgnoreFraming);

but no matter which window that i focus at, winNum is always 0.

flag

0% accept rate

2 Answers

vote up -1 vote down

i have tried it out, but no matter which window that i focus at, winNum is always 0, any idea or am i missing anything? I just need to get the following line working

CGImageRef windowImage = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, winNum, kCGWindowImageBoundsIgnoreFraming);

*please note that i'm not trying to get the window id of my own application. it should be an application that i'm focusing at

link|flag
That's because keyWindow is only looking at windows in your application. Check this question for leads: stackoverflow.com/questions/891801/… – Kenny Winker Nov 7 at 11:16
2  
This is a question-and-answer site. You posted this as an answer to your question, but it's obviously not an answer. If you want to add to your question, just edit it. – Chuck Nov 7 at 13:32
vote up 3 vote down
NSWindow *keyTarget = [[NSApplication sharedApplication] keyWindow];
NSInteger winNum = [keyTarget windowNumber];

or in one line:

[[[NSApplication sharedApplication] keyWindow] windowNumber];
link|flag
Perfect username + icon. – nall Nov 7 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.