Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
my question is if it is possible to hide the title and the minimize and maximize buttons... I only need the close window button and to be able to move it to any place on the screen by moving it.
Any example you can give me?
def showUI():
myWin = cmds.window(title="Fit Timeline", widthHeight=(240, 48), tlb=False, mb=False)
cmds.columnLayout(adjustableColumn=True)
cmds.button(label="Select Keys", command=select_key_range)
cmds.button(label="Restore Timeline", command=restore_timeline)
cmds.showWindow(myWin)
showUI()
import maya.cmds as cmds
window = cmds.window(title="", widthHeight=(200, 200))
cmds.showWindow(window)
cmds.window(window, edit=True, menuBar=False, minimizeButton=False, maximizeButton=False)
a major breakthrough... now I just want to remove the title... any suggestions?
Solved! Go to Solution.