Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - SKAN

Pages: [1]
1
Script / How to close all tabs?
« on: June 18, 2013, 20:57:29 »
I use the following script to close all tabs in ( both panels ) and then open a couple of new explorers:

Code: [Select]
@var $n;
for( $n = 0; $n <= 20; $n++)
{
  MC.RunCmd ID=core.20002; // Ctrl+W
}
MC.Explorer.NewBrowser SIDE=LEFT  PATH="C:\";
MC.Explorer.NewBrowser SIDE=RIGHT PATH="D:\"

I feel uncomfortable with a limit of 20 tabs. Can anybody suggest a better way?

Pages: [1]