1 件の投稿を表示中 (合計 1 個)
  • 作成者
    投稿
  • #5953
    takuya
    参加者

    EmEditorで開いているファイルを一つの新規fileにまとめるマクロを書いてみました。

    //開いているファイルを一つのfileにまとめる
    var text =””;
    Window.Redraw = false;
    docs = new Enumerator( editor.Documents );
    for( ; !docs.atEnd(); docs.moveNext() ){
    doc = docs.item();
    doc.Activate();
    doc.selection.SelectAll();
    text += doc.selection.Text;
    doc.selection.collapse();
    }
    editor.NewFile();
    var _new_doc_ = editor.ActiveDocument;
    _new_doc_.write( text );
    _new_doc_.Activate();
    Window.Redraw = true;

1 件の投稿を表示中 (合計 1 個)
  • このトピックに返信するにはログインしてください。