Function CreateAnimWindow(title$,width,height,x,y,group,style=1+2) Local curw=0 Local curh=0 window=CreateWindow(title$,curw,curh,x,y,group,style) Repeat curw=curw+5 If curw>width curw=width EndIf SetGadgetShape window,x,y,curw,curh Delay 1 Until curw=width Repeat curh=curh+5 If curh>height curh=height EndIf SetGadgetShape window,x,y,curw,curh Delay 1 Until curh=height Return windowEnd FunctionFunction DeleteAnimWindow(wnd) Local curw=GadgetWidth(wnd) Local curh=GadgetHeight(wnd) Local x=GadgetX(wnd),y=GadgetY(wnd) Repeat curh=curh-5 If curh<0 curh=0 EndIf SetGadgetShape wnd,x,y,curw,curh Delay 1 Until curh=0 Repeat curw=curw-5 If curw<0 curw=0 EndIf SetGadgetShape wnd,x,y,curw,curh Delay 1 Until curw=0 FreeGadget wndEnd Functionwnd=CreateAnimWindow("TEST",640,480,50,50,Desktop())RepeatUntil WaitEvent()=$803DeleteAnimWindow(wnd)