> Suppose I am using a GnomeApp widget from pygnome. > > Call it: > > win=GnomeApp() > > Now, what is really needed for me in order to access this instance's > methods from another app! > > I'd really appreciate a small detailed script of what an idl would > look like! The Gnome project might have an idl for GnomeApp, but I'm not sure. Once you have that, you should be able to compile the module and use it in your python script. Of course, you could start with the Types.idl and make your own idl for GnomeApp modeled after that. There may be CORBA features you need which the idl compiler doesn't yet support (structures for instance). Justin