#17854
Yutaka Emura
Keymaster

Hi no1,

After you open the file as Binary (ASCII View), you can record a macro. For example, when the cursor is at the left top corner, you can click the “Record All Except Mouse/Keyboard Activities” button on the toolbar, and record your keystroke like this:

Press RIGHT 8 times, COMMA (,), RIGHT 30 times, COMMA (,), RIGHT 15 times, COMMA (,), RIGHT 10 times, COMMA (,), RIGHT 13 times, … , HOME, DOWN.

Then stop recording the macro. This will record a macro like this (in case of JavaScript):

document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.Text=",";
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.Text=",";
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.Text=",";
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.Text=",";
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.CharRight(false,1);
document.selection.Text=",";
document.selection.StartOfLine(false,eeLineView | eeLineHomeText);
document.selection.LineDown(false,1);

Then you can choose Run with Temporary Options on the Macros menu, and enter the number of lines as the “Repeat Count”. After you have done this, save the file, and open the file and switch to the CSV mode. I hope this helps.