Numbering images for ascent
gym4jim
Joined: 2012-08-07
Posts: 51 |
Posted: Sat, 2012-08-11 16:38 | |||
I am having a bit of a problem figuring out how I can get these photos to go in numeric ascending order. Can anyone tell me what I am missing, not being a programmer (see attached)! Thanks. Jim
|
||||
Posts: 1857
Add leading zeros so that all the leading numbers have the same number of digits. (Be sure to plan forward; if you'll have more than 99 photos in an album, you'll eventually need three digits.)
Add spaces after the numbers, before the words.
Edit album > Sort by Title > Ascending.
Posts: 51
Thank you. I originally I had three digit numbers as that works in other programs but it wouldn't work. It would go 1,10,11,12,2,2o, etc., or something like that. So I endedup using letters. But the one thing I missed was leaving the space. I thuoght you couldn't leave a space in file names. BUt if it works I'm gonna do it!
Thanks again.
Posts: 1857
(1) The space is in the title, not necessarily the filename.
(2) The leading zeros are more important than the spaces.
Without zeros: 1, 10, 11, 12, ... 19, 2, 20, ...
With zeros: 001, 002, 003, ... 009, 010, 011, ...
Posts: 51
Thank you very much!!