BLINKING TEXT? 
Author Message
 BLINKING TEXT?

HI!
 Is there a simple way to make text blink it Qbasic? Kinda like the HTML
command "<blink>"?   THANKS!
                                   ~~JD~~

  ___________________________________________
 |    __    ____                             |
 |   |  |  |  _ \  INTERNET E-MAIL:          |

 ||  |  |  | |_/ | BBS E-MAIL:               |

 |                 PROGRAMMER WANNA-BE       |
 |___________________________________________|



Sat, 10 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?

Quote:

>HI!
> Is there a simple way to make text blink it Qbasic? Kinda like the HTML
>command "<blink>"?   THANKS!
>                                   ~~JD~~

>  ___________________________________________
> |    __    ____                             |
> |   |  |  |  _ \  INTERNET E-MAIL:          |

> ||  |  |  | |_/ | BBS E-MAIL:               |

> |                 PROGRAMMER WANNA-BE       |
> |___________________________________________|

Here you go:

CLS
COLOR 23, 0
  PRINT "This text will blink"

COLOR 31, 0
  PRINT "This text will Blink in High Intensity White"
END




Sun, 11 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?

Quote:

> Is there a simple way to make text blink it Qbasic? Kinda like the HTML
>command "<blink>"?   THANKS!

COLOR 7, 0: PRINT "This text is static."
COLOR 23, 0: PRINT "This text is blinking."

... in other words, just add 16 to the foreground colour.
--
           David Burbridge, MechEng III, Imperial College, London
       http://whitworth.me.ic.ac.uk/people/students/djbur/djbur.html
 for transport, photos, qbasic, fun stuff, radio, & other assorted diversions
     ObSmartQuote: Computer programmers do it with an operating system



Mon, 12 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?
Quote:

> >HI!
> > Is there a simple way to make text blink it Qbasic? Kinda like the HTML
> >command "<blink>"?   THANKS!
> >                                   ~~JD~~Yes,

Add 16 to the foreground color. So, COLOR 31 (15 + 16) IS BLINKING
INTENSIVE WHITE
--
Egbert Zijlema
PO-box 60,
NL-9700 MC  GRONINGEN

Voice:  +31 50 5844275
Fax:    +31 50 5844308


Mon, 12 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?

Quote:
>>HI!
>> Is there a simple way to make text blink it Qbasic? Kinda like the HTML
>>command "<blink>"?   THANKS!

>Here you go:

>CLS
>COLOR 23, 0
>  PRINT "This text will blink"

>COLOR 31, 0
>  PRINT "This text will Blink in High Intensity White"
>END

Unfortunately this requires the user to be in ansi mode if the program is
being used for something like a bulletin board. The other disadvantage is
the speed of the blink.

So another solution is to embed a blank line into a loop that prints out the
text.

The main reason I did this with my programs was that it allow text to blink
when the user is calling a non-blinking protocal such as Ripscript.

Perry

                 T     H     E           F     A     R     M
         ___________________________________________________________

         ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^

         ___________________________________________________________

                          WHERE HOGS GATHER TO PLAY



Mon, 12 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?

Why not just use blinking colors? There's an interrupt (not available in
Q-Basic, of course, but it defaults to blinking, anyway) that will
toggle between hi-intensity background colors and regular, but blinking
background colors.

Quote:
>>>>HI!
>>>> Is there a simple way to make text blink it Qbasic? Kinda like the HTML
>>>>command "<blink>"?   THANKS!

>>>Here you go:

>>>CLS
>>>COLOR 23, 0
>>>  PRINT "This text will blink"

>>>COLOR 31, 0
>>>  PRINT "This text will Blink in High Intensity White"
>>>END
>>Unfortunately this requires the user to be in ansi mode if the program is
>>being used for something like a bulletin board. The other disadvantage is
>>the speed of the blink.
>>So another solution is to embed a blank line into a loop that prints out the
>>text.
>>The main reason I did this with my programs was that it allow text to blink
>>when the user is calling a non-blinking protocal such as Ripscript.
>>Perry
>>                 T     H     E           F     A     R     M
>>         ___________________________________________________________
>>         ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^

>>         ___________________________________________________________
>>                          WHERE HOGS GATHER TO PLAY


My silly homepage - http://www.linknet.net/lphilpot/
Howls of derisive laughter, Bruce...


Wed, 14 Oct 1998 03:00:00 GMT  
 BLINKING TEXT?

Quote:

>Why not just use blinking colors? There's an interrupt (not available in
>Q-Basic, of course, but it defaults to blinking, anyway) that will
>toggle between hi-intensity background colors and regular, but blinking
>background colors.

>>>>>HI!
>>>>> Is there a simple way to make text blink it Qbasic? Kinda like the HTML
>>>>>command "<blink>"?   THANKS!

>>>>Here you go:

>>>>CLS
>>>>COLOR 23, 0
>>>>  PRINT "This text will blink"

>>>>COLOR 31, 0
>>>>  PRINT "This text will Blink in High Intensity White"
>>>>END

>>>Unfortunately this requires the user to be in ansi mode if the program is
>>>being used for something like a bulletin board. The other disadvantage is
>>>the speed of the blink.

>>>So another solution is to embed a blank line into a loop that prints out t
>>>text.

>>>The main reason I did this with my programs was that it allow text to blin
>>>when the user is calling a non-blinking protocal such as Ripscript.

>>>Perry

True Ripscript doesn't support blinking colors, if the blink relies on ansi
color codes. Remember the purpose of Ripscript is to transmit over a modem.
With one minor exception it only supports the 0-127 byte ascii standard.
Whatever method used has to follow the conventions allowed within Ripscript.

When using the normal blinking colors the system would have to have the
ability of doing redirection to the comport without interpreting blinking
characters as ansi. This leaves you only a couple of choices, either
blinking the character or blink the line by sending a blank character or
line to the selected spot within the Rip text viewport.

Perry

                 T     H     E           F     A     R     M
         ___________________________________________________________

         ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^ ^. .^

         ___________________________________________________________

                          WHERE HOGS GATHER TO PLAY



Fri, 16 Oct 1998 03:00:00 GMT  
 
 [ 7 post ] 

 Relevant Pages 

1. Blinking Text???

2. Blinking text refreshes.

3. Inverted and blinking text?

4. Blinking Text/Label

5. Help with blinking text!

6. blinking text

7. blinking text

8. Blinking Text

9. BLink blink blink

10. Blinking button text

11. blinking cursor in text boxes????????

12. rich text box and blinking characters

 

 
Powered by phpBB® Forum Software