Login  Register

Accepting Email Drops on Pharo Window

Posted by Sean P. DeNigris on Aug 10, 2015; 3:01pm
URL: https://forum.world.st/Accepting-Email-Drops-on-Pharo-Window-tp4841915.html

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 modify the VM? It seems like, since Smalltalk is so malleable, and more like an OS than an app, we should accept all types and let the user decide whether to do something with them, no?

[1] http://stackoverflow.com/questions/4115987/how-to-get-dropped-mail-message-data-in-a-cocoa-application
Cheers,
Sean