hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
I tried it on MobMuPlat. The issue is not the rendering the symbol object, but the fact that you are using graph-on-parent, which AFAIK no mobile app (PdDroidParty/PdParty/MobMuPlat) supports. Put your symbol object on the top level of the patch and it should work.
On Sat, Aug 3, 2019 at 2:06 PM Simon Iten itensimon@gmail.com wrote:
hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
thanks, this works with native gui rendering!
great.
On 4 Aug 2019, at 00:22, Daniel Iglesia daniel.iglesia@gmail.com wrote:
I tried it on MobMuPlat. The issue is not the rendering the symbol object, but the fact that you are using graph-on-parent, which AFAIK no mobile app (PdDroidParty/PdParty/MobMuPlat) supports. Put your symbol object on the top level of the patch and it should work.
On Sat, Aug 3, 2019 at 2:06 PM Simon Iten <itensimon@gmail.com mailto:itensimon@gmail.com> wrote: hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
Pd-list@lists.iem.at mailto:Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list https://lists.puredata.info/listinfo/pd-list
however, i cannot change the size of the atom boxes, can i?
On 4 Aug 2019, at 09:08, Simon Iten itensimon@gmail.com wrote:
thanks, this works with native gui rendering!
great.
On 4 Aug 2019, at 00:22, Daniel Iglesia <daniel.iglesia@gmail.com mailto:daniel.iglesia@gmail.com> wrote:
I tried it on MobMuPlat. The issue is not the rendering the symbol object, but the fact that you are using graph-on-parent, which AFAIK no mobile app (PdDroidParty/PdParty/MobMuPlat) supports. Put your symbol object on the top level of the patch and it should work.
On Sat, Aug 3, 2019 at 2:06 PM Simon Iten <itensimon@gmail.com mailto:itensimon@gmail.com> wrote: hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
Pd-list@lists.iem.at mailto:Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list https://lists.puredata.info/listinfo/pd-list
and to finish this up, and sorry for spamming the list. with mobmuplat internal GUI i can render the text perfectly and as big as i want it. big thanks!!
On 4 Aug 2019, at 09:12, Simon Iten itensimon@gmail.com wrote:
however, i cannot change the size of the atom boxes, can i?
On 4 Aug 2019, at 09:08, Simon Iten <itensimon@gmail.com mailto:itensimon@gmail.com> wrote:
thanks, this works with native gui rendering!
great.
On 4 Aug 2019, at 00:22, Daniel Iglesia <daniel.iglesia@gmail.com mailto:daniel.iglesia@gmail.com> wrote:
I tried it on MobMuPlat. The issue is not the rendering the symbol object, but the fact that you are using graph-on-parent, which AFAIK no mobile app (PdDroidParty/PdParty/MobMuPlat) supports. Put your symbol object on the top level of the patch and it should work.
On Sat, Aug 3, 2019 at 2:06 PM Simon Iten <itensimon@gmail.com mailto:itensimon@gmail.com> wrote: hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
Pd-list@lists.iem.at mailto:Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list https://lists.puredata.info/listinfo/pd-list
hi,
in PdDroid symbol atoms don't work, but canvases do !
so you want to replace your symbols with [cnv] objects and change their labels dynamically to display your text.
attached is your original patch, modified by my suggestions
best
oliver
thanks for your suggestion. i get the first name to display on my android device, however changing labels of cnv objects at runtime does not seem to be implemented in pd_droid_party.
cheers
On 4 Aug 2019, at 00:45, oliver oliver@klingt.org wrote:
hi,
in PdDroid symbol atoms don't work, but canvases do !
so you want to replace your symbols with [cnv] objects and change their labels dynamically to display your text.
attached is your original patch, modified by my suggestions
best
oliver
<unkraut_mod.pd>_______________________________________________ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
Tx, usefull under linux too
Am 03.08.19 um 23:03 schrieb Simon Iten:
hi chris, hi list…
i have a patch that displays latin names for “unkraut” (weed), read out from a textfile loaded into a text object. the names are changed randomly on incoming midi note on events. this all works very well on a regular pd installation (see attached patch and weed list). for simplicity i used two symbol boxes to display the name.
as for my question:
i would like to run this patch in a live setting without a computer. can i make this work with pd droid party on android? looking at the docs , the symbol object is not implemented as a GUI element i think. is there another easy way to make this run on android? the names should be readable from a distance, so the two lines should fill the entire display of a smartphone.
thanks for any hints,
simon
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list