Your entire Move Script should now look something like this:
on StartMovie
LoadMenus()
CheckColor()
END StartMovie
on CheckColor
if the colorDepth <> 8 then
ALERT "Caution: This computer is set to
something other than 256-color (8-bit) color mode." & RETURN &
RETURN & "Some colors in this program may not be displayed
correctly."
end if
END CheckColor
on LoadMenus
if the machineType <> 256 then
installMenu cast "helloMacMenu"
else
installMenu cast "helloWinMenu"
end if
END LoadMenus
on AboutBox
ALERT "This 'Hello, World' program was written by [your name] using Macromedia Director."
END AboutBox
|