Hi Lean
I'm sorry but I have no idea what you are asking. It looks like you tried to include a picture but for me, at least, it doesn't show.
Can you try to ask your question a little more clearly, in greater detail? And if you have a code sample, please either include it inline if it is short, or use pastebin or gist if it is sizable. Much appreciated.
I promise if you take the time to formulate a clear question, that you will most definitely receive a clear response.
Justin
--
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_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/088ade29-9cf3-44cb-889c-a9234b70c829%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
# create a sphere and group it, then hide the sphere and the group.
cmds.sphere( n='sphere1' )
cmds.group( n='group1' )
cmds.hide( 'group1', 'sphere1' )
# Error: TypeError: file <maya console> line 6: 'bool' object is not callable # I just pasted from Maya python Help and example thtat hides some Objects
The strange thing is thats it gives me an error as soon as I try it out.
Dont understand what could be the problem as Its a code from the help.
...
--
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_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/1759cd52-556b-456e-837f-ceaf72570aa2%40googlegroups.com.
I just pasted from Maya python Help and example thtat hides some Objects
The strange thing is thats it gives me an error as soon as I try it out.
Dont understand what could be the problem as Its a code from the help.
...