Re: Email editor view

2015-06-26 Thread Jens Alfke
> On Jun 26, 2015, at 1:45 PM, Nick wrote: > > Would experienced developers suggest is the best way to have an email > editor view, similar to what Apple Mail app has? What would be the best way > to give the users a similar to Apple Mail experience? You’ll need a WebView if you want to handle

Email editor view

2015-06-26 Thread Nick
Hello I am working on an email client. Would experienced developers suggest is the best way to have an email editor view, similar to what Apple Mail app has? What would be the best way to give the users a similar to Apple Mail experience? I am trying to let the user edit the message, display attach

Re: Why would scroll events not arrive?

2015-06-26 Thread Martin Wierschin
> I have to correct a misunderstanding: the first responder has nothing to do > with scroll events. Scroll events are delivered to the view under the mouse > cursor. Thank you for the correction Ken. That point had slipped my mind– of course the first responder isn’t necessarily going to be

Re: Stupid ! and ?

2015-06-26 Thread Alex Zavatone
On Jun 26, 2015, at 11:33 AM, Dave wrote: > >> On 25 Apr 2015, at 17:26, dangerwillrobinsondan...@gmail.com wrote: >> >> This tension is simply part of life when using objects that inherit from >> NSObject and when interfacing with C libraries where paradigms are >> different. > > That line

Re: Stupid ! and ?

2015-06-26 Thread Dave
> On 25 Apr 2015, at 17:26, dangerwillrobinsondan...@gmail.com wrote: > > This tension is simply part of life when using objects that inherit from > NSObject and when interfacing with C libraries where paradigms are different. That line could have straight out of the Unix Haters Handbook: Som

Another Scripting Bridge Question

2015-06-26 Thread Dave
H All, In the following Application Script: tell application “Microsoft Outlook” activate set myMessageList to current messages set myMessage to item 1 of myMessageList set the subject of myMessage to “Hello World” save front window end tell Which application handle the “save front window” s

Re: Why would scroll events not arrive?

2015-06-26 Thread Uli Kusterer
> On 26 Jun 2015, at 09:47, Martin Wierschin wrote: > > Hello everyone, > > The quick overview: sometimes after working in my OSX app, scroll wheel > events are no longer being dispatched to the key window's first responder. In > fact, after overriding -[NSApplication sendEvent:] I can see th

Re: Why would scroll events not arrive?

2015-06-26 Thread Ken Thomases
On Jun 26, 2015, at 2:47 AM, Martin Wierschin wrote: > The quick overview: sometimes after working in my OSX app, scroll wheel > events are no longer being dispatched to the key window's first responder. In > fact, after overriding -[NSApplication sendEvent:] I can see that after the > misbeha

Why would scroll events not arrive?

2015-06-26 Thread Martin Wierschin
Hello everyone, The quick overview: sometimes after working in my OSX app, scroll wheel events are no longer being dispatched to the key window's first responder. In fact, after overriding -[NSApplication sendEvent:] I can see that after the misbehavior is triggered, scroll events do not even a

Re: Generic Bitmap to NSImage

2015-06-26 Thread Raglan T. Tiger
> On Jun 25, 2015, at 5:32 PM, Ken Thomases wrote: > > First suggestion is to cache the results so you don't have to convert every > time. This is the approach I have taken in conjunction with the other comments that showed I was copying things twice. I have achieved the performance desired