home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DIGIZINE 1
/
DIGIZINE.BIN
/
main
/
sony
/
mainmov.dir
/
00011_Script_11
< prev
next >
Wrap
Text File
|
1995-08-18
|
827b
|
45 lines
--go to 3D
on mousedown
global gCursorState
if the doubleClick then
abort
end if
--closed hand cursor
set Z = the number of cast "ClosedHandCursor"
set ZZ = the number of cast "ClosedHandCursor" + 1
set the cursor of sprite(20) to [Z,ZZ]
SETPOPUP
if gCursorState = true then
nothing
else
TRACKUSER
end if
end
on mouseup
global gCursorState
if the doubleClick then
abort
end if
put the ticks into gLastClick
--open hand cursor
set Z = the number of cast "OpenHandCursor"
set ZZ = the number of cast "OpenHandCursor" + 1
set the cursor of sprite(20) to [Z,ZZ]
if gCursorState = true then
SHOWINFO --user clicked on a hotspot
else
RESET3D --user clicked on nothing
end if
end