home *** CD-ROM | disk | FTP | other *** search
- !ScalaScript
- /****************************************
- *
- * Fade.wip - fade wipes
- *
- ****************************************/
-
- /* Fades down to black, then fades in the new picture */
-
- FADEWIPE("Fade", Out(RGB, 1, 2, 3), In(RGB, 4, 5, 6));
-
- /* Cut to white, then fade in new picture */
- FADEWIPE("Nuclear", In(RGB, 255, 255, 255));
-
- /* Fade to white then fade new picture in from white */
- FADEWIPE("WhiteFade", Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255));
-
- /* Fade to black, cut to white, fade new picture in from white */
- FADEWIPE("NukeAtNight", Out(RGB, 0, 0, 0), In(RGB, 255, 255, 255));
-
- /* Fade old picture to black, cut in new picture */
- FADEWIPE("FadeCut", Out(RGB, 0, 0, 0));
-
- /* Fade via gold */
- FADEWIPE("FauGoldFade", Out(RGB, 230, 165, 55), In(RGB, 230, 165, 55));
-
- /* Fade via red */
- FADEWIPE("FadeViaRed", Out(RGB, 255, 20, 20), In(RGB, 255, 20, 20));
-
- /* Fade via navyblue */
- FADEWIPE("NavyBlueFade", Out(RGB, 20, 20, 180), In(RGB, 20, 20, 180));
-
- /***** Entries *****/
-
- GROUPID($07109400);
- ICONFILE(":scala/wipes/wipes.bmp", Size(26,18), Spacing(32,20));
-
- ENTRY("Fade", Icon(5,0));
- ENTRY("Nuclear", Icon(6,0));
- ENTRY("NukeAtNight", Icon(7,0));
- ENTRY("WhiteFade", Icon(8,0));
- ENTRY("FadeCut", Icon(15,12));
- ENTRY("FauGoldFade", Icon(9,0));
- ENTRY("FadeViaRed", Icon(10,0));
- ENTRY("NavyBlueFade", Icon(11,0));
-
-