On Friday, October 31, 2014 at 10:59:08 PM UTC+7, Fredrik Averpil wrote: > Yes, however, that just simply does not work at all. > > Try this; > for ref in cmds.ls(references=True): > cmds.referenceEdit( ref, removeEdits=True) > > > Here in my scene, nothing happens. No reference edits was removed. > > > > > > On Fri, Oct 31, 2014 at 11:56 AM, Eduardo Grana <[email protected]> wrote: > > > > > have you tryed the referenceEdit command with the flag removeEdits? > > > >
Hi Frederik, I faced the same issue with you, searching all over google. And i think i found the problem. it seems you need to use failedEdits and successfulEdits flags into it. ex: cmds.referenceEdit( ref, removeEdits=True, failedEdits =True, successfulEdits =True) Good Luck ! Gemilang Rahmandhika -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/69a5c9e5-fcdd-4bb1-b5c0-1bd183cd21a7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
