home *** CD-ROM | disk | FTP | other *** search
- button background =
- {
- cast =
- {
- bitmap bmpBackground = { file = "WebConnectBase.bmp"; transparency = 255,0,255; }
- }
- frame 1 = { keyframe = { actor = bmpBackground; } }
- }
-
- button yes =
- {
- cast =
- {
- bitmap bmpYesN = { file = "WebConnectYesNorm.bmp"; transparency = 255,0,255; }
- bitmap bmpYesR = { file = "WebConnectYesRoll.bmp"; transparency = 255,0,255; }
- bitmap bmpYesP = { file = "WebConnectYesPress.bmp"; transparency = 255,0,255; }
- sound sndYesP = { file = "../../../../sounds/button.wav"; }
- }
- frame 1 = { keyframe = { actor = bmpYesN; } }
- frame 2 = { keyframe = { actor = bmpYesR; } }
- frame 3 =
- {
- keyframe = { actor = bmpYesP; }
- keyframe = { actor = sndYesP; }
- }
- }
-
- button no =
- {
- cast =
- {
- bitmap bmpNoN = { file = "WebConnectNoNorm.bmp"; transparency = 255,0,255; }
- bitmap bmpNoR = { file = "WebConnectNoRoll.bmp"; transparency = 255,0,255; }
- bitmap bmpNoP = { file = "WebConnectNoPress.bmp"; transparency = 255,0,255; }
- sound sndNoP = { file = "../../sounds/button.wav"; }
- }
- frame 1 = { keyframe = { actor = bmpNoN; } }
- frame 2 = { keyframe = { actor = bmpNoR; } }
- frame 3 =
- {
- keyframe = { actor = bmpNoP; }
- keyframe = { actor = sndNoP; }
- }
- }
-
- movie BACKGROUND =
- {
- speed = 10;
-
- frame 1 "start" =
- {
- stop = true;
- keyframe Background =
- {
- layer = 12;
- actor = background;
- position = 0,0;
- scale = 1, 1;
- tween = { position = true; scale = true; easing = 2.0; }
- onMouseDown = { callback = "Background"; }
- }
- keyframe Yes =
- {
- layer = 7;
- actor = yes;
- position = 31,139;
- scale = 1, 1;
- tween = { position = true; scale = true; easing = 2.0; }
- onMouseUp = { callback = "Yes"; }
- onMouseRollUp = { callback = "OverYes"; }
- onMouseOffUp = { callback = "NotOverYes"; }
- }
- keyframe No =
- {
- layer = 7;
- actor = no;
- position = 164,141;
- scale = 1, 1;
- tween = { position = true; scale = true; easing = 2.0; }
- onMouseUp = { callback = "No"; }
- onMouseRollUp = { callback = "OverNo"; }
- onMouseOffUp = { callback = "NotOverNo"; }
- }
- }
- }
-