Create window with maya cmds
py
import maya.cmds as cmds
info = cmds.window("sssss", title='ml :: ', iconName="aaaa", width=300, height=20)
cmds.columnLayout( adjustableColumn=True )
cmds.text( label='Current scene already exist!' )
cmds.button( label='Close', command=('cmds.deleteUI(\"' + info + '\", window=True)') )
cmds.setParent( '..' )
cmds.showWindow( info )