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() 

