Re: [Pharo-users] Accepting Email Drops on Pharo Window

2015-08-10 Thread Ben Coman
On Mon, Aug 10, 2015 at 11:01 PM, Sean P. DeNigris wrote: > Does anyone have experience with accepting drops of file types which are not > supported by default? On StackOverflow [1], it was shown how to do this in > Cocoa: > ``` > [window registerForDraggedTypes:[NSArray > arrayWithObjects:(NSStri

[Pharo-users] Accepting Email Drops on Pharo Window

2015-08-10 Thread Sean P. DeNigris
Does anyone have experience with accepting drops of file types which are not supported by default? On StackOverflow [1], it was shown how to do this in Cocoa: ``` [window registerForDraggedTypes:[NSArray arrayWithObjects:(NSString*)kPasteboardTypeFileURLPromise,nil]]; ``` but do I really need to mo