Re: [Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-05 Thread whamoo
On 05/gen/05, at 03:55, Bob Ippolito wrote: This is not a bug in the integration, and it *is* an indentation error. You are mixing spaces and tabs. Don't do that. Turn tabs off in Xcode. I guess we should document this somewhere. Oh yeah, turning off tab works =) Thanks a lot, xcode is a grea

Re: [Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-04 Thread Bob Ippolito
On Jan 4, 2005, at 8:14 PM, whamoo wrote: On 05/gen/05, at 01:57, Bob Ippolito wrote: from Foundation import NSLog from PyObjCTools import NibClassBuilder NibClassBuilder.extractClasses("MainMenu") class provaAppDelegate(NibClassBuilder.AutoBaseClass): def applicationDidFinishLaunching_(self, aN

Re: [Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-04 Thread Bob Ippolito
On Jan 4, 2005, at 7:42 PM, whamoo wrote: On 04/gen/05, at 19:33, Bob Ippolito wrote: I've tried xcode template, but if I modify the AppDelegate nib and add the function in python file, it give me this error: Could not connect the action change_: to target of class provaDocument Did you actuall

Re: [Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-04 Thread whamoo
On 04/gen/05, at 19:33, Bob Ippolito wrote: I've tried xcode template, but if I modify the AppDelegate nib and add the function in python file, it give me this error: Could not connect the action change_: to target of class provaDocument Did you actually write "change_:" as the selector? That's

Re: [Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-04 Thread Bob Ippolito
On Jan 4, 2005, at 1:20 PM, whamoo wrote: Hello, There's somethings i cannot understand about creating nib based application, Ok I start interface builder, build gui, create outlet, create action, saving, create python file starting by the nib, and having a thing like this: -

[Pythonmac-SIG] Some question about pyobjc and creating nib based application...

2005-01-04 Thread whamoo
Hello, There's somethings i cannot understand about creating nib based application, Ok I start interface builder, build gui, create outlet, create action, saving, create python file starting by the nib, and having a thing like this: -- import objc fro