-- Combine script from GaryDave.com -- Special thanks go to Michael Samiec for pointing out things I do that don't make sense. macroScript Combine category:"DavesTools" buttonText:"Attach Selection" toolTip:"Combine" Icon:#("PolyTools",16) ( convertToPoly selection countlimit = 50 while selection.count > 1 and countlimit > 0 do ( convertToPoly selection[2] polyop.attach selection[1] selection[2] print countlimit countlimit-=1 ) )