#3994
yunoki
メンバー

ファイル全体を選択して、TextInformationプラグインを実行することで、ファイルサイズが求められると思います。

下記のようなマクロを 拡張子jseeで保存し、実行することでもファイルのサイズがチェックできるようになります。

document.selection.SelectAll();
data=document.selection.Text;
document.selection.Collapse();
alert(data.length);