Page 1 of 1

Need help on setting my Taskbar skin

Posted: February 21st, 2023, 5:40 am
by TheJArzelle
So I have created my own taskbar skin which is shown below:
image_2023-02-21_132914240.png
What I want to do is the skin to be over the windows and clickable thru the taskbar which is shown below:
image_2023-02-21_133343792.png
I achieved this by making the skin in topmost position and checking the Click Through option..
But my problem is that the skin would still be visible even if the websites are on fullscreen like YouTube or any website for example:
image_2023-02-21_133754285.png
I need some suggestions on how to solve this problem thank you...

Re: Need help on setting my Taskbar skin

Posted: February 21st, 2023, 12:26 pm
by eclectic-tech
You could look at the IsFullScreen plugin.

Re: Need help on setting my Taskbar skin

Posted: February 22nd, 2023, 12:18 am
by TheJArzelle
eclectic-tech wrote: February 21st, 2023, 12:26 pm You could look at the IsFullScreen plugin.
So I found this code that hides the skin using isFullscreen but it doesnt work tho

Code: Select all

[Rainmeter]
Update=500


[Variables]
X1=-150

[mIsFullScreen]
Measure=Plugin
Plugin=IsFullScreen
IfCondition=mIsFullScreen=1
IfTrueAction=[!Hide "Taskbar"]
IfFalseAction=[!Show "Taskbar"]

[Taskbar]
Meter=Image
ImageName=HI3.png
X=X1
W=1366 
PreserveAspectRatio=0

Re: Need help on setting my Taskbar skin

Posted: February 22nd, 2023, 8:30 am
by balala
TheJArzelle wrote: February 22nd, 2023, 12:18 am So I found this code that hides the skin using isFullscreen but it doesnt work tho
Unfortunately the IsFullScreen plugin suggested by eclectic-tech doesn't detect the maximized window as being a full screen window. Full screen window in this case means for instance a video played on full screen either from a media player app or from a browser, a full screen game or whatever else, which has no "bordered" window. Maximized windows are not so and the plugin doesn't detect them as occupying the entire surface of the screen.

Re: Need help on setting my Taskbar skin

Posted: February 22nd, 2023, 2:27 pm
by eclectic-tech
Ah yes! 'Maximized' is not the same as 'Fullscreen'... :oops:

Personally, I feel trying to customize the Windows taskbar is a fruitless endeavor.
Any method to determine if an open window is maximized is going to be a convoluted process and never cover all of the possibilities.

Perhaps someone else wants to go down that "rabbit hole", but not me. About Rainmeter

Re: Need help on setting my Taskbar skin

Posted: February 22nd, 2023, 3:50 pm
by balala
eclectic-tech wrote: February 22nd, 2023, 2:27 pm Personally, I feel trying to customize the Windows taskbar is a fruitless endeavor.
Any method to determine if an open window is maximized is going to be a convoluted process and never cover all of the possibilities.
Right. As far as I can tell, this is not possible at the moment.
eclectic-tech wrote: February 22nd, 2023, 2:27 pm Perhaps someone else wants to go down that "rabbit hole", but not me.
Me neither, to be honest...