#9002
Yutaka Emura
Keymaster

Hello SSI,

Here is a JavaScript macro for this purpose:

document.selection.SelectAll();
var textArray = document.selection.Text.split("X");
for( i = 0; i < textArray.length; i++ ){
editor.NewFile();
document.write( textArray[i] );
}

I hope this helps.