Viewing 3 posts - 1 through 3 (of 3 total) Author Posts March 5, 2012 at 9:20 pm #10124 parameterMember I’d like an Edit option to Paste while Copying the what I have selected – i.e. swap what I have selected and what is in the clipboard. Maybe call it “Swap” or “Paste/Cut”. March 6, 2012 at 6:03 pm #10136 Yutaka EmuraKeymaster Hi parameter, You can write a macro for this purpose easily. Please let me know if you need a help writing a macro. Thank you! March 6, 2012 at 9:25 pm #10142 parameterMember Thanks, this seems to work. var cut=document.selection.Text; var paste = clipboardData.getData(“Text”); clipboardData.setData(“Text”, cut); document.selection.Text=paste; Author Posts Viewing 3 posts - 1 through 3 (of 3 total) The forum ‘EmEditor Core Enhancement Suggestions’ is closed to new topics and replies.