self.outliner = cmds.outlinerPanel() # gives me outliner
#Edit tabs layout
cmds.tabLayout( 'tabLayout', edit=True, tabLabel=((self.widgets["mainLayout"], 'PMS'), (self.outliner,"Outliner"),(self.widgets["settingsTabLayout"] , 'Settings'))
well the first and last tabs are layout but when I am trying to put Outliner it is name of window and not any layout
so how should i put outliner to tabLayout as one of tab ?
I also had it somewhat working by creating a columLayout and then parenting it to the outliner=cmds.outlinerPanel() and the columnLayout being child of tablayout except it just shows up according to height of the window
https://lh6.googleusercontent.com/-Cp1pWdmgNfY/UL7fdaBW_II/AAAAAAAADd8/-Nhx8EKB2Mg/s512/theproblemo.PNG
how would u translate control -e -p $tabLayout_1 outlinerPanel1Window; to python, i mean i managed to do cmds.control(e=true, parent=“tablayout outlinerLayout” ) ?
I have Outliner tabbed to my gui through this way
====The layout====
#outliner tab
self.widgets["outlinerLayout"]=cmds.columnLayout("outlinerLayout", h=300,adjustableColumn=True,parent="tabLayout")
cmds.OutlinerWindow()
myOut= cmds.outlinerPanel()
cmds.control(myOut, edit=True, parent="outlinerLayout")
but the problem stays it does get docked inside as second tab with outliner but it doesnt show up of full height… like other tabs are showing fine…