change font on paste with javascript

  •  01-22-2009, 11:58 PM

    change font on paste with javascript

    Hi
     
    I'm trying to force change text pasted in to the editor to Arial size 12, while retaining all other formatting.
     
    I have gotten so far:
     
    function CuteEditor_OnCommand(editor,command,ui,value)
                {
                  
                    if (command=="Paste")
                    {   
                        
                        document.getElementById(editor.id).style.fontSize="12";          
                   
                  }  
                }

    I know it must be close because this changes the editor toolbar height, but not the textarea font. I suppose I have to target the textarea specifically but I can't figure out how to do this.
     
    Any help would be appreciated, thanks.
     
     
    Also a more comprehensive javascript API would be good
     
     
    Thanks
     
     
View Complete Thread