home *** CD-ROM | disk | FTP | other *** search
- volumen.control._x = volumetrico;
- onEnterFrame = function()
- {
- music.setVolume(volumen.control._x);
- volumetrico = volumen.control._x;
- };
- linko.onRelease = function()
- {
- getUrl("http://www.rjgam.es", "_blank");
- };
- volumen.control.onPress = function()
- {
- volumen.control.onEnterFrame = function()
- {
- this._x = _root._xmouse;
- if(this._x <= 0)
- {
- this._x = 0;
- }
- if(this._x >= 100)
- {
- this._x = 100;
- }
- };
- };
- volumen.control.onMouseUp = function()
- {
- volumen.control.onEnterFrame = function()
- {
- };
- };
-