// Called by Directory Opus to initialize the script function OnInit(initData) { initData.name = "Focus on Tree"; initData.desc = "New windows open with the focus on the folder tree."; initData.copyright = "(c) 2016 Leo Davidson"; initData.version = "1.0"; initData.default_enable = true; } // Called when a new Lister is opened function OnOpenLister(openListerData) { var cmd = DOpus.Create.Command(); cmd.SetSourceTab(openListerData.lister.activetab); cmd.RunCommand("Set FOCUS=Tree"); }