It's not letting me download the file, but here is some code for my volume slider that I use for our streaming video player...
Cross check it with this and see if you come up with anything! The only different should be mine is embedded withing another movieclip, so the Entire Slider bar for everything, then the individual slider bar for the volume controls.
- Code: Select all
var myVolPerc = 100 / my_c.volumeMC.bg._width;
my_c.volumeMC.butt.onPress = function() {
startDrag(this, false, 0, -2, this._parent.bg._width - this._width, -2);
this.onEnterFrame = function() {
audio_sound.setVolume(this._x * myVolPerc);
this._parent.meter._width = this._x + 1;
}
}