Hi List!
I'm tried to save a patch through internal messages https://puredata.info/community/pdwiki/PdInternalMessages without success. I tried menusave and menusaveas methods in some ways. I'm using Pd 0.49-1 (mac).
Is it possible to save patches via internal messages yet?
Esteban Viveros
www.estebanviveros.com
Hi Esteban,
I have here some patches I made that go through most of (hidden) pd messages I could find
https://github.com/fdch/fd_lib/tree/master/tutorials/pd-messages
(The above is a bit hacky, but saving from inside a pd patch is mentioned there :)
hope it helps!
fede
fdch.github.io
On Mar 11, 2019, at 3:56 PM, Esteban Viveros emviveros@gmail.com wrote:
Hi List!
I'm tried to save a patch through internal messages without success. I tried menusave and menusaveas methods in some ways. I'm using Pd 0.49-1 (mac).
Is it possible to save patches via internal messages yet?
Thanks for any advance! CHeers!!
Esteban Viveros
www.estebanviveros.com
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
I've never found a way of saving the patch to the current file, but if you want to save it to a new file, you can do this:
[savetofile newpatch.pd home/my/directory( | [send pd-mypatch.pd] ________________________________ From: Pd-list pd-list-bounces@lists.iem.at on behalf of Esteban Viveros emviveros@gmail.com Sent: 11 March 2019 14:56 To: Pd-List Subject: [PD] Save patch with internal message
Hi List!
I'm tried to save a patch through internal messageshttps://puredata.info/community/pdwiki/PdInternalMessages without success. I tried menusave and menusaveas methods in some ways. I'm using Pd 0.49-1 (mac).
Is it possible to save patches via internal messages yet?
Esteban Viveros
www.estebanviveros.comhttp://www.estebanviveros.com
Thanks guys!!!! Frank Barknecht RRADical are very promising for organizing my patches... since it is related with the source of my wish to save patch with internal messages.
If somebody have more ideas related to it, you are welcomed!! :)
Em seg, 11 de mar de 2019 às 14:50, Liam Goodacre liamg_uw@hotmail.com escreveu:
I've never found a way of saving the patch to the current file, but if you want to save it to a new file, you can do this:
[savetofile newpatch.pd home/my/directory( | [send pd-mypatch.pd]
*From:* Pd-list pd-list-bounces@lists.iem.at on behalf of Esteban Viveros emviveros@gmail.com *Sent:* 11 March 2019 14:56 *To:* Pd-List *Subject:* [PD] Save patch with internal message
Hi List!
I'm tried to save a patch through internal messages https://puredata.info/community/pdwiki/PdInternalMessages without success. I tried menusave and menusaveas methods in some ways. I'm using Pd 0.49-1 (mac).
Is it possible to save patches via internal messages yet?
Thanks for any advance! CHeers!!
Esteban Viveros
www.estebanviveros.com
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
(unless you are talking about the 'first' save) it should be simply
[menusave( | [s pd-mypatch.pd]
I've never found a way of saving the patch to the current file, but if you
want to save it to a new file, you can do this:
Did not how 'savetofile' worked until you mentioned it! Thanks!! I think this should do it:
[savetofile mypatch.pd /path/to/file( | [s pd-mypatch.pd]
On 3/11/19 8:29 PM, Federico Camara Halac wrote:
(unless you are talking about the 'first' save) it should be simply
[menusave( | [s pd-mypatch.pd]
I've never found a way of saving the patch to the current file, but if you
what do you mean by "current file" (as opposed to where [menusave( saves the patch to)?
want to save it to a new file, you can do this:
Did not how 'savetofile' worked until you mentioned it! Thanks!! I think this should do it:
[savetofile mypatch.pd /path/to/file( | [s pd-mypatch.pd]
since both you and liam use the [s pd-mypatch.pd] idiom, i'd like to point out that this might be tricky, as the [savetofile( might rename the patch... so the following will only work once:
<snip> [savetofile yourpatch.pd .( | [s pd-mypatch.pd] </snip>
a safer approach is to use [namecanvas]:
<snip> [savefile yourpatch.pd .( | [s $0-canvas]
[namecancas $0-canvas]
</snip>
gfmdsar IOhannes
Thanks IOhannes!!! It close that issue!!! :)
Em seg, 11 de mar de 2019 às 17:09, IOhannes m zmölnig zmoelnig@iem.at escreveu:
On 3/11/19 8:29 PM, Federico Camara Halac wrote:
(unless you are talking about the 'first' save) it should be simply
[menusave( | [s pd-mypatch.pd]
I've never found a way of saving the patch to the current file, but if
you
what do you mean by "current file" (as opposed to where [menusave( saves the patch to)?
want to save it to a new file, you can do this:
Did not how 'savetofile' worked until you mentioned it! Thanks!! I think this should do it:
[savetofile mypatch.pd /path/to/file( | [s pd-mypatch.pd]
since both you and liam use the [s pd-mypatch.pd] idiom, i'd like to point out that this might be tricky, as the [savetofile( might rename the patch... so the following will only work once:
<snip> [savetofile yourpatch.pd .( | [s pd-mypatch.pd] </snip>
a safer approach is to use [namecanvas]:
<snip> [savefile yourpatch.pd .( | [s $0-canvas]
[namecancas $0-canvas]
</snip>
gfmdsar IOhannes
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
On 3/11/19 3:56 PM, Esteban Viveros wrote:
Hi List!
I'm tried to save a patch through internal messages https://puredata.info/community/pdwiki/PdInternalMessages without success. I tried menusave and menusaveas methods in some ways.
aha. in which ways?
Is it possible to save patches via internal messages yet?
those "internal messages" are how Pd-GUI communications with Pd. if you can save patches via the GUI, then the "internal messages" work.
gfamsdr IOhannes