home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 3 / CARTS3.iso / scala / wipes / fade.wip < prev    next >
Text File  |  1996-05-08  |  1KB  |  47 lines

  1. !ScalaScript
  2. /****************************************
  3.  *
  4.  * Fade.wip - fade wipes
  5.  *
  6.  ****************************************/
  7.  
  8. /* Fades down to black, then fades in the new picture */
  9.  
  10. FADEWIPE("Fade", Out(RGB, 1, 2, 3), In(RGB, 4, 5, 6));
  11.  
  12. /* Cut to white, then fade in new picture */
  13. FADEWIPE("Nuclear", In(RGB, 255, 255, 255));
  14.  
  15. /* Fade to white then fade new picture in from white */
  16. FADEWIPE("WhiteFade", Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255));
  17.  
  18. /* Fade to black, cut to white, fade new picture in from white */
  19. FADEWIPE("NukeAtNight", Out(RGB, 0, 0, 0), In(RGB, 255, 255, 255));
  20.  
  21. /* Fade old picture to black, cut in new picture */
  22. FADEWIPE("FadeCut", Out(RGB, 0, 0, 0));
  23.  
  24. /* Fade via gold */
  25. FADEWIPE("FauGoldFade", Out(RGB, 230, 165, 55), In(RGB, 230, 165, 55));
  26.  
  27. /* Fade via red */
  28. FADEWIPE("FadeViaRed", Out(RGB, 255, 20, 20), In(RGB, 255, 20, 20));
  29.  
  30. /* Fade via navyblue */
  31. FADEWIPE("NavyBlueFade", Out(RGB, 20, 20, 180), In(RGB, 20, 20, 180));
  32.  
  33. /***** Entries *****/
  34.  
  35. GROUPID($07109400);
  36. ICONFILE(":scala/wipes/wipes.bmp", Size(26,18), Spacing(32,20));
  37.  
  38. ENTRY("Fade",         Icon(5,0));
  39. ENTRY("Nuclear",      Icon(6,0));
  40. ENTRY("NukeAtNight",  Icon(7,0));
  41. ENTRY("WhiteFade",    Icon(8,0));
  42. ENTRY("FadeCut",      Icon(15,12));
  43. ENTRY("FauGoldFade",  Icon(9,0));
  44. ENTRY("FadeViaRed",   Icon(10,0));
  45. ENTRY("NavyBlueFade", Icon(11,0));
  46.  
  47.