HOME | DD

Published: 2013-03-26 19:08:17 +0000 UTC; Views: 27705; Favourites: 48; Downloads: 4257
Redirect to original
Description
Last update : 31/03/2013 version 1.1.5.31032013This is Dynamic Monitor Rainmeter skin. Simple monitoring that shows information about system cpu, drives and network.
(Update: now there's Setting button to easily customize)
If you download it and find something wrong, please kindly comment here. Hope you like it !
The skin pause moving when mouse over it. If you click pause then it will stay there. Click start to move it again.
If you have suggestion, please comment.
Fix reported bug. Now the skin smoothly pause moving. Tested at 1366x768 screen.
Request done. Now there's Setting button to easily customize.
I'm just ordinary guy who want to share something - ZakycooL
-------------------------------------------------------------------------------------------------------
#GetWatchers: You need more Exposure, Watchers and Views on your Art? Join us!
Related content
Comments: 39
BinaryByte [2015-06-08 17:49:28 +0000 UTC]
I went to download it,and my network security systems gave me a trojan alert: Pasta.AXY.Was a trojan planted into this file?
👍: 0 ⏩: 1
m0rphiT [2014-05-04 15:50:49 +0000 UTC]
i got a ram_ now use it!
even though looks pretty cool_ thank you
👍: 0 ⏩: 0
ZakycooL In reply to VirtualGirls [2014-02-24 21:40:29 +0000 UTC]
yup, for some pc. I should update the code, but I'm too lazy to do it.
👍: 1 ⏩: 0
ZakycooL In reply to billyk1983 [2014-01-07 02:41:35 +0000 UTC]
Oh... I see. I just reply on your previous comment.
👍: 0 ⏩: 0
billyk1983 [2014-01-05 17:29:46 +0000 UTC]
Hey, Nice work. I am trying to code a skin in which a Blue square will move back and forth like this, but only by 50 pixels in each direction instead of the whole screen. I have written it and looking at it, it seems perfect but for some reason it is stuck in a loop. There aren't many people who design moving skins, and I was hoping you would take a look at the code to see if I am missing something. Thanks.
👍: 0 ⏩: 1
billyk1983 In reply to ZakycooL [2014-01-06 20:37:13 +0000 UTC]
I was waiting for you to accept my plea for help before posting of course.
[Rainmeter]
Update=1
onrefreshaction=!Execute [!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]
[Variables]
Hold=0
;=================================================================================================================================================
[MoveDown1]
Measure=Calc
Formula=0
;=================================================================================================================================================
[MoveRightCount1]
Measure=Calc
FormulaMoveRightCount1+(#Hold#?0:1))%(50+(#Hold#?0:1))
DynamicVariables=1
UpdateDivider=1
[MoveRight1]
Measure=Calc
Formula=1770 + [MoveRightCount1]
IfEqualValue=1820
IfEqualAction=!Execute [!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]
DynamicVariables=1
UpdateDivider=1
[MoveRightAction1]
Measure=Calc
Formula=Counter % (#Hold#?0:2)
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveRight1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1
;=================================================================================================================================================
[MoveLeftCount1]
Measure=Calc
FormulaMoveLeftCount1+(#Hold#?0:1))%(50+(#Hold#?0:1))
DynamicVariables=1
UpdateDivider=1
[MoveLeft1]
Measure=Calc
Formula=1820 - [MoveLeftCount1]
IfEqualValue=1770
IfEqualAction=!Execute [!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]
DynamicVariables=1
UpdateDivider=1
[MoveLeftAction01]
Measure=Calc
Formula=Counter % (#Hold#?0:2)
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveLeft1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1
;=================================================================================================================================================
[Square]
Meter=Image
SolidColor=0,0,255,255
W=100
H=100
[Text]
Meter=String
x=10r
y=10r
Text=Hello
FontColor=255,255,255,255
👍: 0 ⏩: 1
ZakycooL In reply to billyk1983 [2014-01-07 02:38:43 +0000 UTC]
Try this...
[Rainmeter]
Update=1
onrefreshaction=[!DisableMeasure MoveLeftCount1][!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRightCount1][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]
[Variables]
Hold=0
Set1=1820
Set2=1770
;=================================================================================================================================================
[MoveDown1]
Measure=Calc
Formula=100
;=================================================================================================================================================
[MoveRightCount1]
Measure=Calc
FormulaMoveRightCount1+1)%((#Set1#-#Set2#)+1)
DynamicVariables=1
UpdateDivider=1
[MoveRight1]
Measure=Calc
Formula=#Set2# + [MoveRightCount1]
IfEqualValue=#Set1#
IfEqualAction=[!DisableMeasure MoveRightCount1][!DisableMeasure MoveRight1][!DisableMeasure MoveRightAction1][!EnableMeasure MoveLeftCount1][!EnableMeasure MoveLeft1][!EnableMeasure MoveLeftAction01]
DynamicVariables=1
UpdateDivider=1
[MoveRightAction1]
Measure=Calc
Formula=Counter%2
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveRight1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1
;=================================================================================================================================================
[MoveLeftCount1]
Measure=Calc
FormulaMoveLeftCount1+1)%((#Set1#-#Set2#)+1)
DynamicVariables=1
UpdateDivider=1
[MoveLeft1]
Measure=Calc
Formula=#Set1# - [MoveLeftCount1]
IfEqualValue=#Set2#
IfEqualAction=[!DisableMeasure MoveLeftCount1][!DisableMeasure MoveLeft1][!DisableMeasure MoveLeftAction01][!EnableMeasure MoveRightCount1][!EnableMeasure MoveRight1][!EnableMeasure MoveRightAction1]
DynamicVariables=1
UpdateDivider=1
[MoveLeftAction01]
Measure=Calc
Formula=Counter%2
IfEqualValue=0
IfEqualAction=!RainmeterMove [MoveLeft1] [MoveDown1]
DynamicVariables=1
UpdateDivider=1
;=================================================================================================================================================
[Square]
Meter=Image
SolidColor=0,0,255,255
W=100
H=100
[Text]
Meter=String
x=10r
y=10r
Text=Hello There!
FontColor=255,255,255,255
👍: 0 ⏩: 0
DeepKum [2013-06-07 00:41:28 +0000 UTC]
Loving this Zakycool. Great work buddy, really liked the Skin part...However unable to change colours?? Can you suggest to do so!
👍: 0 ⏩: 1
ZakycooL In reply to DeepKum [2013-06-07 02:16:29 +0000 UTC]
Thanks Glad you like it.
If you hover mouse on the skin, the setting button will appear. There you can change the color. It's on RGB.
0,0,0 = black
255,255,255 = white
👍: 0 ⏩: 0
almang45 [2013-06-04 17:46:50 +0000 UTC]
it's great and simple i think, but how to make it stop moving? i mean forever
👍: 0 ⏩: 1
ZakycooL In reply to almang45 [2013-06-07 02:18:19 +0000 UTC]
You have to edit the skin. Delete meters and measures that make it moving.
👍: 0 ⏩: 1
mxyoulmf [2013-04-23 10:56:12 +0000 UTC]
Thank you ~ ~ I would like to ask the picture is there to change???
👍: 0 ⏩: 1
ZakycooL In reply to mxyoulmf [2013-04-23 19:23:04 +0000 UTC]
I don't get it. Change what picture?
👍: 0 ⏩: 0
ZakycooL In reply to tibinthomas22 [2013-03-31 11:00:39 +0000 UTC]
Thank you, bro
You can change the color into anything you want, it's customizable.
👍: 0 ⏩: 1
aizeah555 In reply to ZakycooL [2013-04-23 04:59:26 +0000 UTC]
AWWW I DON'T VISIT DEVIANT ART TOO MUCH
👍: 0 ⏩: 1
ZakycooL [2013-03-27 09:00:23 +0000 UTC]
Update the rmskin file. Simpler coding and lighter for cpu.
👍: 0 ⏩: 1
BigDog3141 [2013-03-26 22:26:44 +0000 UTC]
Nice, but... how can I make it stop moving? Other than that, it's a very nice skin.
👍: 0 ⏩: 2
ZakycooL In reply to BigDog3141 [2013-03-28 04:17:10 +0000 UTC]
Update.
It now can stop moving. Thanks for the idea!
👍: 0 ⏩: 0
ZakycooL In reply to BigDog3141 [2013-03-26 23:34:11 +0000 UTC]
Thanks
I think of something to make it stop moving, maybe when cursor mouse over it...
I will add it later.
👍: 0 ⏩: 1
ajelliottjr In reply to ZakycooL [2013-04-04 21:50:54 +0000 UTC]
Thank you so much. Another Idea is to check on the current verison of Rainmeter and display it, Look forward to your next projects...
👍: 0 ⏩: 1
ZakycooL In reply to blackeye-beast [2013-03-26 23:28:47 +0000 UTC]
Thanks Glad you like it
👍: 0 ⏩: 0
ajelliottjr [2013-03-26 21:37:55 +0000 UTC]
puts me in a trace, but nice, so can I park it. ;0
👍: 0 ⏩: 0