Hey,

Its because createHair is a MEL script and not a real exported command...

// IN MEL
whatIs createHair;
// Result: Script found in: 
/Applications/Autodesk/maya2012/Maya.app/Contents/scripts/others/createHair.mel 
//

You can access it from python via:
import maya.mel as mm
result = mm.eval("createHair")

-- justin



On Nov 26, 2011, at 5:12 AM, rudi wrote:

> Hi,
> Quick question:
> Why there isn“t createHair() command in python?
> 
> cheers
> 
> -- 
> view archives: http://groups.google.com/group/python_inside_maya
> change your subscription settings: 
> http://groups.google.com/group/python_inside_maya/subscribe

-- 
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: 
http://groups.google.com/group/python_inside_maya/subscribe

Reply via email to