XYplorer starts in dual pane
Posted: 27 Oct 2018 14:20
Hi, I'm using a AHK script to open Xyplorer with a shortcut. The problem is that XYplorer starts in dual pane every time I use it. This only happens when I open Xyplorer with this script, if open normally it starts in single pane configuration. Any ideas?
This is the script
---
Process, Exist, XYplorer.exe
IfWinActive, ahk_pid %ErrorLevel%
WinMinimize
else
{
IfWinExist, ahk_pid %ErrorLevel%
WinActivate
else
Run, C:\Program Files (x86)\XYplorer\XYplorer.exe
}
return
This is the script
---
Process, Exist, XYplorer.exe
IfWinActive, ahk_pid %ErrorLevel%
WinMinimize
else
{
IfWinExist, ahk_pid %ErrorLevel%
WinActivate
else
Run, C:\Program Files (x86)\XYplorer\XYplorer.exe
}
return