For my OSX application. I have a main window with some output. On a button click a new window will pop up with a drawing on its NSView. I am making this second window transparent by setting its background color as transparent with RGB values as 0.0 and also alpha 0.0. So now my second window just have this random drawing on a transparent background. I have put both the windows in the same xib file.
My problem is that, the transparent window with a drawing that pops up is not draggable. I have overriden mouseDragged: (NSEvent *) in my secondwindow:NSWindow class. But still it is not draggable. This method should work when I try to drag my transparent window using trackpad right ? Any help would be very much appreciated . Thanks in advance