home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 April
/
PCWorld_2005-04_cd.bin
/
software
/
temacd
/
winamp
/
winamp508e_full.exe
/
$0
/
scripts
/
mainmenu.m
< prev
next >
Wrap
Text File
|
2004-12-20
|
1KB
|
47 lines
#include <lib/std.mi>
#include "attribs.m"
System.onScriptLoaded() {
initAttribs();
menubar_main_attrib.onDataChanged();
}
menubar_main_attrib.onDataChanged() {
Group Player = getscriptgroup().findobject("player.content.dummy.group");
Group MenuBar = getscriptgroup().findobject("wasabi.menubar");
if (getData() == "1") {
Player.setXmlParam("y","0");
MenuBar.show();
} else {
Player.setXmlParam("y","-17");
MenuBar.hide();
}
}
System.onKeyDown(String k) {
if (menubar_main_attrib.getData() == "0") return;
Layout l = getScriptGroup().getParentLayout();
if (!l.isActive()) return;
if (k == "alt+f") {
getScriptGroup().findObject("File.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+p") {
getScriptGroup().findObject("Play.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+o") {
getScriptGroup().findObject("Options.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+i") {
getScriptGroup().findObject("View.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
if (k == "alt+h") {
getScriptGroup().findObject("Help.menu").sendAction("open", "", 0, 0, 0, 0);
complete;
}
}