Message 1 of 3
Not applicable
12-22-2017
05:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to align button to the right and create checkbox to the left.
I want to display button and checkbox in one line .Thank you
Code:
import maya.cmds as cmds
cmds.window( width=200 )
cmds.columnLayout( adjustableColumn=False )
cmds.button( label='Submit Job',width=130,align='right')
cmds.checkBox(label='Scout Job')
cmds.showWindow()
Output
Expected Output
Solved! Go to Solution.