script hide all gui toolbars?
Posted: 10 Nov 2013 06:26
hi everyone
there was a script in this forum to hide all gui toolbars ,any help to find it?
there was a script in this forum to hide all gui toolbars ,any help to find it?
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
It's not really a script, I guess, but it does the job quite well: <ctrl>+<F12>yusef88 wrote:there was a script in this forum to hide all gui toolbars ,any help to find it?
Code: Select all
"Menu bar (Alt+up)|:props" #1061
"Show Address Bar|:go" #660
"Navigation Panel (F8)|:hidenav" #663
"Toolbar (Ctrl+F12)" #661 
LayoutManager [release 1.1]Filehero wrote:It's not really a script, I guess, but it does the job quite well: <ctrl>+<F12>yusef88 wrote:there was a script in this forum to hide all gui toolbars ,any help to find it?
Cheers,
Filehero

Not exactly, that one is hiding all the bars, not just the toolbar. But you can use the shortcut to get it back.yusef88 wrote: LayoutManager [release 1.1]
it's yours ,and has this option
i was not accurate in my expressionFilehero wrote: that one is hiding all the bars, not just the toolbar.
I didn't see your comment at firstSlavaon wrote:Maybe it: http://www.xyplorer.com/xyfc/viewtopic.php?f=7&t=8724
Maybe I'm misunderstanding what you'd like, but you can have a menu with all or whatever toolbar commands (CTBs) you'd like with icons with a script similar to the one below. You could be working in a completely bare XY environment (i.e., no bars) and have a User Defined Command bring up your menu (e.g., pressing numpad 1) of all or your selected CTBs or even sub menus. See http://www.xyplorer.com/xyfc/viewtopic. ... =15#p93665 I'm not taking credit for this below, it (or something similar) was posted some time ago and I couldn't find it again.CookieMonster wrote:What would be awesome if you could take all the icons in the tool bar and make them a pop up context menu with icons, you could have a nice clean U.I and control everything in a popup menu ?
Code: Select all
" - Toolbar Button Operations -";
"-"
"Back|:back" button "back"
"Forward|:fore" button "fore"
"Up|:up" button "up"
"Recent Locations|:mru" button "mru"
"Hotlist|:hotlist" button "hotlist"
"MyComputer|:myco" button "myco"
"Drives|:drives" button "drives"
"Find|:find" button "find"
"Properties|:props" button "props"
"Copy Path/Name|:copypath" button "copypath"
"Open With|:openwith" button "openwith"
"Preview|:preview" button "preview"
"Floating Preview|:fp" button "fp"
"Full Screen Preview|:previewfull" button "previewfull"
"Quick File View|:qfv" button "qfv"
"Favorite Files|:favfiles" button "favfiles"
"Tags|:tagsadd" button "tags"
"Copy|:copy" button "copy"
"Custom Keyboard Shortcuts|:cks" button "cks";
"Customized File Icons|:cfi" #653;
"Manage Commands|:udc" button "udc"
//I don't want to take up a bunch of wasted space, but this could go on and on like this with whatever selected CTBs you desireThe link you posted earlier in your message contained a screen capture of exactly what I was talking aboutklownboy wrote:Maybe I'm misunderstanding what you'd like, but you can have a menu with all or whatever toolbar commands (CTBs) you'd like with icons with a script similar to the one below. You could be working in a completely bare XY environment (i.e., no bars) and have a User Defined Command bring up your menu (e.g., pressing numpad 1) of all or your selected CTBs or even sub menus. See http://www.xyplorer.com/xyfc/viewtopic. ... =15#p93665 I'm not taking credit for this below, it (or something similar) was posted some time ago and I couldn't find it again.CookieMonster wrote:What would be awesome if you could take all the icons in the tool bar and make them a pop up context menu with icons, you could have a nice clean U.I and control everything in a popup menu ?Maybe that's not what you were looking for.Code: Select all
" - Toolbar Button Operations -"; "-" "Back|:back" button "back" "Forward|:fore" button "fore" "Up|:up" button "up" "Recent Locations|:mru" button "mru" "Hotlist|:hotlist" button "hotlist" "MyComputer|:myco" button "myco" "Drives|:drives" button "drives" "Find|:find" button "find" "Properties|:props" button "props" "Copy Path/Name|:copypath" button "copypath" "Open With|:openwith" button "openwith" "Preview|:preview" button "preview" "Floating Preview|:fp" button "fp" "Full Screen Preview|:previewfull" button "previewfull" "Quick File View|:qfv" button "qfv" "Favorite Files|:favfiles" button "favfiles" "Tags|:tagsadd" button "tags" "Copy|:copy" button "copy" "Custom Keyboard Shortcuts|:cks" button "cks"; "Customized File Icons|:cfi" #653; "Manage Commands|:udc" button "udc" //I don't want to take up a bunch of wasted space, but this could go on and on like this with whatever selected CTBs you desire![]()
Ken