[PD] Re: PD-list digest, Vol 1 #1334 - 9 msgs

Kjetil Svalastog Matheussen k.s.matheussen at notam02.no
Wed Aug 4 12:43:50 CEST 2004


On Wed, 4 Aug 2004 pd-list-request at iem.at wrote:

> Send PD-list mailing list submissions to
> 	pd-list at iem.at
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> 	http://iem.at/cgi-bin/mailman/listinfo/pd-list
> or, via email, send a message with subject or body 'help' to
> 	pd-list-request at iem.at
> 
> You can reach the person managing the list at
> 	pd-list-admin at iem.at
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of PD-list digest..."
> 
> 
> Today's Topics:
> 
>    1. how can i cut a word in separate letters? (erstens at gmx.ch)
>    2. Re: how can i cut a word in separate letters? (IOhannes m zmoelnig)
>    3. Re: how can i cut a word in separate letters? (stotz)
>    4. Gem 3D text and video? (shree)
>    5. newbie ? - quantize controller data (Mark Casey)
>    6. Re: newbie ? - quantize controller data (IOhannes m zmoelnig)
>    7. Re: newbie ? - quantize controller data (matthew jones)
>    8. Re: prob bug, was:Re: Opening patch takes 100% CPU for several minutes (Hans-Christoph Steiner)
>    9. pd 0.37 devel audio in (Matthew Nish-Lapidus)
> 
> --__--__--
> 
> Message: 1
> Date: Tue, 3 Aug 2004 11:32:48 +0200 (MEST)
> From: erstens at gmx.ch
> To: pd-list at iem.at
> Subject: [PD] how can i cut a word in separate letters?
> 
> hi list
> my question:
> i want cut a word in separate letters,
> for exemple: "hello" in a symbol-box will give
> five separate symbol-boxes:"h" "e" "l" "l" "o".......
> i dont have found a solution.....
> thanks for any helps...


Another solution to the two mentioned, is to use k_guile. Where the scheme 
script looks something like this:

(pd-outlets 50)

(pd-inlet 0 'any
	  (lambda (a)
	    (let ((n 0))
	      (for-each (lambda (c)
			  (pd-outlet n (symbol c))
			  (set! n (1+ n)))
			(string->list (symbol->string a))))))


Just promoting my stuff. :)
You can probably make a shorter solution with the pyext external.


-- 




More information about the Pd-list mailing list