in reply to Perl & Cocoa

I haven't tried to get it working yet myself, but it is possible to embed frameworks inside of an application bundle. Conceivably you could embed the CB framework inside your app and things would work just fine. See this article at cocoadevcentral.com for more details.

Update: There's also the PerlObjCBridge module which ships with OS X; perldoc PerlObjCBridge should bring up the documentation on it, and this article at the aforementioned site covers using it; the downside is that you can't do GUI (AppKit) stuff with it directly (you could however write an ObjC front end which talks to a perl backend using distributed objects).

Replies are listed 'Best First'.
Re^2: Perl & Cocoa
by Your Mother (Archbishop) on Aug 14, 2004 at 08:08 UTC

    Thanks for that update ++. I can't believe I didn't know about that already. Out of the loop.