SelectAll();
var oSel = GetValue("SelectionList");
DeselectAll();
for (var i=0;i<oSel.count;i++){
if (oSel(i).type == "polymsh" || oSel(i).type == "surfmsh") {
var oCls = oSel(i).ActivePrimitive.Geometry.Clusters;
if (oCls.count>0) {
for (var j=0;j<oCls.count;j++) {
if (oCls(j).type=="sample") DeleteObj(oCls(j));
};
};
};
};
habia un pequeño error, sobraba una 'l', aqui lo tienes arreglado.