Insert bookmark to next line in notepad++? -


I have some lines of bookmarks I want to add a bookmark for the next line of these lines.

http: //img259.imageshack.us / img259 / 5674 / nextbookmark.png

I recorded this macro on Notepad ++, but I do not understand because it does not work properly:

  F2 down arrow ctrl + F2   

This bus combination gives me an error, is there a solution?

This is the raw macro code:

http: // img411. Imageshack.us/img411/5002/macrocode.png

In this case, I record F2-down arrow-ctrl + F2 3 times.

But I do not want to record the number of rows that are marked (21, 59, 63), I just want to apply the macro.

I will solve this problem by using AutoHotKey..i record a script and make it with this text Edit:

WinWait, * New2 - Notepad ++, ifWinNotActive, * New2 - Notepad ++, WinActivate, * New2 - Notepad ++, Sleep, 100 Sense D, {F2} {DOWN} {CTRLDOWN} {F2} {CTRLUP}


** New2 is the name of my currently opened Notepad ++ Window =

** Send, {F2} {DOWN} {CTRLDOWN} {F2} {CTRLUP} After the bookmark above the keyboard is necessary to create a bookmark . If I receive many times Send, {F2} {DOWN} {CTRLDOWN} {F2} {CTRLUP}

Comments