Page 1 of 2

script hide all gui toolbars?

Posted: 10 Nov 2013 06:26
by yusef88
hi everyone
there was a script in this forum to hide all gui toolbars ,any help to find it?

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 12:34
by Slavaon

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 12:39
by Filehero
yusef88 wrote:there was a script in this forum to hide all gui toolbars ,any help to find it?
It's not really a script, I guess, but it does the job quite well: <ctrl>+<F12>


Cheers,
Filehero

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 13:04
by yusef88

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 13:27
by yusef88
how to run / combine them together

Code: Select all

"Menu bar (Alt+up)|:props" #1061
"Show Address Bar|:go" #660
"Navigation Panel (F8)|:hidenav" #663
"Toolbar (Ctrl+F12)" #661	
one click hide them ,another one show them again

Image

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 13:40
by yusef88
Filehero wrote:
yusef88 wrote:there was a script in this forum to hide all gui toolbars ,any help to find it?
It's not really a script, I guess, but it does the job quite well: <ctrl>+<F12>

Cheers,
Filehero
LayoutManager [release 1.1]
it's yours ,and has this option
Image

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 16:18
by Filehero
yusef88 wrote: LayoutManager [release 1.1]
it's yours ,and has this option
Not exactly, that one is hiding all the bars, not just the toolbar. But you can use the shortcut to get it back.


Cheers,
Filehero

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 16:43
by yusef88
Filehero wrote: that one is hiding all the bars, not just the toolbar.
i was not accurate in my expression
hiding all bars that's what i meant and was looking for
thanks Filehero
cheers :beer:

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 16:50
by CookieMonster
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 ?

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 17:06
by Filehero
You mean sometning like the general MSWord context menu, where you get at least the most important format commands right at your mouse pointer?
Yes, this would be fine. But afaik it's (currently) impossible with SC.


Cheers,
Filehero

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 17:09
by CookieMonster
:( Shucks.

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 19:05
by yusef88
I didn't see your comment at first
this script actually does exactly what I want
very thanks

Re: script hide all gui toolbars?

Posted: 10 Nov 2013 21:34
by klownboy
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 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.

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
Maybe that's not what you were looking for. :?:
Ken

Re: script hide all gui toolbars?

Posted: 11 Nov 2013 05:05
by CookieMonster
klownboy wrote:
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 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.

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
Maybe that's not what you were looking for. :?:
Ken
The link you posted earlier in your message contained a screen capture of exactly what I was talking about :)

I copied the above code into a script button, when I ran the script I got errors, How do I add such a menu ?

Re: script hide all gui toolbars?

Posted: 11 Nov 2013 10:58
by totmad1
have a look at this
http://www.xyplorer.com/xyfc/viewtopic. ... 4&start=15
it's not fully up to date (couple of buttons missing)

HTH