Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 2, 2008 at 1:38 am #5738 prashob12Member Hi, Is it possible to use Replace All command in All the opened Files in editor. Also Can i record these keystroke in the Macro and How. I tried recording replace in Files command but in vein. ******* When i do CTRL+TAB the editor Flickers, ******* Please Reply. May 2, 2008 at 5:23 pm #5741 Yutaka EmuraKeymaster Replace command will not be recorded automatically. This is what you need: // JavaScript docs = new Enumerator( editor.Documents ); for( ; !docs.atEnd(); docs.moveNext() ){ doc = docs.item(); doc.Activate(); doc.selection.Replace( "abc", "def", eeReplaceAll ); } Author Posts Viewing 2 posts - 1 through 2 (of 2 total) The forum ‘Questions and Answers about EmEditor Core’ is closed to new topics and replies.