Has anyone noticed this seems to give you an object in oCls but you can't
actually get any of its properties :-
for oCls in oClusters :
if ( oCls.type == constants.siSampledPointCluster ):
oCluster = oCls
break
t = oCls.Elements # ERROR!
But this works just fine:-
for i in range( oClusters.count ) :
oCls = oClusters(i)
if ( oCls.type == constants.siSampledPointCluster ):
oCluster = oCls
break
t = oCls.Elements # Works
www.kim-aldis.co.uk | kim(at)kim-aldis.co.uk
---
Unsubscribe? Mail Majordomo(at)Softimage.COM with the following text in body:
unsubscribe xsi