View Single Post
  #2 (permalink)  
Old Aug 15th, 2007, 20:07
Sgaspar11 Sgaspar11 is offline
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Problems with Volume Control for Flash MP3 Player

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;
 }
}
Reply With Quote