I wanna start making a LS theme i just wanna know if there is any modules out there that can produce movement like something poping up or slidin down the screen ?
or if any 1 knows how to do it ?
thanks
Any module that has a "move" bang, such as !SystrayMove can produce "movement" if you use it with what's commonly called scripting. mzscript is probably the best way to do that as you can pause between "frames" much more easily, although you can certainly just use pause.dll with the !Execute bang. mzscript, however, allows for dynamic coordinates and adding / subtracting to them, so it would be easier to keep track of positions.
You can get some real nice movement using mzscript and lsbox together. Here is an example of what I'm using right now...
*script bang !MoveTaskbarToMouse
*script exec !LsBoxMoveBox taskbar3 %{mousex} %{mousey} 50 10
*script ~bang
I love the fact that mzscript lets you move a box right to your mouse cursor.