hi all,
i just realized that grid doesn't have a properties option any more ... can anyone post the syntax to create grid objects manually?
thanks...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
hi,
if you want the properties dialog to be fixed, you should change :
grid_widgetbehavior.w_propertiesfn = grid_properties; grid_widgetbehavior.w_savefn = grid_save;
with
class_setpropertiesfn(grid_class, grid_properties); class_setsavefn(grid_class, grid_save);
and recompile.
( frankly, i don't see the interest of changing API without any documentation anywhere, neither release notes )
i may put a new release out there one of these days ( but i don't use 0.37 ).
sevy
Tim Blechmann wrote:
hi all,
i just realized that grid doesn't have a properties option any more ... can anyone post the syntax to create grid objects manually?
thanks...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
of course, there wasn't any documentation before, either... :) but seriously, things in g_canvas.c aren't "stable" and I wanted to publish the dialog and save API in a way that didn't require publishing the (very unstable) widgetbehavior structure.
cheers Miller
On Sun, Sep 21, 2003 at 04:28:00AM -0400, Yves Degoyon wrote:
hi,
if you want the properties dialog to be fixed, you should change :
grid_widgetbehavior.w_propertiesfn = grid_properties; grid_widgetbehavior.w_savefn = grid_save;
with
class_setpropertiesfn(grid_class, grid_properties); class_setsavefn(grid_class, grid_save);
and recompile.
( frankly, i don't see the interest of changing API without any documentation anywhere, neither release notes )
i may put a new release out there one of these days ( but i don't use 0.37 ).
sevy
Tim Blechmann wrote:
hi all,
i just realized that grid doesn't have a properties option any more ... can anyone post the syntax to create grid objects manually?
thanks...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
hi,
sorry, miller, i'm still craving for a kind of CHANGES.LOG file to be provided with pd... too much of work?
cheers, sevy
Miller Puckette wrote:
of course, there wasn't any documentation before, either... :) but seriously, things in g_canvas.c aren't "stable" and I wanted to publish the dialog and save API in a way that didn't require publishing the (very unstable) widgetbehavior structure.
cheers Miller
On Sun, Sep 21, 2003 at 04:28:00AM -0400, Yves Degoyon wrote:
hi,
if you want the properties dialog to be fixed, you should change :
grid_widgetbehavior.w_propertiesfn = grid_properties; grid_widgetbehavior.w_savefn = grid_save;
with
class_setpropertiesfn(grid_class, grid_properties); class_setsavefn(grid_class, grid_save);
and recompile.
( frankly, i don't see the interest of changing API without any documentation anywhere, neither release notes )
i may put a new release out there one of these days ( but i don't use 0.37 ).
sevy
Tim Blechmann wrote:
hi all,
i just realized that grid doesn't have a properties option any more ... can anyone post the syntax to create grid objects manually?
thanks...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
This is a good idea... "release notes" to mark user-level changes and a changelog for people inside the code. Of course, a major habit shift for me, but probably worth the effort.
cheers Miller
On Sun, Sep 21, 2003 at 04:55:03PM -0400, Yves Degoyon wrote:
hi,
sorry, miller, i'm still craving for a kind of CHANGES.LOG file to be provided with pd... too much of work?
cheers, sevy
hi list is there a way to replace all space-signs of my soundfiles into - signs? like drum 33 d.wav into drum-33-d.wav? Can you do that within the shell? is there like a comand for that?
cheers miyazaki s
On Mon, 22 Sep 2003, Shintaro Miyazaki wrote:
is there a way to replace all space-signs of my soundfiles into - signs? like drum 33 d.wav into drum-33-d.wav? Can you do that within the shell? is there like a comand for that?
for z in *; do a=echo $z|sed 's/ /-/'g
; mv "$z" "$a";done
Mathieu Bouchard http://artengine.ca/matju
note that if you use playlist to load your files, you don't need to suppress the spaces.
cheers, sevy
Mathieu Bouchard wrote:
On Mon, 22 Sep 2003, Shintaro Miyazaki wrote:
is there a way to replace all space-signs of my soundfiles into - signs? like drum 33 d.wav into drum-33-d.wav? Can you do that within the shell? is there like a comand for that?
for z in *; do a=
echo $z|sed 's/ /-/'g
; mv "$z" "$a";done
Mathieu Bouchard http://artengine.ca/matju
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
if you knew this already, please disregard, but one of my favorite things about using CVS is that when you checkin a change it prompts you for a short description of the change. So the CVS tree is largely self documenting and in fact will pump out attributed changelogs for you automagically. pretty handy for keeping a group of developers in check with what each other are up to :)
-josh
Miller Puckette wrote:
This is a good idea... "release notes" to mark user-level changes and a changelog for people inside the code. Of course, a major habit shift for me, but probably worth the effort.
cheers Miller
On Sun, Sep 21, 2003 at 04:55:03PM -0400, Yves Degoyon wrote:
hi,
sorry, miller, i'm still craving for a kind of CHANGES.LOG file to be provided with pd... too much of work?
cheers, sevy
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hi
I keep having this problem with plugin~ (error message "bad screen size" + empty objects, no text). Is there no-one else experiencing this problem (in debian/unstable). I have no idea how to solve this problem. I miss my ladspa plugins! (I have the same problem on both my computers, both running dbian/unstable).
thx in advance
m
. . . . |____ http://www.mprims.tk
The error message is "bad screen distance".
m
On Mon, 22 Sep 2003 00:05:07 +0200 mik mprims@skynet.be wrote:
Hi
I keep having this problem with plugin~ (error message "bad screen size" + empty objects, no text). Is there no-one else experiencing this problem (in debian/unstable). I have no idea how to solve this problem. I miss my ladspa plugins! (I have the same problem on both my computers, both running dbian/unstable).
thx in advance
m
. . . . |____ http://www.mprims.tk
hi,
oke, i've updated my objects for pd 0.37 oh, for linux only, i don't use anything else
sevy
Yves Degoyon wrote:
hi,
if you want the properties dialog to be fixed, you should change :
grid_widgetbehavior.w_propertiesfn = grid_properties; grid_widgetbehavior.w_savefn = grid_save;
with
class_setpropertiesfn(grid_class, grid_properties); class_setsavefn(grid_class, grid_save);
and recompile.
( frankly, i don't see the interest of changing API without any documentation anywhere, neither release notes )
i may put a new release out there one of these days ( but i don't use 0.37 ).
sevy
Tim Blechmann wrote:
hi all,
i just realized that grid doesn't have a properties option any more ... can anyone post the syntax to create grid objects manually?
thanks...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list