On 2011-07-01 at 23:39, Izzy Soft wrote: > Silly question... but I have to ask it. (:-( > > clutter_actor_set_position( stage, ... ) ? What does this do? > [ stage being the default clutter stage from clutter_stage_get_default() ]
it doesn't do anything. the set_size/position/x/y/with/height setter functions are meant only for the scene graph. a Stage is defined to have a position of (0, 0) in the scene graph. > How do I set the starting position of the Clutter Window on the desktop? you need to use the platform's own API for positioning the native window used by the Stage at the wanted coordinates. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center _______________________________________________ clutter-app-devel-list mailing list [email protected] http://lists.clutter-project.org/listinfo/clutter-app-devel-list
