Re: [PD] [gem] Looking for an abstraction for converting textfiles in text3d string

2013-02-20 Thread Roman Haefeli
On Thu, 2013-02-21 at 01:50 +0100, Charles Goyard wrote: > IOhannes m zmoelnig wrote: > > you can tell [textfile] to use CR/LF/CRLF as line delimiters by > > opening the file in "cr" mode, like > > [open file.txt cr( > > > > then you will need to stop through the lines by [bang(ing [textfile] > >

Re: [PD] Changing the defaul language in 0.43

2013-02-20 Thread Björn Eriksson
Hello, I am following this thread with interest and step by step starting to understand the implications. Just a curious wonder... is it very complicated to implement a new functionality where a specific .msg file is selected and wanted language choosen, at least temporarily until next active choic

Re: [PD] Changing the defaul language in 0.43

2013-02-20 Thread rene beekman
Hans, Thanks for your reply and for the time taken to look into this. For what it's worth, I'm seeing machines that have a locale value of 409, which should be US-English according to this and other tables http://msdn.microsoft.com/en-us/library/ms903928.aspx, still open Pd in localized versions.

Re: [PD] [gem] Looking for an abstraction for converting textfiles in text3d string

2013-02-20 Thread Charles Goyard
IOhannes m zmoelnig wrote: > you can tell [textfile] to use CR/LF/CRLF as line delimiters by > opening the file in "cr" mode, like > [open file.txt cr( > > then you will need to stop through the lines by [bang(ing [textfile] > till the end is reached. if you want to read the entire file at once,

Re: [PD] [gem] Looking for an abstraction for converting textfiles in text3d string

2013-02-20 Thread Charles Goyard
Hi, Santi wrote: > i'm using coll, i must format the text file before using it, but works > great. With a little script in bash it's easy format any text file. Sure, but if I am to modify the file outside pd, I can as well roll a perl script that generates an abstraction with a message box contai

Re: [PD] pd 0.44 vanilla build process

2013-02-20 Thread katja
Jonathan, if you do ./configure with option --prefix=, you can do a local install without su privileges. This doesn't solve the issue with updating but anyway it's convenient. Katja On Wed, Feb 20, 2013 at 11:47 PM, Jonathan Wilkes wrote: > > > > From: IOhannes m

Re: [PD] pd 0.44 vanilla build process

2013-02-20 Thread Jonathan Wilkes
> > From: IOhannes m zmoelnig >To: pd-list@iem.at >Sent: Wednesday, February 20, 2013 1:45 PM >Subject: Re: [PD] pd 0.44 vanilla build process > >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >On 2013-02-20 18:55, Hans-Christoph Steiner wrote: >> >> I'd skip t

Re: [PD] Changing the defaul language in 0.43

2013-02-20 Thread Hans-Christoph Steiner
I'm going to CC the list in case anyone else wants to change this value. Tcl looks at HKEY_CURRENT_USER\Control Panel\International\locale in particular. Its a number. This is not Pd-specific, I imagine its used by lots of apps, and perhaps even the system itself. I wouldn't recommend changi

Re: [PD] using puredata to play playlist gapless

2013-02-20 Thread Rick T
Thanks so much for the help it worked On Tue, Feb 19, 2013 at 11:11 PM, Roman Haefeli wrote: > On Tue, 2013-02-19 at 20:57 -1000, Rick T wrote: >> Yes I have tried giving textfile a bang. Still no sound >> >> I'm not sure what you mean by the second response since I get sound >> when I click

Re: [PD] pd 0.44 vanilla build process

2013-02-20 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-02-20 18:55, Hans-Christoph Steiner wrote: > > I'd skip the copy and just do: > > ./autogen.sh ./configure make ./src/pd -nrt(-nrt so it ignores > the watchdog) > that's not needed with Pd>=0.44: if the watchdog cannot be found, Pd will

Re: [PD] using puredata to play playlist gapless

2013-02-20 Thread Hans-Christoph Steiner
On Feb 19, 2013, at 4:22 PM, Jonathan Wilkes wrote: >> >> From: Scott R. Looney >> To: Hans-Christoph Steiner >> Cc: pd-list >> Sent: Tuesday, February 19, 2013 2:32 PM >> Subject: Re: [PD] using puredata to play playlist gapless >> >> >> there's an interes

Re: [PD] pd 0.44 vanilla build process

2013-02-20 Thread Hans-Christoph Steiner
I'd skip the copy and just do: ./autogen.sh ./configure make ./src/pd -nrt(-nrt so it ignores the watchdog) That's how it works on Pd-extended at least. I don't know how the Pd-vanilla files have changed since they were included in vanilla. .hc On Feb 19, 2013, at 9:55 PM, Jonathan Wilke

[PD] loading libraries rfc

2013-02-20 Thread Jonathan Wilkes
To fix bug #2803987 I need everyone to spend five minutes to help add content for doc/5.reference/all_about_libraries.pd Here's mine: So far I've got three subpatches, with no content yet Here they are with a quick outline of content: 1) How to load libraries * [import] - claims to load into pa

Re: [PD] [gem] Looking for an abstraction for converting textfiles in text3d string

2013-02-20 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-02-19 15:21, Charles Goyard wrote: > Hi, > > almost there. But I don't know why, any2bytes converts my newlines > (10) into spaces (32). > > My input is like : > > line1 line2 line3 > > So textfile returns the whole file at once, which is w

Re: [PD] using puredata to play playlist gapless

2013-02-20 Thread Dafydd Hughes
Yikes - you're right Roman - sorry. That's what I get for trying to patch in my head and not in Pd. On Wed, Feb 20, 2013 at 4:11 AM, Roman Haefeli wrote: > On Tue, 2013-02-19 at 20:57 -1000, Rick T wrote: > > Yes I have tried giving textfile a bang. Still no sound > > > > I'm not sure what you

Re: [PD] [gem] Looking for an abstraction for converting textfiles in text3d string

2013-02-20 Thread Santi
Hi, i'm using coll, i must format the text file before using it, but works great. With a little script in bash it's easy format any text file. Regards. 2013/2/19 Charles Goyard > Hi, > > almost there. But I don't know why, any2bytes converts my newlines (10) > into spaces (32). > > My input i

Re: [PD] using puredata to play playlist gapless

2013-02-20 Thread Roman Haefeli
On Tue, 2013-02-19 at 20:57 -1000, Rick T wrote: > Yes I have tried giving textfile a bang. Still no sound > > I'm not sure what you mean by the second response since I get sound > when I click on the message with the single wav file hard coded in the > message box. I don't get sound when I load