Hello!
I am attempting to create a file name from two separate lists; to facilitate incoming pictures from a camera taking time-lapse photos. The incoming image is stored in a folder and can change between '0007.jpg', '0013.jpg' and '0123.jpg', just using those examples to display different formats. The main prob is setting up a [open $1( that can call these possibilities; the varying precursors 0, 00 and 000 cause the problem). It's just the way the camera indexes and can't be changed so I'm trying to deal with it in PD.
I've tried the following:
[000( [2 \
| |
|
| [symbol(
| |
[list2symbol]
|
[02 \
note my main prob: instead of result becoming 0002 as wanted the extra 00s are dropped to read just 02.
How do I keep the 0s in the resulting symbol or use an alternative method for what I'm attempting to achieve? This is just the first step, next step I will input the data into a [makefilename %s.jpg] that can will result in 0002.jpg
I hope this makes sense outside of my head!
Thanks.