It is currently September 29th, 2024, 9:26 am

Skin Position

General topics related to Rainmeter.
PinDev
Posts: 25
Joined: April 26th, 2015, 11:37 am
Location: Earth

Skin Position

Post by PinDev »

Another question about Rainmeter

when the default position setting of skin is either stay topmost or topmost

Is it possible to make Rainmeter skin position setting to change when some app go full screen like VLC? :confused:
User avatar
jsmorley
Developer
Posts: 22783
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Skin Position

Post by jsmorley »

There really is not. Rainmeter can't detect any "state" of any other application, minimized, maximized etc.

All you could do is check to see if VLC.exe is running, and depending on if it is or isn't, change the !ZPos of the skin as desired.

Code: Select all

[MeasureVLC]
Measure=Plugin
Plugin=Process
ProcessName=vlc.exe
IfEqualValue=1
IfEqualAction=[!ZPos "-2"]
IfBelowValue=0
IfBelowAction=[!ZPos "2"]
PinDev
Posts: 25
Joined: April 26th, 2015, 11:37 am
Location: Earth

Re: Skin Position

Post by PinDev »

jsmorley wrote:There really is not. Rainmeter can't detect any "state" of any other application, minimized, maximized etc.

All you could do is check to see if VLC.exe is running, and depending on if it is or isn't, change the !ZPos of the skin as desired.

Code: Select all

[MeasureVLC]
Measure=Plugin
Plugin=Process
ProcessName=vlc.exe
IfEqualValue=1
IfEqualAction=[!ZPos "-2"]
IfBelowValue=0
IfBelowAction=[!ZPos "2"]
Thanks for fast answer :D
User avatar
jsmorley
Developer
Posts: 22783
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Skin Position

Post by jsmorley »