I dont have a cool layout to post, but Ive been playing with text animations like scrolling and having fun with that. Heres what I have for scrolling text in my infobox:
CODE
$puts(lgtitle,%title% ¤ )
$puts(count,$mod(%_time_elapsed_seconds%,$len($get(lgtitle))))
// Length Of Scroll Area
$puts(scrlg,20)
// Scroll Left
$puts(lscroll,$substr($repeat($get(lgtitle),2),$add(1,$get(count)),$add($get(count),$get(scrlg))))
// Scroll Right
$puts(rscroll,$left($right($repeat($get(lgtitle),2),$get(count))$repeat($get(lgtitle),2),$get(scrlg)))
$ifgreater($len(%title%),$get(scrlg),$get(lscroll),%title%)
This is for my main window title. It garbles the text and slowly scrolls in the title.
CODE
$puts(tag,%title%)
$puts(rand1,$replace($lower($get(tag)),a,$num($add($mod($rand(),26),1),2),b,$num($add($mod($rand(),26),1),2),c,$num($add($mod($rand(),26),1),2),d,$num($add($mod($rand(),26),1),2),e,$num($add($mod($rand(),26),1),2),f,$num($add($mod($rand(),26),1),2),g,$num($add($mod($rand(),26),1),2),h,$num($add($mod($rand(),26),1),2),i,$num($add($mod($rand(),26),1),2),j,$num($add($mod($rand(),26),1),2),k,$num($add($mod($rand(),26),1),2),l,$num($add($mod($rand(),26),1),2),m,$num($add($mod($rand(),26),1),2),n,$num($add($mod($rand(),26),1),2),o,$num($add($mod($rand(),26),1),2),p,$num($add($mod($rand(),26),1),2),q,$num($add($mod($rand(),26),1),2),r,$num($add($mod($rand(),26),1),2),s,$num($add($mod($rand(),26),1),2),t,$num($add($mod($rand(),26),1),2),u,$num($add($mod($rand(),26),1),2),v,$num($add($mod($rand(),26),1),2),w,$num($add($mod($rand(),26),1),2),x,$num($add($mod($rand(),26),1),2),y,$num($add($mod($rand(),26),1),2),z,$num($add($mod($rand(),26),1),2)))
$puts(rand1,$replace(& #036;get(rand1),01,a,02,b,03,c,04,d,05,e,06,f,07,g,08,h,09,i,10,j,11,k,12,l,13,m,14,n,15,o,16,p,17,q
,18,r,19,s,20,t,21,u,22,v,23,w,24,x,25,y,26,z))
$puts(garble,$left($get(tag),$mod(%_time_elapsed_seconds%,$len($get(tag) )))$substr($get(rand1),$add($mod(%_time_elapsed_seconds%,$len($get(tag) )),1),$len($get(tag) )))
$get(garble)
(ps - one of the $ in the last codebox is getting replaced by code. dunno why)