Re: [PD] clear console command + create folder from Pd?

2011-11-13 Thread rolf meesters
working in Windows-XP patch.pd contains [echo %cd%( | [popen] starting patch.pd directly gives: symbol C: using pd -open patch.pd gives :symbol C:Program Filespd however [mkdir test( -- [popen] creates the subdirectory in both cases where patch.pd is the latter is nice, the forme

Re: [PD] clear console command + create folder from Pd?

2011-11-12 Thread João Pais
very strange. I'm using the latest stable 0.42 in XP. I also tried the newest .43 build, and doesn't work as well. Since this is for someone who is only in windows, I won't try it in linux. 2011/11/10 João Pais this works, but only if I give a complete path, not a relative one. I can get

Re: [PD] clear console command + create folder from Pd?

2011-11-10 Thread tim vets
2011/11/10 João Pais > this works, but only if I give a complete path, not a relative one. I can >>> get the patche's current path with tof/path, but I read that tof isn't >>> included in the next versions? Is it possible to get the current path >>> through other methods? >>> >>> João >>> >>> [e

Re: [PD] clear console command + create folder from Pd?

2011-11-10 Thread João Pais
this works, but only if I give a complete path, not a relative one. I can get the patche's current path with tof/path, but I read that tof isn't included in the next versions? Is it possible to get the current path through other methods? João [echo %CD%( -- [popen] ? "error: popen: no method

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread Hans-Christoph Steiner
On Nov 8, 2011, at 6:46 AM, João Pais wrote: >>> - is there any object that allows to create a folder (in all OSs)? I wanted >>> to save files to a non-existing folder, but Pd doesn't create one. >> >> You could probably use Tcl's mkdir and send it to the GUI: >> >> [file mkidr /path/to/mynewf

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread Ingo
> -Ursprüngliche Nachricht- > Von: pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] Im Auftrag von > João Pais > Gesendet: Dienstag, 8. November 2011 12:46 > An: Hans-Christoph Steiner > Cc: PD-List > Betreff: Re: [PD] clear console command + create folder

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread Ingo
windows correctly? Ingo Von: tim vets [mailto:timv...@gmail.com] Gesendet: Dienstag, 8. November 2011 12:35 An: Ingo Cc: Hans-Christoph Steiner; pd list Betreff: Re: [PD] clear console command + create folder from Pd? 2011/11/8 tim vets 2011/11/8 Ingo

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread tim vets
2011/11/8 João Pais > - is there any object that allows to create a folder (in all OSs)? I >>> wanted to save files to a non-existing folder, but Pd doesn't create one. >>> >> >> You could probably use Tcl's mkdir and send it to the GUI: >> >> [file mkidr /path/to/mynewfolder( >> | >> [hcs/sys_g

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread João Pais
- is there any object that allows to create a folder (in all OSs)? I wanted to save files to a non-existing folder, but Pd doesn't create one. You could probably use Tcl's mkdir and send it to the GUI: [file mkidr /path/to/mynewfolder( | [hcs/sys_gui] this works, but only if I give a compl

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread tim vets
2011/11/8 tim vets > > > 2011/11/8 Ingo > >> >> >>> - is there any object that allows to create a folder (in all OSs)? >> >>> I wanted to save files to a non-existing folder, but Pd doesn't >> >>> create one. >> >> >> >> [mkdir $1(--[popen] ? >> > >> >I wonder if that works on Windows? Anyone t

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread tim vets
2011/11/8 Ingo > > >>> - is there any object that allows to create a folder (in all OSs)? > >>> I wanted to save files to a non-existing folder, but Pd doesn't > >>> create one. > >> > >> [mkdir $1(--[popen] ? > > > >I wonder if that works on Windows? Anyone tested it? Someone could > >probably

Re: [PD] clear console command + create folder from Pd?

2011-11-08 Thread João Pais
that's strange, I'm also in XP, and only got "error: popen: no method for 'mkdir'" - is there any object that allows to create a folder (in all OSs)? I wanted to save files to a non-existing folder, but Pd doesn't create one. [mkdir $1(--[popen] ? I wonder if that works on Windows? Anyo

Re: [PD] clear console command + create folder from Pd?

2011-11-07 Thread Ingo
>>> - is there any object that allows to create a folder (in all OSs)? >>> I wanted to save files to a non-existing folder, but Pd doesn't >>> create one. >> >> [mkdir $1(--[popen] ? > >I wonder if that works on Windows?  Anyone tested it?  Someone could >probably make  [mkdir] object quite quickl

Re: [PD] clear console command + create folder from Pd?

2011-11-07 Thread tim vets
2011/11/7 Hans-Christoph Steiner > > On Nov 7, 2011, at 4:53 PM, tim vets wrote: > > > > 2011/11/7 João Pais > >> Hi, >> >> is it possible to do the following in Pd? >> >> - clear the console with some command sent to [s pd] (not with the >> shortcut) >> >> - is there any object that allows to c

Re: [PD] clear console command + create folder from Pd?

2011-11-07 Thread Hans-Christoph Steiner
On Nov 7, 2011, at 4:53 PM, tim vets wrote: > > > 2011/11/7 João Pais > Hi, > > is it possible to do the following in Pd? > > - clear the console with some command sent to [s pd] (not with the shortcut) > > - is there any object that allows to create a folder (in all OSs)? I wanted > to sa

Re: [PD] clear console command + create folder from Pd?

2011-11-07 Thread tim vets
2011/11/7 João Pais > Hi, > > is it possible to do the following in Pd? > > - clear the console with some command sent to [s pd] (not with the > shortcut) > > - is there any object that allows to create a folder (in all OSs)? I > wanted to save files to a non-existing folder, but Pd doesn't creat

Re: [PD] clear console command + create folder from Pd?

2011-11-07 Thread Hans-Christoph Steiner
On Nov 7, 2011, at 4:35 PM, João Pais wrote: > Hi, > > is it possible to do the following in Pd? > > - clear the console with some command sent to [s pd] (not with the shortcut) pd isn't really aware of the console, so you need to send a message to the GUI: [menu_clear_console( | [hcs/sys_gui

[PD] clear console command + create folder from Pd?

2011-11-07 Thread João Pais
Hi, is it possible to do the following in Pd? - clear the console with some command sent to [s pd] (not with the shortcut) - is there any object that allows to create a folder (in all OSs)? I wanted to save files to a non-existing folder, but Pd doesn't create one. Thanks as usual, João