Thanksssss a lot,
with your help, I try it out, but another weird thing in pymel happen:
the code below, notice the "text(label = "Set X Y Z Range Values")"
#error: 'unicode' object is not callable
I dont know what's going on. if i dont use pymel, things gonna be all
right
Please help, thanks!!
#################################
dWin = window(title="Disperser", wh = (256, 256))
columnLayout()
button(label = "Disperse Selected!", command="disperse()")
text(label = "Set X Y Z Range Values")
rangeField = floatFieldGrp(numberOfFields=3)
showWindow(dWin)
#################################