In this case, you can write this MEL script to look for the 'unknown' node(s):
ls -type unknown;
A list of unknown node(s) will be generated.
You can delete them by typing:
delete `ls -type unknown`;
By deleting the unknown nodes, the problem should be solved. =]
UPDATED 12.01.2010 :
Thank you to Ariel for adding extra info.
If it says "Cannot delete locked node", make sure you get the name of that node and select it, and then type:
lockNode -l 0;
Then type again:ls -type unknown;
delete `ls -type unknown`;
That should do it.
This comment has been removed by the author.
ReplyDeleteremember, "None" in Mel, just do "" //XD XD
ReplyDeleteThanks for this post. But I get an error saying: "Cannot delete locked node". Is there any way around this?
ReplyDeleteif its says "Cannot delete locked node", make sure you get the name of that node and select it, and then type lockNode -l 0;
ReplyDeletethen type again ls -type unknown; then
delete `ls -type unknown`;
your good to go. :)
how to select the node?
DeleteThank You!
ReplyDeletethanks
ReplyDelete