Mod request Thread last updated on 2004-02-17 17:53:30

Posted by member 8104 on 2004-02-17 14:04:24

I looked over at a couple of sites for this and didn't find it, but if it exists, let me know.

I am looking for a mod that will allow an image/display/thing (rainmeter's display, specifically) to show up in a scroll-in manner (not fade-in, but like when you click on a drop-down menu in IE) or disappear in the same manner when a bang command is executed.

Thanks in advance.

Posted by member 7 on 2004-02-17 14:58:56 link

lsbox and/or lsdynamic can do that iirc

Posted by member 5669 on 2004-02-17 16:23:03 link

you could try to build a script with mzscript:

*Script bang !METER_SHOW
*Script exec !VarSet x 0
*Script label animloop
*Script exec !RainmeterMove %{x} 5
*Script exec !Pause 15
*Script exec !VarAdd x 5
*Script gotoif (%{x} < 50) animloop
*Script ~bang


a script like this would make the rainmeter config move 5 pixels to the right ever 15 milliseconds until it reached 50 as the x coordinate. if this looks too complex and you want something simpler, try hooking the meter into an lsbox and use !LsBoxMoveBox X Y STEPS TIME (steps and time for the animation).

hope that helps a bit.

Posted by member 8104 on 2004-02-17 17:53:30 link

Thanks again. =^.^=