Hi, i found a bug inside Py3dsMax, when i hide a Dialog/Window or Max Window the Dialog disapears and I can’t call it back as if it had been closed.
Here is an exemple of a code wich gives me problems:
class window(blurdev.gui.Window):
def init( self, parent = None ):
super(window, self).init(parent)
self.setWindowTitle(‘Windowtest’)
win = window()
win.show()
Could you please help me solving this problem ?