Hopefully not too much later. When we have that I can't think of anything else I would like in XY which is already now way in front of other file managers.
Toolbars - new line
-
XY fan
- Posts: 246
- Joined: 24 Mar 2022 10:58
- Location: Windows 11 225% scaling on 3840 x 2400 screen
-
admin
- Site Admin
- Posts: 66093
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
highend
- Posts: 14925
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
Re: Toolbars - new line
Yeah, not the best option but better then nothing^^
Here is a script for a user button.
Save it in a file: <your XY scripts folder>\
Create a user button and then you can drag a file or folder onto that button
When the snippet window pops up, just press CTRL+V (the necessary info is in the clipboard!)
and you get a new user button that leads to your gfile / folder.
Only drag ONE file or folder at a time!
Here is a script for a user button.
Save it in a file: <your XY scripts folder>\
Create user button.xysCreate a user button and then you can drag a file or folder onto that button
When the snippet window pops up, just press CTRL+V (the necessary info is in the clipboard!)
and you get a new user button that leads to your gfile / folder.
Only drag ONE file or folder at a time!
Code: Select all
$drop = <get drop>;
$type = exists($drop);
$name = gpc($drop, "file");
end ($type != 1 && $type != 2), "No file or folder drop, aborted!";
$template = <<<>>>
Snip: CTB 1
XYplorer <xyver>
Action
NewUserButton
Name
$name
Icon
label:$drop
ScriptL
goto "$drop";
ScriptR
FireClick
0
>>>;
copytext $template;
goto "::snippet;";
You do not have the required permissions to view the files attached to this post.
One of my scripts helped you out? Please donate via Paypal
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: Toolbars - new line
Hey Don, it doesn't appear that checking/unchecking "Allow Multiple Button Rows" triggers a save (i.e., the Save settings TB button never changes in any case). I don't know if that's intentional.
-
admin
- Site Admin
- Posts: 66093
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: Toolbars - new line
I'm also not seeing a change in Save settings for "Show Live filter box" though I know the setting is properly changed even when changing toolbar button sets. I couldn't tell you if that was the case before these recent toolbar changes.
-
admin
- Site Admin
- Posts: 66093
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Toolbars - new line
The whole Window menu did not dirty that button. Now it does. That's enough for this week. 
FAQ | XY News RSS | XY X
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
-
admin
- Site Admin
- Posts: 66093
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: Toolbars - new line
I know I'm the one who opened my big mouth, but now I don't think it was necessary to trigger a "save settings" button change for "Switch toolbar button set" alone. The other arrangement changes are justified, but users are going to change the button set quite frequently and it probably didn't require a save settings change. I think on restart XY would use the last used toolbar any way. 
-
admin
- Site Admin
- Posts: 66093
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
-
XY fan
- Posts: 246
- Joined: 24 Mar 2022 10:58
- Location: Windows 11 225% scaling on 3840 x 2400 screen
Re: Toolbars - new line
Should the "New Line" command be in the same place as the other dropdowns when right-clicking the Toolbar?
Seems sort of like 'burying' something so important to have it in the same place as just adding buttons - also less intuitive.
Seems sort of like 'burying' something so important to have it in the same place as just adding buttons - also less intuitive.
-
autocart
- Posts: 1378
- Joined: 26 Sep 2013 15:22
Re: Toolbars - new line
It's in the same place as the separator item (and all the other potential toolbar content). Seems like an ok place to me. Not sure what you mean.
[AHK] redirecting Windows Explorer to XY, [XYS] Mini Tree with open tabs (cur loc expanded, tab folders highlighted), [AHK] customInlineRenameKeys, [AHK] clipboardHelper_and_XYEscToList
-
klownboy
- Posts: 4459
- Joined: 28 Feb 2012 19:27
- Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440
Re: Toolbars - new line
Hi Don, any thoughts or plans on updating SC toolbar() syntax to obtain toolbar2, toolbar3, or toolbar4 buttons? As it stands now a user can only obtain or change the original toolbar (I'll call it #1) buttons via toolbar(). In a pinch we can get the other toolbars via SC getkey (e.g., getkey("toolbar2", "GENERAL") and set via SC setkey, but setkey needs a restart.
XYplorer Beta Club