Let me make sure I understand this - you want to be able to have an image be uploaded when it is pasted into the WYSIWYG editor from anywhere yes?
If so, it's flat out impossible - for security reasons javascript cannot read image data from the clipboard of the host OS or read a file's contents without going through the browser's file input control. You must upload the image as a separate action, and no vendor can provide you otherwise unless they also rewrite your browser.
Note, this *might* be possible using ActiveX controls in IE, but ActiveX is the sourcepoint of 95% of IE's security flaws and it is highly recommended that you turn it off, leave it off or, better yet, don't use IE.
|