> I don't use pymel, but I do use Python and pickle in Maya ;) From > your above example, it looks like x is a tuple with two strings in > it? Or is pymel storing more complex objects as the name > representation of the nodes rather than strings?
yeah, pymel represents nodes as instances of a PyNode class, not simple strings. these node class instances themselves store instances of the underlying api objects that they represent, so this data has to be rebuilt. strings are so 2006 ;) -chad --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/python_inside_maya -~----------~----~----~----~------~----~------~--~---
