Aug 5, 2004 #1 Eek Technical User Joined Feb 4, 2001 Messages 34 Location CA How can I edit this function : frames.message.document.execCommand('InsertImage', false, imagePath) so that I can control the image size
How can I edit this function : frames.message.document.execCommand('InsertImage', false, imagePath) so that I can control the image size
Aug 6, 2004 #2 vbkris Programmer Joined Jan 20, 2003 Messages 5,994 Location IN i guess its an HTML editor: frames.message.document.RangeName.pasteHTML("<img src='"+imagePath+"' height=10 width=10>"> The RangeName is the Range's name... Known is handfull, Unknown is worldfull Upvote 0 Downvote
i guess its an HTML editor: frames.message.document.RangeName.pasteHTML("<img src='"+imagePath+"' height=10 width=10>"> The RangeName is the Range's name... Known is handfull, Unknown is worldfull