I try to use
-fullscreen in cmdline
write fullscreen=1 in everything.ini
And everything will launch in fullscreen mode, but when i press Esc want to close the everything window(still run in background)
The first action is exit the fullscreen mode, so i must press Esc two times to close everything.
Is there any method can press Esc one time to close the everything window when it's under fullscreen mode? Thank you
How to keep fullscreen?
Re: How to keep fullscreen?
I don't think that's possible with Everything alone
You can do this with this AutoHotkey Script
Or if you want to first exit fullscreen and then close the window
You will also have to enable "Tools=>Options=>General=>UI=>Run in background" if you want everything to keep running when you close the window
You can do this with this AutoHotkey Script
This closes the window in fullscreen mode so when you bring the everything window again,it will appear in fullscreen#IfWinActive,AHK_class EVERYTHING
Esc::WinClose
Or if you want to first exit fullscreen and then close the window
When you are in window mode,it will just send Esc but when you are in fullscreen,it will first exit and then close the window#IfWinActive,AHK_class EVERYTHING
Esc::
Keywait,Esc
WingetPos,X
If X = 0
{
Send,{F11}
Sleep,50
}
WinClose,A
Return
You will also have to enable "Tools=>Options=>General=>UI=>Run in background" if you want everything to keep running when you close the window
Re: How to keep fullscreen?
Currently Everything will eat one escape key press to cancel the fullscreen mode.
I've added an ini option esc_cancel_action for the next major version of Everything to control this ESC action.
I've added an ini option esc_cancel_action for the next major version of Everything to control this ESC action.
Re: How to keep fullscreen?
Thanks for your's reply, i will try to use AHK first
And wait the next major update of everthing
BTW. Is now the nightly build ver already has the ini option?
And wait the next major update of everthing
BTW. Is now the nightly build ver already has the ini option?
Re: How to keep fullscreen?
Thanks for your reply, i will wait
Re: How to keep fullscreen?
I've added the esc_cancel_action to Everything 1.4.1.956.
To disable the esc_cancel_action:
When disabled, pressing esc will no longer cancel the current action.
To re-enable the esc_cancel_action:
To disable the esc_cancel_action:
- Install Everything 1.4.1.956.
- In Everything 1.4.1.956 or later, type in the following search and press ENTER:
/esc_cancel_action=0
When disabled, pressing esc will no longer cancel the current action.
To re-enable the esc_cancel_action:
- In Everything 1.4.1.956 or later, type in the following search and press ENTER:
/esc_cancel_action=1
Re: How to keep fullscreen?
Thanks for your quickly work!!!
Using the ver.956 now, It's works fine like a charm!!