On Dec 7, 2009, at 22:20:04, Saptarshi Guha wrote: > This time, I'm … passing self to setGrowlDelegate (as in the example > webpage above, which works)
That only matters if the delegate you pass responds to the Growl delegate methods. You don't, so your object is no different from the string object you were originally passing in. Moreover, as long as you're not actually implementing any delegate functionality (e.g., click feedback), it doesn't matter what object you appoint as the delegate. I'm still suspicious of that objc.loadBundle call. You say you are copying the framework into your application; that means that /Library/ Frameworks/Growl.framework is even more wrong, since that path does not exist. (Even if it does on your system, there's no point in getting that working, since your users' machines will not be so configured.) As I suggested earlier, pass the path to the Growl framework inside your app bundle. -- You received this message because you are subscribed to the Google Groups "Growl Discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/growldiscuss?hl=en.
