i dont know them all... but i remember these one..and there is MANY OTHER!!!!
(just un comment the loop your want to see ...you should see a GREEN box ..but you see orange... the is the result of flickering between green and red...)
rem you should only see a green box....but you see orange..
remstart DELETE BITMAP-----
sync on
sync rate 0
do
create bitmap 1,1,1
set current bitmap 0
cls
ink rgb(255,0,0),0
box 0,0,639,479
delete bitmap 1
ink rgb(0,255,0),0
box 0,0,639,479
sync
loop
remend
remstart SLEEP-----
sync on
sync rate 0
do
cls
ink rgb(255,0,0),0
box 0,0,639,479
sleep 0
ink rgb(0,255,0),0
box 0,0,639,479
sync
loop
remend
remstart WAIT----
sync on
sync rate 0
do
cls
ink rgb(255,0,0),0
box 0,0,639,479
wait 0
ink rgb(0,255,0),0
box 0,0,639,479
sync
loop
remend
remstart SAVE BITMAP----
sync on
sync rate 0
do
cls
ink rgb(255,0,0),0
box 0,0,639,479
save bitmap "qq.bmp",0
ink rgb(0,255,0),0
box 0,0,639,479
delete file "qq.bmp"
sync
loop
remend
remstart INPUT
sync on
sync rate 0
do
cls
ink rgb(255,0,0),0
box 0,0,639,479
input a
ink rgb(0,255,0),0
box 0,0,639,479
sync
loop
remend
remstart SHOW MOUSE
sync on
sync rate 0
do
cls
ink rgb(255,0,0),0
box 0,0,639,479
show mouse
ink rgb(0,255,0),0
box 0,0,639,479
sync
loop
remend