Hi I've this script which adds subtitles in any video by setting markers and then running this script :


{
// Subtitle generator by !Rocky
// modified by Colin Harman ( http://colinharman.com/ ) to work on a Mac
//
// Save this code as
// "subtitles.jsx"
//
// Create a text file with your subtitles.
// Each line of text is one on-screen line.
// To have several lines on-screen at the same time,
// simply separate them with a pipe ( | ) character.
// eg "Character 1 talks|Character 2 interrupts"
//
// Create a new text layer in your comp, adjust its position,
// make sure the text's centered, so it looks nice
// Add markers (Numpad *) where each subtitle line must be shown/hidden.
// With the text layer selected, run the script, and select the subtitles file.
// Enjoy!

function makeSubs() {
var layer = app.project.activeItem.selectedLayers[0];

if (layer.property("sourceText") != null) {
var textFile = File.openDialog("Select a text file to open.", "");
if (textFile != null) {
var textLines = new Array();
textFile.open("r", "TEXT", "????");

while (!textFile.eof)
textLines[textLines.length] = textFile.readln();

textFile.close();

var sourceText = layer.property("sourceText");
var markers = layer.property("marker");

for (var i = sourceText.numKeys; i >= 1; i--)
sourceText.removeKey(i);

var line = 0;
var subTime, subText;
for (var i = 1; i <= markers.numKeys; i++) {
subTime = markers.keyTime(i);
sourceText.setValueAtTime(0, " ");

if ((i % 2) == 0) {
subText = " ";
}
else {
subText = textLines[line].replace("|", "\x0d\x0a");
line++;
}
sourceText.setValueAtTime(subTime, new TextDocument(subText));
}
}
}
}
makeSubs();
}


it works really well on adobe after effects cs5 but I want someone to edit it so I don't have to add markers to hide subtitles it's very annoying to add subtitles like this way for example : Now I have to press Num* to show subtitles and then again Num* to hide and vice versa..

All I want is to only press Num* to show subtitles and when I press Num* again it should show next line in .txt file , and auto hiding previous line. So it will be very easy to add subtitles like this..

can someone modify this ?

Thanks in advance.