Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- June 29, 2008 at 3:03 am #5955deepbirchParticipant
In emeditor jscript macro, How can I select A from B. A and B is the word I want to found.
belowed text I want to select from A to B
ex) dfdefdsfesdfefsdfesdfef A dfesdfefsdfdfesdfefsdf
sdfesxdfewdfsfss dfesdfesdfesdfesdfsesdfesdf
sdfedefefsfesfsefdsffesdfefsdfefsfsdfedsfsefsdfsefsdf
sdfesdfe B dfdf efdfeJune 30, 2008 at 4:37 pm #5956Yutaka EmuraKeymasterdeepbirch wrote:
In emeditor jscript macro, How can I select A from B. A and B is the word I want to found.
belowed text I want to select from A to B
ex) dfdefdsfesdfefsdfesdfef A dfesdfefsdfdfesdfefsdf
sdfesxdfewdfsfss dfesdfesdfesdfesdfsesdfesdf
sdfedefefsfesfsefdsffesdfefsdfefsfsdfedsfsefsdfsefsdf
sdfesdfe B dfdf efdfe
document.selection.StartOfDocument(false);
document.selection.Find("A",eeFindNext | eeFindReplaceCase);
document.selection.CharLeft(false,1);
editor.ExecuteCommandByID(4153);
document.selection.Find("B",eeFindNext | eeFindReplaceCase);
July 5, 2008 at 3:59 am #5965deepbirchParticipantThank you for your answer.
It works exactly what I want. ^^ - AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.