Ben Ocean wrote: > > import string > > def concatFrame(str): > frame = string.join(str,'_frame') > return frame Just a small note; 'str' is the name of a python builtin function, you may end up confusing yourself if you use it a lot as a variable name. I get the same with 'type' ;-) cheers, Chris