Gouloudrouioul wrote: ↑May 23rd, 2020, 3:37 pm
Hello I have a question about this really helpful plugin !
So... I just downloaded it and used the default skin that displays the application that currently has focus, and if it is full screen or not.
But It always display "Not full screen", even if I am in full screen.
Why ?
Hard to say. The rules are that the application has "focus" and that it is actually "full screen", not just a maximized window, that is NOT "full screen".
Give your browser focus by clicking on it, then hit F11 to make it true full screen. The skin should indicate such.
Gouloudrouioul wrote: ↑May 23rd, 2020, 3:57 pm
Ho hey indeed you're right...
Damn, I was looking for something similar to IsFullScreen but with maximized windows... Is there such a plugin ?
There is no plugin I am aware of, but there is a little addon executable I wrote a while back that might help some.
[MeasureIsFullScreen]
Measure=Plugin
Plugin=IsFullScreen
OnChangeAction=[!UpdateMeasure MeasureCheckProcess]
[MeasureCheckProcess]
Measure=String
String=[MeasureIsFullScreen:][MeasureIsFullScreen]
IfMatch=(?is)1Explorer.exe|0.*
IfMatchAction=STUFF THAT HAPPENS WHEN NO WINDOW IS FULLSCREEN
IfNotMatchAction=STUFF THAT HAPPENS WHEN SOMETHING IS FULLSCREEN
UpdateDivider=-1
DynamicVariables=1
Pretty simple. No need to use a !SetVariable bang... Checked and works.
Basically any time Explorer.exe is the focus and [MeasureIsFullScreen] = 1, it forces it to perform the [MeasureIsFullScreen] = 0 action anyway. You can add any number of additional apps to this filter by just changing IfMatch to (?is)1Explorer.exe|(?is)1YOURAPPNAME.exe|0.*
jsmorley wrote: ↑April 18th, 2018, 3:25 amNote that the parent process for all Windows 10 "apps", including things like Settings or Windows Update, as well as apps like OneNote or Calculator, is a process called ApplicationFrameHost.exe. That will always be returned in those cases. No, it can't tell you that you are playing Microsoft Solitaire.
arthur7227 wrote: ↑February 7th, 2022, 11:03 pm
is it possible to make the skin dissapear more smoothly or quickly when openin program in full screen ?
To quickly show / hide a skin, you have to use the !Show / !Hide bangs. For a smoother showing / hiding use the !ShowFade / !HideFade bangs. The first pair shows / hides instantly the skin, while the second ones are using a fading effect. The !FadeDuration bang can be used to set how long this effect to last. If you don't exactly know how to use this, please let us know.