BBC BASIC for Windows
« Gradations of colour text »

Welcome Guest. Please Login or Register.
Apr 5th, 2018, 10:11pm



ATTENTION MEMBERS: Conforums will be closing it doors and discontinuing its service on April 15, 2018.
Ad-Free has been deactivated. Outstanding Ad-Free credits will be reimbursed to respective payment methods.

If you require a dump of the post on your message board, please come to the support board and request it.


Thank you Conforums members.

BBC BASIC for Windows Resources
Online BBC BASIC for Windows documentation
BBC BASIC for Windows Beginners' Tutorial
BBC BASIC Home Page
BBC BASIC on Rosetta Code
BBC BASIC discussion group
BBC BASIC for Windows Programmers' Reference

« Previous Topic | Next Topic »
Pages: 1  Notify Send Topic Print
 thread  Author  Topic: Gradations of colour text  (Read 350 times)
Danny
New Member
Image


member is offline

Avatar




PM


Posts: 12
xx Gradations of colour text
« Thread started on: Mar 30th, 2015, 12:08pm »

Hi

I would appreciate if someone could let me know how to get gradations of a colour with text. So, for example if I wanted the word "hello" to gradually appear from a black background in a certain colour.

I am using MODE 29 and this is the type of simple BB4W code that I can understand

MODE 29
REPEAT
COLOUR 9
PRINT "HELLO"
UNTIL


Thanks in anticipation,

Danny
User IP Logged

rtr2
Guest
xx Re: Gradations of colour text
« Reply #1 on: Mar 30th, 2015, 12:43pm »

on Mar 30th, 2015, 12:08pm, Danny wrote:
So, for example if I wanted the word "hello" to gradually appear from a black background in a certain colour.

How about this (MODE 29 is too big to fit on my screen so I used MODE 27):

Code:
      MODE 27
      *font Arial,36
      FOR C% = 1 TO 255
        COLOUR 7,0,C%,C%
        PRINT TAB(2,2) "Hello";
        WAIT 1
      NEXT
      PRINT 

Richard.
User IP Logged

Danny
New Member
Image


member is offline

Avatar




PM


Posts: 12
xx Re: Gradations of colour text
« Reply #2 on: Mar 30th, 2015, 1:37pm »

thanks Richard it works a treat
User IP Logged

Pages: 1  Notify Send Topic Print
« Previous Topic | Next Topic »

| |

This forum powered for FREE by Conforums ©
Terms of Service | Privacy Policy | Conforums Support | Parental Controls