Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5738
    prashob12
    Member

    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.

    #5741
    Yutaka Emura
    Keymaster

    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 );
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.