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.