[PD] Concatenating floats

2012-10-01 Thread Rick T
Greetings All I'm trying export time to a file in the format MMDDhhmmss but it doesn't concatenate MM DD hh mm ss when I use the pack object. I can export the data to a file but how do I concatenate everything together so it outputs as MMDDhhmmss with no spaces in-between? Aloha

Re: [PD] Concatenating floats

2012-10-01 Thread Marian Weger
Am 01.10.12 12:14, schrieb Rick T: Greetings All I'm trying export time to a file in the format MMDDhhmmss but it doesn't concatenate MM DD hh mm ss when I use the pack object. put a messagebox below the pack: [$1$2$3$4$5$6( cheers, marian

Re: [PD] Concatenating floats

2012-10-01 Thread i go bananas
if you just use $1 for something like 07, then it will cut off the leading zero (which in this case, you need) so might be best just to split everything into individual floats, like: [ 1 9 7 8 0 7 2 9 0 9 3 0 2 1 ( and then just feed that into a big compound message like [

Re: [PD] Concatenating floats

2012-10-01 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2012-10-01 12:35, i go bananas wrote: if you just use $1 for something like 07, then it will cut off the leading zero (which in this case, you need) so might be best just to split everything into individual floats, like: [ 1 9 7 8 0 7 2 9

Re: [PD] Concatenating floats

2012-10-01 Thread Rick T
Thanks for the info but two issues that pop up when I try this are 1) when I use zexy date and time object there's no option for leading zeros if I split everything out as floats. 2) when I pipe the messagebox [ $1$2$3$4$5$6$7$8$9$10$11$12$13$14 ] into the | add $1 | textfile it just prints 0;

Re: [PD] Concatenating floats

2012-10-01 Thread Roman Haefeli
On Mon, 2012-10-01 at 00:14 -1000, Rick T wrote: Greetings All I'm trying export time to a file in the format MMDDhhmmss but it doesn't concatenate MM DD hh mm ss when I use the pack object. I can export the data to a file but how do I concatenate everything together so it outputs

Re: [PD] Concatenating floats

2012-10-01 Thread Rick T
Thanks that made it work :-) Aloha On Tue, Oct 2, 2012 at 1:24 AM, Roman Haefeli reduz...@gmail.com wrote: On Mon, 2012-10-01 at 00:14 -1000, Rick T wrote: Greetings All I'm trying export time to a file in the format MMDDhhmmss but it doesn't concatenate MM DD hh mm ss when I

Re: [PD] Concatenating floats

2012-10-01 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2012-10-01 13:23, Rick T wrote: Thanks for the info but two issues that pop up when I try this are 1) when I use zexy date and time object there's no option for leading zeros so you can hook the [makefilename %02d] directly to [date]/[time].