home *** CD-ROM | disk | FTP | other *** search
- function setdirector()
- {
- this.anwendung = "director";
- }
- function setButtons()
- {
- var _loc3_ = 0;
- while(_loc3_ < list.length)
- {
- var _loc2_ = list[_loc3_];
- _loc2_.active = false;
- _loc2_.frame = _loc3_ + 3;
- _loc2_.button.onRollOver = function()
- {
- if(!this._parent.active)
- {
- this._parent.gotoAndStop("in");
- }
- };
- _loc2_.button.onRollOut = function()
- {
- if(!this._parent.active)
- {
- this._parent.gotoAndStop("out");
- }
- };
- _loc2_.button.onReleaseOutside = function()
- {
- if(!this._parent.active)
- {
- this._parent.gotoAndStop("out");
- }
- };
- _loc2_.button.onRelease = function()
- {
- if(!this._parent.active)
- {
- reset();
- this._parent.active = true;
- this._parent.gotoAndStop("in");
- gotoAndStop(this._parent.frame);
- }
- };
- _loc3_ = _loc3_ + 1;
- }
- this.b01.button.onRelease();
- }
- function reset()
- {
- var _loc1_ = 0;
- while(_loc1_ < list.length)
- {
- var _loc2_ = list[_loc1_];
- _loc2_.active = false;
- _loc2_.gotoAndStop("out");
- _loc1_ = _loc1_ + 1;
- }
- }
- this.anwendung = "flash";
- var list = new Array(this.b01,this.b02,this.b03);
-