home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 July
/
CMCD0704.ISO
/
Software
/
Demo
/
elearn
/
Fizica
/
interfata.swf
/
scripts
/
FComboBoxItemSymbol.as
< prev
next >
Wrap
Text File
|
2004-05-12
|
401b
|
15 lines
function FComboBoxItemClass()
{
this.init();
}
FComboBoxItemClass.prototype = new FSelectableItemClass();
Object.registerClass("FComboBoxItemSymbol",FComboBoxItemClass);
FComboBoxItemClass.prototype.setSize = function(w, h)
{
super.setSize(w,h);
this.highlight_mc.onRollOver = function()
{
this.controller.controller.selectionHandler(this.controller.itemNum);
};
};