I am trying to edit bt_autoUnwrapUVTool.mel (It's the unwrap UV tool with Bonus Tools). {string $FrstSel[] = `ls -sl`;for ($ScndSel in $FrstSel){ select $ScndSel;// Cycles through selection as the tool wont work with multiple objects.// bt_autoUnwrapUVTool; }} I hope to edit bt_autoUnwrapUVTool so that I don't have to…
Figured it out. I had to paste the button commands for every each one along the steps of the tool. This mel script now calls AutoUnwarpUVTools for every object along the selection for Proportional unwrapping. It's useful to unwrap many objects which don't have a seam. For eg. Hairplanes. {string $FrstSel[] = `ls -sl`;for…