buttons needed

Features wanted...
Post Reply
SaiKarthik
Posts: 19
Joined: 05 Aug 2023 17:32

buttons needed

Post by SaiKarthik »

I would like to have buttons for below in the Toolbar
  • Reset Tree
  • Exit with Saving (currently using two buttons "Save Settings" >> then >> "Exit without Saving")
  • button to open the folder in windows explorer from Navigation Tree (currently using custom button)
custom open in explorer script.

Code: Select all

 $app = "%windir%\explorer.exe";

 $target = "";
 if ("<curitem>" == "") {
      $target = "<curpath>";
   } else {
      if (get("curitem", "ext") == "") {
         $target = "<curitem>";
      } else {
         $target = "<curpath>";
      }
   };
 
 run """$app"" ""$target""";
 

highend
Posts: 14925
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: buttons needed

Post by highend »

And where exactly is the problem to use custom buttons for this stuff?
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 66088
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: buttons needed

Post by admin »

For example, this is a possible Custom Toolbar Button script for exit with saving:

Code: Select all

exit s; //exit with saving

SaiKarthik
Posts: 19
Joined: 05 Aug 2023 17:32

Re: buttons needed

Post by SaiKarthik »

I didn't say There is problem using custom buttons.

I said I would like to have them shipped with the product instead of custom buttons.

admin
Site Admin
Posts: 66088
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: buttons needed

Post by admin »

Exit with Saving is a useful thing. I'll add that. The others rather not. Typical CTB stuff.

SaiKarthik
Posts: 19
Joined: 05 Aug 2023 17:32

Re: buttons needed

Post by SaiKarthik »

I would request "Reset Tree" button as well for the following:

Parent Folder
>> Sub Folder 1
>> Sub Folder 2
>> Sub Folder 3
>> Sub Folder 4


Now, i had enabled "mini tree" in the toolbar....
If i go to Sub Folder 2, then tree looks good.
If i go to Sub Folder 4, then tree still shows Sub Folder 2 also in the navigation bar.

But if i reset the tree, then it shows only Sub Folder 4 which is expected with mini tree enabled.


As i start explaining this, i think path after mini tree enabled should be raised as a bug...
Am i missing something here.?

admin
Site Admin
Posts: 66088
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: buttons needed

Post by admin »

I already said there won't be a "Reset Tree" button.

highend
Posts: 14925
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: buttons needed

Post by highend »

Exit with Saving is a useful thing
That's already the default when closing the app, why should there be an extra button for it?
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 66088
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: buttons needed

Post by admin »

You can change the default. And there is no menu command "Exit with Saving" that would overwrite a changed default.

SaiKarthik
Posts: 19
Joined: 05 Aug 2023 17:32

Re: buttons needed

Post by SaiKarthik »

Thanks for the update with "exit with saving".

Can u pls add a button for "Open Powershell Here" which is similar to "Open Command Prompt Here".?

This is another button helpful.

Post Reply