Page 1 of 1
Permanent Startup Path
Posted: 03 Nov 2010 23:09
by arirish
Under the Startup & Exit 'tab' in the configuration, I have the permanent startup path set to 'My Computer'. I believe this is meant to work so that whenever I start XYplorer, it always starts on that tab, am I correct?
That's what it seems to do, anyway. I have my first tab locked and iconised and set to My Computer, and on startup, XY always starts on this tab. Great.
The problem comes when I'm using dual pane mode. If I'm working on the second pane when I close down, then when I start up again the program creates a new My Computer tab on the second pane.
I follow the logic, but I'd really like it if I could set a permanent startup PANE as well, this way no matter where I was working when I closed, I'd always restart back on pane 1, tab 1, My Computer.
Oh, and by the way, LOVING the new Catalog features. It's making working with XY on PC and laptop much more efficient and prettier, being able to switch between what I refer to as my 'start menus'.
Re: Permanent Startup Path
Posted: 09 Nov 2010 16:40
by arirish
I guess nobody else has this issue/is bothered about this, huh?
Re: Permanent Startup Path
Posted: 09 Nov 2010 16:57
by serendipity
the_hyrax_lord wrote:I guess nobody else has this issue/is bothered about this, huh?
You can create a
script and place it in the XY shortcut. So whenever XY starts it will start with your defined parameters.
Copy/paste below
script to a file and name it MyStart.xys
Code: Select all
//focus pane 1
focus p1;
//Goto my computer
goto %computer%;
Right-click your XY shortcut on the desktop and it will look something like this:
Code: Select all
"C:\Program files\XYplorer.exe" /ini="XYplorer"
Add your
script MyStart in between path and /ini:
Code: Select all
"C:\Program files\XYplorer.exe" /script=MyStart /ini="XYplorer"
Done. Everytime you start it will be Pane1 and My computer.

Re: Permanent Startup Path
Posted: 09 Nov 2010 17:11
by arirish
serendipity wrote:the_hyrax_lord wrote:I guess nobody else has this issue/is bothered about this, huh?
You can create a
script and place it in the XY shortcut. So whenever XY starts it will start with your defined parameters.
Copy/paste below
script to a file and name it MyStart.xys
Code: Select all
//focus pane 1
focus p1;
//Goto my computer
goto %computer%;
Right-click your XY shortcut on the desktop and it will look something like this:
Code: Select all
"C:\Program files\XYplorer.exe" /ini="XYplorer"
Add your
script MyStart in between path and /ini:
Code: Select all
"C:\Program files\XYplorer.exe" /script=MyStart /ini="XYplorer"
Done. Everytime you start it will be Pane1 and My computer.

Hmm! Well, I did it (I think, correctly). Now to see if it works. Thanks
Still and all, it'd be nice to be able to set the start pane, considering we can already set the start tab.
Re: Permanent Startup Path
Posted: 10 Nov 2010 10:27
by admin
It's not that easy to keep the UI in sync when changing one of the many factors... anyway I tried something. In the next BETA look for an INI key
StartPanePerm and choose one of these settings:
Code: Select all
StartPanePerm=0 (start with last pane)
StartPanePerm=1 (start with 1st pane)
StartPanePerm=2 (start with 2nd pane)
If it works ok I'll raise it to GUI level.
Re: Permanent Startup Path
Posted: 10 Nov 2010 19:39
by admin
admin wrote:It's not that easy to keep the UI in sync when changing one of the many factors... anyway I tried something. In the next BETA look for an INI key
StartPanePerm and choose one of these settings:
Code: Select all
StartPanePerm=0 (start with last pane)
StartPanePerm=1 (start with 1st pane)
StartPanePerm=2 (start with 2nd pane)
If it works ok I'll raise it to GUI level.
So, did anybody try it with v9.70.0006?
Re: Permanent Startup Path
Posted: 10 Nov 2010 19:48
by SkyFrontier
Out of a few restartings, so far so good, Don.
Re: Permanent Startup Path
Posted: 10 Nov 2010 20:19
by arirish
Same here, it's working well. Thanks, Don.
Re: Permanent Startup Path
Posted: 16 Nov 2010 09:57
by ghost zero
shouldn't there be a permanent startup path option for EACH pane? not just the first pane? for users that start XY in dual pane mode.