Re: [PD] drag n' drop OSX tkdnd

2011-11-09 Thread Hans-Christoph Steiner
On Nov 1, 2011, at 2:52 PM, m.e.grimm wrote: ok thanks for that! yeah I also independently verified this too so here is the crazy report: http://pastebin.com/H3VSbyvJ and i noticed i noticed: 1) 0x7fff8de93000 - 0x7fff8e1b7fff com.apple.HIToolbox 1.8 (???)

Re: [PD] drag n' drop OSX tkdnd

2011-11-01 Thread m.e.grimm
ok thanks for that! yeah I also independently verified this too so here is the crazy report: http://pastebin.com/H3VSbyvJ and i noticed i noticed: 1) 0x7fff8de93000 - 0x7fff8e1b7fff com.apple.HIToolbox 1.8 (???) A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2

Re: [PD] drag n' drop OSX tkdnd

2011-10-27 Thread m.e.grimm
yeah had a few min today to take some more look at this. been reading up on the whole tk-cocoa thing too... as far as I can tell, there are not multiple issues but one larger one narrowed down to: Oct 27 15:01:49 megrimm-mbp.local Pd-0.43.1-extended-20111027[15460] Error:

Re: [PD] drag n' drop OSX tkdnd

2011-10-27 Thread András Murányi
Since CGSRegisterCursorWithImages is a private function and it is not called directly form Pd, one could say it's a bug in CG per se - because the function that calls it from inside CG shall not pass on any illegal calls. Andras On Thu, Oct 27, 2011 at 21:19, m.e.grimm megr...@gmail.com wrote:

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-26 Thread Hans-Christoph Steiner
On Oct 25, 2011, at 6:37 PM, m.e.grimm wrote: from that. Can you run Pd-extended 0.43 and trigger that crash, and post the crash log to a pastebin.com? you mean with the autobuilds? I can not trigger that crash with those. those are fine... but maybe more importantly: Duh, sorry, the

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread m.e.grimm
yeah searches for this error in particular CGSRegisterCursorWithImages have not yielded much help. I have posted to the tcl-mac list... we will see whats said. cheers m On Mon, Oct 24, 2011 at 4:53 PM, Hans-Christoph Steiner h...@at.or.at wrote: On Monday, October 24, 2011 2:47 PM,

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread Hans-Christoph Steiner
Wow, searching for CGSRegisterCursorWithImages only returns this thread! That's obscure... Thanks for handling this, keep us posted on any progress. .hc On Oct 25, 2011, at 10:00 AM, m.e.grimm wrote: yeah searches for this error in particular CGSRegisterCursorWithImages have not

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread m.e.grimm
this is def. some kind of cursor problem. this specifically happens when i go into edit mode with command + e as in the error below which keeps the same out of edit mode pointer. .x1002263c0 editmode 1; .x1002263c0 configure -cursor $cursor_editmode_nothing pdtk_canvas_editmode .x1002263c0 1

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread Hans-Christoph Steiner
You could try commenting out the code that changes the cursor. And see if that works otherwise. That would at least isolate the problem. .hc On Oct 25, 2011, at 1:49 PM, m.e.grimm wrote: this is def. some kind of cursor problem. this specifically happens when i go into edit mode with

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread András Murányi
It must be part of an undocumented private API in CoreGraphics/Quartz. There are plenty of these out in the wild :o/ Andras On Tue, Oct 25, 2011 at 18:54, Hans-Christoph Steiner h...@at.or.at wrote: Wow, searching for CGSRegisterCursorWithImages only returns this thread! That's obscure...

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread Hans-Christoph Steiner
On Oct 25, 2011, at 3:51 PM, m.e.grimm wrote: well commenting out lines 84 - 86 in pdwindow.tcl stops the message: --- UNHANDLED ERROR: can't find package tkdnd while executing package require tkdnd (uplevel body line 1) invoked from within uplevel #0 $tclcode FAILED TO LOAD

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-25 Thread m.e.grimm
from that. Can you run Pd-extended 0.43 and trigger that crash, and post the crash log to a pastebin.com? you mean with the autobuilds? I can not trigger that crash with those. those are fine... but maybe more importantly: You can resize on the left, right, and bottom left now? I guess

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread m.e.grimm
Basically, if you build Pd vanilla or Pd-extended on Mac OS X Snow Leopard or Lion withOUT installing Tcl/Tk, you'll be using Tk/Cocoa. ok... how might i do this? just a quick autogen.sh ./configure make from the pd-extended git repo sees to build ok. is there something i need to alter to

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread Hans-Christoph Steiner
On Oct 24, 2011, at 10:47 AM, m.e.grimm wrote: Basically, if you build Pd vanilla or Pd-extended on Mac OS X Snow Leopard or Lion withOUT installing Tcl/Tk, you'll be using Tk/Cocoa. ok... how might i do this? just a quick autogen.sh ./configure make from the pd-extended git repo sees

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread m.e.grimm
if you have Fink installed. i do As long as you don't have the Tcl.framework and Tk.framework in /Library/Frameworks, it should use the built-in ones. These were not there should they have been? For building a Pd-extended without the libraries, get the whole source via rsync, if you

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread Hans-Christoph Steiner
On Oct 24, 2011, at 1:00 PM, m.e.grimm wrote: if you have Fink installed. i do Then it should be easy to run the auto-build script to get a full build of Pd-extended, as long as you have all of the dependencies installed from Fink. As long as you don't have the Tcl.framework and

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread m.e.grimm
Also, you'll probably see a menu called Apple on the menubar, that was a bug previously that probably has not been fixed. Or maybe two Help menus. Yes. Apple. its there Try running it like this: -stderr -d 3 And that will tell us a lot more. terminal output below after new

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-24 Thread Hans-Christoph Steiner
On Monday, October 24, 2011 2:47 PM, m.e.grimm megr...@gmail.com wrote: Also, you'll probably see a menu called Apple on the menubar, that was a bug previously that probably has not been fixed. Or maybe two Help menus. Yes. Apple. its there Try running it like this: -stderr -d

[PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-22 Thread m.e.grimm
hey hans, just tried drag n' drop plug on windows. too bad we dont use windows here. just checking status of tkdnd-plugin.tcl on OSX. also did i miss something? Gem builds not on 10.5 extended autobuilds? just noticed. cheers m ___

Re: [PD] drag n' drop OSX tkdnd ect .... + Gem on 10.5 extended autobuilds

2011-10-22 Thread Hans-Christoph Steiner
On Oct 22, 2011, at 11:47 AM, m.e.grimm wrote: hey hans, just tried drag n' drop plug on windows. too bad we dont use windows here. just checking status of tkdnd-plugin.tcl on OSX. Funny enough, drag-n-drop was easiest to implement on Windows. For Mac OS X, it requires Tk/Cocoa,