[Maya-Python Club:1464] Re: vxPython to create GUI in maya?

2009-01-14 Thread Jo Jürgens
is there any way to get qt to work inside 8.5, or is that limited to 2008/python 2.5 and upwards On Wed, Jan 14, 2009 at 7:32 PM, na arthur wrote: > Sounds very cool.. only way I was check out wxPython was due to the license > issue.. thank you very much every one for the answere... > > oh is th

[Maya-Python Club:1463] Re: supress warning message

2009-01-14 Thread Sylvain Berger
Thanks for the help... this is a good workaround, unfortunatly it's really messy to capture the command return in a python variable. I think i'll live with the warnings On Wed, Jan 14, 2009 at 11:49 AM, John Creson wrote: > catchQuiet is built to do this, but is in mel only... > So use mel.eval

[Maya-Python Club:1462] Re: vxPython to create GUI in maya?

2009-01-14 Thread na arthur
Sounds very cool.. only way I was check out wxPython was due to the license issue.. thank you very much every one for the answere... oh is this mean I can use Qt designer to desing GUI as well? 2009/1/14 Ian Jones > > And todays news that Qt is going LGPL may speed up a lot of other > develope

[Maya-Python Club:1461] Re: vxPython to create GUI in maya?

2009-01-14 Thread Ian Jones
And todays news that Qt is going LGPL may speed up a lot of other developers adoption. http://www.qtsoftware.com/about/licensing On Jan 14, 9:43 am, "Jamie Macdougall" wrote: > hey, > I don't know about vxPython, only wxPython. Autodesk is moving their > UIs over to QT though, so maybe that is

[Maya-Python Club:1460] Re: vxPython to create GUI in maya?

2009-01-14 Thread Jamie Macdougall
hey, I don't know about vxPython, only wxPython. Autodesk is moving their UIs over to QT though, so maybe that is a good option. cheers Jamie On Wed, Jan 14, 2009 at 9:11 AM, Artonator wrote: > > Hi, > > I have been using MEL to create GUI for my tools and found vxPython > and I think it`s pre

[Maya-Python Club:1459] vxPython to create GUI in maya?

2009-01-14 Thread Artonator
Hi, I have been using MEL to create GUI for my tools and found vxPython and I think it`s prety cool and it`s free. Anyone have experiance with vxPython for GUI creation for maya? If it`s not the best... what do you guys think is the best module for GUI..well for maya. Thank you, --~--~-

[Maya-Python Club:1458] Re: supress warning message

2009-01-14 Thread John Creson
catchQuiet is built to do this, but is in mel only... So use mel.eval But it doesn't get to the except situation... Though you can use it in mel to quiet an if... * import maya.cmds as cmds import maya.mel as mel circle_X = cmds.circle(c=(1.1,0,0), nr=(0,1,0), s=8)[0] circle_Y = cmds.circle(c=(-1.

[Maya-Python Club:1457] supress warning message

2009-01-14 Thread sberger
Hi, I am trying to suppress maya warning message, but the try:/except: clause don't supress it. Anyone know how to do this? Here is a peice of code that repro the problem import maya.cmds as cmds circle_X = cmds.circle(c=(1.1,0,0), nr=(0,1,0), s=8)[0] circle_Y = cmds.circle(c=(-1.1,0,0), nr=(0,