I try to move the window in the upper left corner of the screen. The screen 
does not move though. Here is my test code:

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
int main()
{
Fl_Window win(400, 400,"Test Window");
win.position(1,1);
win.show();
return Fl::run();
}

So what do I need to do to move the window?

Georg 

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to