ActionScript 3.0 :: Make A Volume Control?
May 9, 2011How to make the slider component into a volume control in ActionScript 3.0.
View 3 RepliesHow to make the slider component into a volume control in ActionScript 3.0.
View 3 RepliesI'm doing a game. sounds are too hard. how i make volume control
View 1 RepliesHow I to go about making an ipod like volume control in AS3 ?
View 9 Repliesusing action script2 flash cs3, and i need more than one volume slider/control and each control needs to be assigned to one sound, atm i have more than one volume slider but they all control the same sound!
View 1 RepliesI have an application with a collection of sounds in the timeline. One sound file is recorded at a slightly lower volume than the others. I know I could change this in Audacity but I'm wondering whether I could attach a line of actionscript to its button to raise its volume slightly.I know its possible to do this when playing sounds with actionscript directly from the library, but that would be too big a departure from the development style used.
View 1 RepliesI got a code for a flash player but it only has a start and stop button . I would like to know how to add a volume control and a pause button.
Here is the code;
var nc:NetConnection = null;
var nsPlay:NetStream = null;
var metaDataValues:Array = new Array();
[Code].....
If I have library song playing using a simple code like: var mySong:Song = new Song();mySong.play(); How do I use a button to control its volume so that each time it is clicked the volume goes up or down by a little.
View 14 RepliesIs there a way to configure/control the volume level of an mp3 that automatically plays in your flash segment? In other words I'd like for the volume to play at a 30 or 50% level.
View 6 RepliesI was wondering if there is a way to control the volume of a movieclip directly without using the sound class?
Or is there a way to control the volume of the entire swf?
I am doing a elearning project in flex and it consist in a secuence of swf files and a player that load it based in a xml file, the problem is all swf files contents narrations and I need to control the volume of narrations from the player interface, anybody know how I can control the volume of a swf file from flex??
View 1 RepliesI am trying to write a very simple mp3 player with a volume control slider. My trace statements show that the value of the mp3 volume changes when the slider is moved but the actual volume does not change. I have attached my fla and here is my code:
ActionScript Code:
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.media.SoundTransform;
[Code]...
how to control sound volume via AS3?[code]
View 4 Repliesi'm triying to do a slider bar for control volume but all scripts are for vertical or horizontal movement, but i need do it with a light inclination i have been thinking to give to the limits line a value of x an y for upper possition and other value for x and y for lower position but i don't know to do it.
View 3 RepliesI'm creating a flash presentation that contains some externally loaded video's (flv), voiceovers and a background music. I would like to be able to control all these audio streams with one control. So basically I'd like to change the volume of the entire movie. Is this possible?
I know there's something like the Sound object with a setVolume() method, but that's only to control one stream as far as I know.
Is it possible to control the volume of a swf which has been loaded using loadmovie ?
I have several loadmovie swfs on the same page so want to only have one animation play sound at the same time.
I'm super stuck on this (getting into the days catagory!) before i start, here's the link to what my XML MP3Player functions like atm;[URL]..The foundations of the AS for this player are from the gotoAndplay.com tutorials, I'm having two problems with adding this volume slider control,
Firstly the SliderBar onload position, it is positioned on the far left of the screen, you can drag it towards the player, once you get it with'in the player it functions correctly moving between the designatd left and right x values correctly, but how can i get it to load into the player rather than out to the left?
And Secondly, by this stage you may have noticed no sound, i've tried alot of different things but to no avail?
[Code]...
I'm having issues with controlling multiple sound volumes in flash. What I need to have happen is a Background music softly playing while a voice over is also playing.
This is what i have in the first frame of my main timeline
Code:
firstSound = new Sound(BGMusic_mc);
firstSound.attachSound("LatinRockMusic");
firstSound.setVolume(10);
[Code]...
but when it starts to play the voice sound the volume jumps up to 100. I need the first sound to stay at 10 and the voice sound to be at 100.
I'm trying to control the volume of an flv in a video player I'm making. I want it's volume control to be independent of any other content on the page. The Video object is in a Component if that makes any difference.
I am able to adjust the volume of the root (aka MovieClip(this.parent).soundTransform ) but I cannot do it to the component itself.
I have tried applying the SoundTransform to the component itself (which is not a MovieClip I know), I have tried placing the Video object in a MovieClip inside the component and attempted to adjust the volume that way with no success...(obviously there's a lot more code than this)
Code:
_videoDisplay = new Video();
_videoVolume = new SoundTransform(0); // just using 0 so I can tell when it works
this.soundTransform = _videoVolume; // *this refering to the component
[Code].....
i'm triying to do a slider bar for control volume but all scripts are for vertical or horizontal movement, but i need do it with a light inclination i have been thinking to give to the limits line a value of x an y for upper possition and other value for x and y for lower position
View 2 RepliesI have a timeline with a sound in it set to sync because I am scrubbing the main timeline.... I now want to control the volume of the sound in the timeline..is that possible in AS3??
sometime like : var my_globalSound:Sound = new Sound(stage); that of course doesn't work, but how would I get access to the sound set in the timeline...
I need to control the volume of all sounds in the movie even if they were in the timeline so they do not have an instance name,by AS3.0 code?
View 5 RepliesDoes anyone know of a way to adjust the volume of all the sounds in a swf? I'm looking to build a volume controller that changes the audio level of the swf.
View 1 Repliesi have something like this
private var video:Video;
...
private function init():void {
[Code]....
which property should i change or bind a slider to in order to be able to change the sound volume ?
However, is there a way to control the volume of a timeline sound?
View 7 Repliesadding an equalizer and volume control for the following code.
Code:
//number that is redefined when the pause button is hit
var stopPoint:Number = 1;
//a true or false value that is used to check whether the sound is currently playing
var isPlaying:Boolean;
[code]....
On frame 1 from the root I've the following script:
[Code]...
For some reason all three sound objects play at 5% of the volume (the volume that was set for "WhenTextAppears"). I want to controle the volume of the 3 objects seperatly,.... I thought the code above should do the trick but it doesnt.
I have to buttons that control the volume. They work fine just that I want to stop when the volume hit 100 and also when you go down to stop at 0. Right now it will go up and down then start the opposite way. I am not quite sure how to stop that(with a if statement).
[Code]...
I am working on a Flash Player for my radio station and I am now trying to add a push + and - for the volume and I cannot figure out how to do it. Everything I have run across in my search has been a slider and that is not what I am looking for. Below is the action script from the player.
Code:
// Setup sound object
var s:Sound = new Sound();
[code].....
I have some sounds in movie clips, this is because that is the only way to be able to select SYNC Stream mode (to keep the movie in sync with the narration). Thus I don't want to use Sound Objects because they can get out of sync... Is there any way to control volume (so I can mute) without using Sound Objects?
View 2 RepliesDoes anybody have actionscript code for a volume control on an website interface? I already have a button that allows the user to turn off or on the audio but a volume control would be nice to compliment it.
View 2 Replies