#9123
Yutaka Emura
Keymaster

I made a macro for you. NextBookmark() method will return false if EmEditor can’t find the next bookmark in the document.

bFound = document.selection.NextBookmark();
if( !bFound ){
document.selection.StartOfDocument(false);
document.selection.NextBookmark();
}