Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- March 29, 2008 at 6:18 pm #5620Yutaka EmuraKeymaster
The Next Group command was missed feature on and before Version 7. While this command should be included in future versions of EmEditor, use this macro before it is included in the EmEditor core.
bFirst = true;
wnds = new Enumerator( shell.windows );
for( ; !wnds .atEnd(); wnds.moveNext() ){
wnd = wnds.item();
if( wnd && wnd.className == "EmEditorMainFrame3" ){
if( !bFirst ){
wnd.SetForeground();
break;
}
bFirst = false;
}
}
March 30, 2008 at 3:02 am #5623Yutaka EmuraKeymasterIf you have more than two groups, you might need this macro to jump to another group.
wnds = shell.windows;
nMax = wnds.Count;
for( i = nMax; i > 0; i-- ){
wnd = wnds.Item( i );
if( wnd && wnd.className == "EmEditorMainFrame3" ){
wnd.SetForeground();
break;
}
}
- AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.