[PD-dev] [ pure-data-Bugs-3393013 ] Pd won't start with Novation keyboard connected

2011-08-17 Thread SourceForge . net
Bugs item #3393013, was opened at 2011-08-17 12:31 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478070aid=3393013group_id=55736 Please note that this message will contain a full copy of the

[PD-dev] [ pure-data-Bugs-3393135 ] pd midi problems

2011-08-17 Thread SourceForge . net
Comment: Running on ubuntu 11.04 natty amd64 with kernel 2.6.38-8-generic, i have a midi interface on hw:1 (a Tascam US-122L soundcard, but only the midi interface is usable) I can see incoming midi messages with amidi -d -p hw:1 - - Pd 0.43.1extended-20110817 amd 64 (run with -alsamidi

[PD-dev] [ pure-data-Patches-3383901 ] word wrap in pdwindow

2011-08-17 Thread SourceForge . net
Patches item #3383901, was opened at 2011-08-01 16:21 Message generated for change (Comment added) made by eighthave You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=478072aid=3383901group_id=55736 Please note that this message will contain a full copy of the comment

Re: [PD-dev] tkwidgets

2011-08-17 Thread Hans-Christoph Steiner
Hey Jonathan, I'm cc'ing pd-dev since this is a topic that could interest others and others could contribute to. I've started a private git branch of tkwidgets that I intent to push once I get somewhere with it. The idea is to try out a new idea for how GUI objects can work.

Re: [PD-dev] tkwidgets

2011-08-17 Thread Jonathan Wilkes
How does your private git branch differ from what's currently in svn? One thing I'd like to point out is that your tkwidgets suffer from the same problem tot/widget did -- by handling all the widget state in tcl you make it impossible to use your objects inside a subpatch/abstraction that

Re: [PD-dev] tkwidgets

2011-08-17 Thread Hans-Christoph Steiner
On Aug 17, 2011, at 6:23 PM, Jonathan Wilkes wrote: How does your private git branch differ from what's currently in svn? I pushed my git to github, my latest work is in the 'newentry' branch. I basically focused on the [entry] widget to see if I could get it going with this new

Re: [PD-dev] tkwidgets

2011-08-17 Thread Jonathan Wilkes
The problem is for a subpatch that isn't vis'd: [inlet] | [checkbutton] | [outlet] Will give an error on bang because checkbutton_bang has: sys_vgui(%s invoke\n, x-widget_id-s_name); That could be solved by using a -variable option, but then that limits you because the nonzero value cannot be

Re: [PD-dev] tkwidgets

2011-08-17 Thread Hans-Christoph Steiner
On Aug 17, 2011, at 8:17 PM, Jonathan Wilkes wrote: The problem is for a subpatch that isn't vis'd: [inlet] | [checkbutton] | [outlet] Will give an error on bang because checkbutton_bang has: sys_vgui(%s invoke\n, x-widget_id-s_name); That could be solved by using a -variable option, but