RGBFade
ColourValue = RGBFade(RgbColour, FadePercent)
 
Parameters:

    RgbColour = The Colour value you wish to fade
    FadePercent = The percentage to fade this colour (from 0 to 100 %)
Returns:

    ColourValue = The RGB's levels mixed into a rgb colour value
 

      The RGBFade() function will return the ColourValue faded by a user defined percentage.



FACTS:


      * None



Mini Tutorial:


      This example draw a moving message in a random RGB colour.

  
; Creat a variable called MyColour and assign it a colour
; value with the RGB function
  MyCOlour = RGB(255,200,0)
  
; set the INK colour and display a text message
  Ink MyColour
  Print "This Message is in the original colour"
  
; set the INK colour and fade it by 75%
  Ink RGBFade(MyColour,75)
  Print "This Message is faded By 75% from the original colour"
  
; set the INK colour and fade it by 50%
  Ink RGBFade(MyColour,50)
  Print "This Message is faded By 50% from the original colour"
  
; set the INK colour and fade it by 25%
  Ink RGBFade(MyColour,25)
  Print "This Message is faded By 25% from the original colour"
  
; set the INK colour to White (RGB(255,255,255) and print
; the end message.
  Ink RGB(255,255,255)
  Print "Press Any Key To End"
  Sync
  WaitKey
  



 
Related Info: RGB | RgbAlpha50 | RgbAlphaAdd | RgbAlphaAnd | RGBAlphaBlend | RgbAlphaMult | RgbAlphaOr | RgbAlphaSub | RgbAlphaXOr | RndRGB :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com