Posted: Wed Nov 10, 2004 12:04 pm Post subject: wow
%im new at this%
[code]
loop
put " "
colorback (87)
put " "
colorback (yellow)
put " "
colorback (79)
put " "
colorback (1)
put " "
end loop
[/code]
Sponsor Sponsor
cool dude
Posted: Wed Nov 10, 2004 1:13 pm Post subject: (No subject)
don't wanna put anyone down but u r right u r new at this. what exactly did u wanna show us just the background changing colours. its a good start though that u know how to change the background colour. some people in my class know turing but still keep asking me how to change the background colour. lol. good luck with turing.
Hikaru79
Posted: Thu Nov 11, 2004 7:29 am Post subject: (No subject)
Programs involving flashing colors are usually the first kind people in my class discovered, too Here's a cool one based on yours. Same idea, but a bit more involved.
code:
var col : int := 1
var increment : int := 1
loop
colorback (col)
put " "
col += increment
if col = 255 then
increment := -1
elsif col = 1 then
increment := +1
end if
end loop
Try to understand what I did here =) If you can, I'll kick it up a notch and we'll go from there ^ ^
the_short1
Posted: Thu Nov 11, 2004 12:06 pm Post subject: (No subject)
suggestion: add soem delays
delay (10) or something.. its a LITTLE FAST on a p4 at school //
other then that... check out my thread about visual effects to get good ideas for future projects.. and to learn soem cool techniches..