17 Jan
2002
17 Jan
'02
2:10 p.m.
hello juergen, i think this will give you really unique id's... part of a python script # get a unique id in context for an object id = len(context.objectIds()) # get the number of objects in context => maybe already a free id? while hasattr(context,str(id)): # to be sure: test if id exists already and search for a free id... id = id + 1 return(str(id)) # and that's what we need... hope this will get you through... mjablonski