home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Blender
/
bestofblender.iso
/
pc
/
blender
/
files
/
beastvr
/
beastvrm.dir
/
00149_Script_149
< prev
next >
Wrap
Text File
|
1996-04-25
|
3KB
|
93 lines
--WINDOW SCRIPTS
--CONTROLPANEL WINDOWS
on CONTROLS
global CONTROLWINDOW, DEST
if objectP(CONTROLWINDOW) then
forget CONTROLWINDOW
end if
set horzOrigin to the stageleft + 448
set vertOrigin to the stagetop + 0
set CONTROLWINDOWrect to rect (horzOrigin, vertOrigin, horzOrigin + 192, vertOrigin + 60)
set CONTROLWINDOW to window DEST & "CONTROLS.DIR"
set the rect of CONTROLWINDOW to CONTROLWINDOWrect
set the fileName of CONTROLWINDOW to DEST & "CONTROLS.DIR"
set the titleVisible of CONTROLWINDOW to FALSE
set the modal of CONTROLWINDOW to FALSE
set the windowType of CONTROLWINDOW to 2
open CONTROLWINDOW
end
--SURE YOU WANT TO QUIT? DIALOGUE
on endMOVIE
installMenu 0
global CONTROLWINDOW, DEST
if objectP(CONTROLWINDOW) then
forget CONTROLWINDOW
end if
set horzOrigin to the stageleft + 160
set vertOrigin to the stagetop + 130
set CONTROLWINDOWrect to rect (horzOrigin, vertOrigin, horzOrigin + 320, vertOrigin + 220)
set CONTROLWINDOW to window DEST & "CONTROL.DIR"
set the rect of CONTROLWINDOW to CONTROLWINDOWrect
set the fileName of CONTROLWINDOW to DEST & "CONTROL.DIR"
set the titleVisible of CONTROLWINDOW to FALSE
set the modal of CONTROLWINDOW to FALSE
set the windowType of CONTROLWINDOW to 2
open CONTROLWINDOW
end
--MENU
on MENU
global CONTROLWINDOW, DEST
if objectP(CONTROLWINDOW) then
forget CONTROLWINDOW
end if
set horzOrigin to the stageleft + 490
set vertOrigin to the stagetop + 0
set CONTROLWINDOWrect to rect (horzOrigin, vertOrigin, horzOrigin + 150, vertOrigin + 408)
set CONTROLWINDOW to window "MENU.DIR"
set the rect of CONTROLWINDOW to CONTROLWINDOWrect
set the fileName of CONTROLWINDOW to "MENU.DIR"
set the titleVisible of CONTROLWINDOW to FALSE
set the modal of CONTROLWINDOW to FALSE
set the windowType of CONTROLWINDOW to 2
open CONTROLWINDOW
end
--HELPSCREEN
on HELPMOVIE
global CONTROLWINDOW2, DEST
set horzOrigin to the stageleft - 288
set vertOrigin to the stageTop + 100
set CONTROLWINDOW2rect to rect (horzOrigin, vertOrigin, horzOrigin + 430, vertOrigin + 206)
set CONTROLWINDOW2 to window DEST & "HELP.DIR"
set the rect of CONTROLWINDOW2 to CONTROLWINDOW2rect
set the fileName of CONTROLWINDOW2 to DEST & "HELP.DIR"
set the titleVisible of CONTROLWINDOW2 to FALSE
set the windowType of CONTROLWINDOW2 to 2
open CONTROLWINDOW2
set the modal of CONTROLWINDOW2 to FALSE
end
--DISPOSE OF WINDOWS
on stopMovie
finishMovie
end
on finishMovie
global CONTROLWINDOW, CONTROLWINDOW2
set the modal of window DEST & "CONTROL" to FALSE
set the modal of window DEST & "CONTROLS" to FALSE
set the modal of window DEST & "MENU" to FALSE
set the modal of window DEST & "HELP" to FALSE
if objectP(CONTROLWINDOW) then
forget CONTROLWINDOW
end if
if objectP(CONTROLWINDOW2) then
forget CONTROLWINDOW2
end if
trackTimeStop
end