#5623
Yutaka Emura
Keymaster

If 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;
}
}