Hi all,
is there a possibility in Pd to add a variable to a message, without adding a space in between? (i try to save different versions of a changing array)
thanks !
juto
example :
#N canvas 142 132 667 304 10; #X obj 58 47 table tosave 50; #X msg 113 163 ; tosave write name 30.txt; #X obj 52 138 bng 15 250 50 0 empty empty empty 0 -6 32 8 -262144 -1 -1; #X floatatom 112 106 5 0 0 0 - - -; #X msg 112 139 set , add , add2 tosave write name $1.txt; #X text 151 198 impossible to get a continuous name HELP!; #X text 24 122 save button; #X text 68 91 file version number; #X connect 2 0 1 0; #X connect 3 0 4 0; #X connect 4 0 1 0;
Hi all
Does anyone use an RME Hammerfall PCI card under Linux ?
Though I follow exactly all the steps explained in the PlanetCCRMA site, my card is detected but doesn't work (same situation following the ALSA page) ; I heard it may be related to the newest Hammerfall cards only ;
I have a copy of the error messages and I can post it if it helps.
Thanks,
J
--- julien.breval@tremplin-utc.net wrote:
Hi all
Does anyone use an RME Hammerfall PCI card under Linux ?
Though I follow exactly all the steps explained in the PlanetCCRMA site, my card is detected but doesn't work (same situation following the ALSA page) ; I heard it may be related to the newest Hammerfall cards only ;
I have a copy of the error messages and I can post it if it helps.
I fought with the same card a few days ago and with no luck. It appears to stem from a firmware mismatch. There is some info about this on the Details page for this card in the ALSA soundcard matrix, including advice for downgrading firmware to get it to work.
http://alsa-project.org/alsa-doc/doc-php/template.php3?company=RME&card=...
Kevin
===== "I should prefer this note not be read or, if skimmed, that it should be forgotten." - Mallarme
Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com
Hello juto,
ja> is there a possibility in Pd to add a variable to a message, without ja> adding a space in between? ja> (i try to save different versions of a changing array)
sure, use [makefilename ] from the Zexy lib (ftp://ftp.iem.at/pd/Externals/ZEXY/)
here is your fixed patch:
#N canvas 490 212 669 513 10; #X obj 342 191 table tosave 50; #X msg 103 178 ; tosave write name74.txt; #X obj 42 149 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X floatatom 103 29 5 0 0 0 - - -; #X text 14 133 save button; #X text 144 27 file version number; #X msg 103 104 set , add , add2 tosave write $1; #X obj 103 75 makefilename name%d.txt; #X text 109 231 impossible to get a continuous name HELP! *FIXED* :p ; #X connect 2 0 1 0; #X connect 3 0 7 0; #X connect 6 0 1 0; #X connect 7 0 6 0;