home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Armed Forces Navy Canada Demo Disc
/
CF_FC.bin
/
pc
/
07_Contact_FR.swf
/
scripts
/
frame_2
/
DoAction.as
< prev
Wrap
Text File
|
2008-06-18
|
758b
|
28 lines
function doSomething()
{
}
function doSomething2()
{
getURL("http://www.recruiting.forces.gc.ca",_blank);
}
getURL("FSCommand:fullscreen",true);
getURL("FSCommand:allowscale",false);
escKey = {};
escKey.onKeyDown = function()
{
if(Key.getCode() == 27)
{
getUrl("FSCommand:quit", "CF_FC.exe");
}
};
Key.addListener(escKey);
getUrl("FSCommand:trapallkeys", "true");
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This movie is copyrighted by CFRG Multimedia Services",doSomething);
Functioned2 = new ContextMenuItem("Visit our website",doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;