The resize handles are one of many "features" the browsers designMode implementation provides, and - as far as I know - there's no easy way of turning them off. The only solution I've found just works with contentEditable (which were not even using in the current version of WYM) and its buggy at best. We will how ever use contentEditable in the next version of WYM as it's a lot more flexible, and there's finally cross-browser support available. So in the future you'll maybe be able to disable or replace these handles, but not at the moment.
The one solution I can see, if you don't want your users to resize the images is to parse the generated html (or maybe listen to mouseup/down events on images) and remove or reset the image dimensions.It's not pretty.
aaronlinkous wrote:Would also like to know how to do this, or atleast where the tag formation is created so I can change the order of which the attributes are put into the tag.
I'm not sure I understand what you mean? You want to control the order of the attributes in the generated img tags? What good would that do?
Cheers!