get first file name of image sequence

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
pirelouit
Posts: 18
Joined: January 16th, 2006, 12:08 pm

Hi! What would be the best way to get the name of the first file of an image sequence?

The reason I need this is that on some instances, import truncates the name of image sequences and I need my script to set the timecode accordingly with the first frame of the image sequence.

Thanks for the help
Paul Tuersley
Posts: 704
Joined: June 5th, 2004, 7:59 am
Location: London, UK

Here's a quick example that returns the full untruncated name of the first file in an image sequence (this script assumes it's the first file in the project window) :

Code: Select all

{
items = app.project.items;
alert(items[1].file.name);
}
The important part is .file.name, if you just use .name it will return the name as shown in the project window.
Post Reply