home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Internet Web Designer 90
/
PIWD90.iso
/
mac
/
contents
/
flash
/
tutorial_files
/
Pages60-64
/
ZoomMenu.swf
/
scripts
/
zoomButton.as
< prev
Wrap
Text File
|
2003-12-18
|
609b
|
20 lines
function ZoomButton()
{
this.sectionHolder = eval(this.sectionHolder);
this.label_tf.text = this.label;
this.sectionHolder.loadSection(this.label,this.sectionLink);
this.onRollOver = this.zoomToSection;
this.onRelease = this.zoomToDetail;
this.useHandCursor = this.handOnRollover;
}
ZoomButton.prototype = new MovieClip();
ZoomButton.prototype.zoomToSection = function()
{
this.sectionHolder.zoomToSection(this.label);
};
ZoomButton.prototype.zoomToDetail = function()
{
this.sectionHolder.zoomToDetail(this.label);
};
Object.registerClass("zoomButton",ZoomButton);