Hey I found something!
SirEdric posted a script on this the pigs fly forum, I can't post a link

maybe it's cause I'm new?
Anyway, for future reference, just pop this in the 'frame saved script'.
- Code: Select all
path, name = string.match(filename, "^(.+[/\\])(.+)")
name, extension = string.match(name, "^(.+)(%..+)$")
barename, sequence = string.match(name, "^(.-)(%d+)$")
print("bare:"..barename..extension)
os.remove(path..barename..extension)
os.rename(filename, path..barename..extension)
os.remove(filename)
Works a treat!
Thanks
Pete