Hi, Im new to rainmeter I'm using a mond skin specifically player, I'm using it with windows media player. I wan't to hid the player when not in use i.e When ever the windows media player is not open the skin must stay hidden and as soon as i open the wmp, the skin to display. Is ther any way to acheive this?
Here is the link to skin https://visualskins.com/skin/mond'
I have attached the code.
Any help will be appericiated Thank you.
It is currently March 30th, 2023, 3:27 pm
Hiding music player when not in use.
-
- Posts: 1
- Joined: December 3rd, 2020, 7:14 am
Hiding music player when not in use.
You do not have the required permissions to view the files attached to this post.
-
- Rainmeter Sage
- Posts: 15075
- Joined: October 11th, 2010, 6:27 pm
- Location: Gheorgheni, Romania
Re: Hiding music player when not in use.
Yep, there is. Just add the following measure to your code:
Code: Select all
[MeasureStatus]
Measure=Plugin
Plugin=NowPlaying.dll
PlayerName=#Player#
PlayerType=STATUS
IfCondition=(#CURRENTSECTION#>=1)
IfTrueAction=[!ShowFade]
IfFalseAction=[!HideFade]
Note that this way, even if the skin is hidden, it still is loaded, just not visible, so it still consumes resources (obviously not too much, but not zero).
-
- Posts: 1
- Joined: November 14th, 2022, 6:07 pm
Re: Hiding music player when not in use.
Thank you, it worked for me! 

-
- Rainmeter Sage
- Posts: 15075
- Joined: October 11th, 2010, 6:27 pm
- Location: Gheorgheni, Romania
-
- Posts: 1
- Joined: January 17th, 2023, 11:35 pm
Re: Hiding music player when not in use.
So i'm very new to this, where would I be putting this code into? I'd really like the media player gone entirely off of Rainmeter (Mond) as I won't use it. I am not even sure if that's what the other guy was asking for but idk.
-
- Rainmeter Sage
- Posts: 15075
- Joined: October 11th, 2010, 6:27 pm
- Location: Gheorgheni, Romania
Re: Hiding music player when not in use.
If you have downloaded the Mond package, you have to add the above measure anywhere into the Mond\Player\Player.ini file. Don't forget to refresh the skin. By adding this, you get the skin hidden when there is nothing to play and shown when the player is playing. Not sure what you mean by "gone entirely off", but the measure hides the skin, doesn't deactivate (close) it. If you deactivate it, it won't be reactivated once the player starts playing.