Hello Justin Israel, 

I'm watching your videos series "Tutorial : PyQt4 UI Development for maya" 
but I'm working with PySide rather than PyQt.
So I made so changes in your files as shown below : 

#Difference between PyQt4 and PySide in maya

#Import differences
from PyQt4 import QtCore, QtGui
from PySide import QtCore, QtGui

import sip
import shiboken

#Difference between sip and shiboken
mainWin = sip.wrapinstance(long(ptr), QtCore.QObject)
mainWin = shiboken.wrapInstance(long(ptr), QtGui.QWidget)

name = mui.MQtUtil.fullName(long(sip.unwrapinstance(win)))
name = mui.MQtUtil.fullName(long(shiboken.getCppPointer(win)[0]))




In Chapter 06 you are showing channelBox.py
And when I show it with the showChannelBox() class method it works fine I 
have a empty UI with the same height and size, 
But then, when I select an object I only see the object's name (top left)  
and Visibility under it. I don't see the others attribute.

Do you why the UI is not diplaying correctly ?

-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to python_inside_maya+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/9595b13d-2fbe-48d9-90e7-4b76ea18ce2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to