Hello everyone, does anyone know the command to create a layout like the connectionEditor which has an adjustable vertical divider bar?
Here http://download.autodesk.com/global/docs/maya2014/en\_us/CommandsPython/paneLayout.html
#Python examples
import maya.cmds as cmds
cmds.window()cmds.paneLayout( configuration='vertical2' )cmds.textScrollList( append=['one', 'two', 'three'] )cmds.textScrollList( append=['one', 'two', 'three'] )cmds.showWindow()
paneLayout!!! thank you Charlie:)