It is currently May 3rd, 2024, 11:31 pm

Dark.Eve skin. Need help to make Scan left to right

Get help with creating, editing & fixing problems with skins
kunthefear
Posts: 1
Joined: March 10th, 2011, 9:49 am

Dark.Eve skin. Need help to make Scan left to right

Post by kunthefear »

I'm using Dark.Eve skin, i want to make Scan feature scan from left to right, the original scan from top to bottom

here is the code of Scan in Dark.Eve skin :

Code: Select all

[Rainmeter]
Author=Kenz0 (mail2kenz0@gmail.com)
BackgroundMode=0
Update=12

;Metadata added by RainBrowser
;http://rainmeter.net/RainWiki/index.php?title=Rainmeter_101#.5BMetadata.5D

[Metadata]
Name=
Config=
Description=
Instructions=
Version=
Tags=
License=
Variant=
Preview=

;End of added Metadata

[MeasureMove]
Measure=Calc
Formula=Counter % #SCREENAREAHEIGHT#

[MeasurePositionX]
Measure=Calc
Formula=(#SCREENAREAWIDTH# / 2) - 50

[MeasureTrigger]
Measure=Calc
Formula=Counter % 2
IfEqualValue=1
IfEqualAction=!RainmeterMove [MeasurePositionX] [MeasureMove]

[MeterBackground]
Meter=IMAGE
X=0
Y=1
W=1366
H=1
SolidColor=0, 0, 0,1
SolidColor2=255, 255, 255,200
GradientAngle=45.0
thanks alot
User avatar
santa_ryan
Posts: 397
Joined: June 22nd, 2010, 4:11 am

Re: Dark.Eve skin. Need help to make Scan left to right

Post by santa_ryan »

There you go

Code: Select all

[Rainmeter]
Author=Kenz0 (mail2kenz0@gmail.com)
BackgroundMode=0
Update=12

;Metadata added by RainBrowser
;http://rainmeter.net/RainWiki/index.php?title=Rainmeter_101#.5BMetadata.5D

[Metadata]
Name=
Config=
Description=
Instructions=
Version=
Tags=
License=
Variant=
Preview=

;End of added Metadata

[MeasureMove]
Measure=Calc
Formula=Counter % #SCREENAREAWIDTH#

[MeasurePositionY]
Measure=Calc
Formula=(#SCREENAREAHEIGHT# / 2) - 50

[MeasureTrigger]
Measure=Calc
Formula=Counter % 2
IfEqualValue=1
IfEqualAction=!RainmeterMove [MeasureMove] [MeasurePositionY]

[MeterBackground]
Meter=IMAGE
X=0
Y=1
W=1
H=#ScreenAreaHeight#
SolidColor=0, 0, 0,1
SolidColor2=255, 255, 255,200
GradientAngle=45.0
I have three rules when I'm trying to help you.
  • Don't get mad when you don't understand something
  • Be VERY specific with what you ask for.
    The more specific you are, the higher the quality of support you receive.
  • Do not just copy and paste what I put in examples and come back saying it doesn't work.
    It does work, but I purposely left blanks that you need to fill for your specific needs.