hey all, I just noticed an annoying behaviour and was wondering if there was a solution. I have 2 scripts which I wrote, 1 mel, 1 python. To create the main window in mel I use this:
window -title "myWindowTitle" -wh 400 300 -mxb false myFunction; to create the window in python I use this: self.WindowHandle = cmds.window(title=self.windowTitle, maximizeButton=False, widthHeight=(300,300)) the window title for the python script is listed as 'window1', the window title for the mel script is listed correctly as 'myWindowTitle'... is there something I'm missing here or is this functionality missing from the python side of things. thanks -G -- http://groups.google.com/group/python_inside_maya
