それの場合は、これで動作すると思う。
waitの値を変更すると待ち時間が変わる。値1000は1秒間
(DarkBasicで、Syncの設定が無ければ、40Hzで自動更新されている。)

rem *** test ***
n=1
card=1

print "abcdefgh0123456789"
get image n,0,0,60,60,1
cls

for a=0 to 100 step 20
ax=x+36-(a*0.36)
ay=y
sprite n,ax,ay,card
stretch sprite n,a,100
wait 1000
next a

wait key
end