ActionScript 3.0 :: Adjusting Volume Of Video Component Inside Movieclip?
Apr 16, 2010
How would I adjust the volume of a video component nested inside a movieclip? I've tried the following methods:
Code:
mcName.vidName.setVolume(0);
Result: ReferenceError: Error #1069: Property setVolume not found on flash.media.Video and
[code].....
View 4 Replies
Similar Posts:
Sep 3, 2007
AS2 -> AS3 migration: doncha just love it?!have a look at the attached code. selection one makes us anew sound and gets it playting, great. then we need to adjust thevolume so we read in the files that:You can alter the volume and panning while a sound is playingby setting the pan or volume properties of a SoundTransform objectand then applying that object as the soundTransform property of aSoundChannel object.great, so selection 2 in code below should do that, right?
View 7 Replies
Apr 30, 2010
I'm looking for a way to adjust the volume in an external flv. The code below sets the volume, is there any way to have it start at one volume and fade to "0" over the length of the flv?
this.createEmptyMovieClip('snd', 0);
this.snd.attachAudio(this.ns); //attach NetStream
this.audio = new Sound(this.snd); //Set MC as source
this.audio.setVolume(80);
I also tried start/stop buttons, but they start and stop the flv also, any way to set them up so the flv keeps playing without the sound?
View 1 Replies
Mar 10, 2009
hope i'm explaining this the right way. i'm using the flash flvplayback component to play a video. i've stripped the audio from the flv and am playing it, along with another audio clip, on the timeline at the same time. volume has been set for both clips, but i need to allow people to adjust the volume from the volumeBar that exists inside the video player. it's built in as2.
View 1 Replies
Mar 22, 2010
I have a viewstack with 3 items in it. Now my problem is that I want all these components to be of the same size. Its simply enough to do this manually but is there any other way of setting the size for all the components at once?
View 2 Replies
Jun 4, 2010
Why can't I adjust the height of the slider component? I created a new component and placed it on the stage, and changed the height of all of the images that comprised this slider (which were movieclips) to a larger size, but it still remains a skinny line when I run the program. I even did this in the Actions section:
mySlider.height = 20; but it seems like the program is ignoring anything that has to do with adjusting the height of the slider. If I try adjusting the width, however, then that works. It makes the line longer when I set the width a larger number. But why is the height of the slider line not being adjusted? No matter what I do, nothing is working. I have searched all over the internet for answers, but I can't find anything.
View 0 Replies
Mar 20, 2012
I was wondering if there was a way to get the sound from a FLVPlayback component and manipulate it with using a custom volume slider? Within my Actionscript I currently have this code which enables me to control the volume of a MP3:
import fl.events.SliderEvent;
var mysong = new music();
var myChannel:SoundChannel = new SoundChannel();
var myTransform = new SoundTransform();
myChannel = mysong.play(0,10);
[Code]...
But Instead of using the MP3 for sound, is there a way to use an FLV's sound instead?
View 1 Replies
Jan 16, 2007
I'm having trouble accessing some components that reside inside of a movieclip that i'm displaying inside of a window component through the PopUpManager:
Code:
var my_MC = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, { title:"movieClip", contentPath:"my_MC", closeButton:true });
how can i access any components that exist within the linked movie clip in my library? i have two labels that I want to update but can't figure out for the life of me how...
i've tried:
Code:
_root.my_MC.content.<label name>.text = "blah blah blah"
but no worky.
View 1 Replies
Feb 17, 2011
I just converted a WMV to flash video .flv through the wizard in Flash CS3 Pro. It converted it OK, but made quite a large file.Is it possible to produce a file of lower size and quality.Is there a bit-rate setting somewhere?(We have some people outside the US in developing countries who don't have such a good connection.Whats about the lowest you would go in terms of quality / bitrate?)
View 1 Replies
Nov 17, 2010
I am using Amazon's CloudFront to deliver streaming video using Adobe's Flash Media Server. I want the video to dynamically adjust it's bitrate based on the speed of the client's connection. Supposedly this is pretty straight forward using the FLVPlayback component. The thing is that the Dynamic Stream should start with the lowest quality video and then automatically adjust upward based on the connection speed of the client. For me, testing on a localhost, it is starting at a stream rate it cannot handle. I don't think it is moving down streams either.
View 2 Replies
Oct 13, 2003
I need to read two image locations from a file and join it together. For this i used the following code.
[Code]....
With this code I can load two images but I can't adjust the position of the second image with respect to first i.e: iam unable to capture the width of the first image.
View 2 Replies
Oct 13, 2003
I need to read two image locations from a file and join it together.For this i used the following code.
Part A:
//this reads from the file images.txt and puts in an array "images"
//the size of the array "images" is 2
//
m = new LoadVars();
m.onLoad = function(ok) {[code]...........
With this code I can load two images but I can't adjust the position of the second image with respect to first i.e: iam unable to capture the width of the first image.
View 2 Replies
Mar 29, 2010
I'm working with several videos each inside their own movieclips. When I click my forward button to jump to the next video I get the second video playing over the first one especially towards the end part of the first video. I can play and stop the movies just fine but it's the gotoAndPlay that's causing me problems right now with forwarding and rewinding clips.
Hope my explanation was clear cause I'm just starting out with AS3
[Code]...
View 1 Replies
Dec 10, 2010
I'm editing a flash site that needs a multi video player. I've already added a few other features to the site, so know the drill now... This video player just doesn't load the external files to it. I'm doing exactly the same thing I did with the other elements, but this doesn't seem to want to work. I've triple checked the spelling of 'config.xml' and even tried changing the action script settings to frame 2, which just makes all the preloaders spin around!
[Code]...
View 1 Replies
Aug 16, 2009
I'm using the FLVPlayback component to play a movie. In the parameters, I'm setting volume to "8" where the default is "1".This works great and gives me the right volume setting, but if the user touches the volume slider (which I'd like to keep), the new maximum volume is only one.
View 2 Replies
Sep 19, 2011
I am trying to use the slider component (aSlider) to control the volume of mySound which is a class called PlaySound. Created an addEventListener for aSlider with a SlideEvent.CHANGE executing a function called changeVolume. Everything else works but I can't seem to get the slider to control the volume of mySound.
import flash.events.Event;import fl.controls.Slider;import fl.events.SliderEvent;import fl.controls.Label;
var mySound:PlaySound = new PlaySound ;
[Code].....
View 5 Replies
Jan 25, 2012
I have a Button that is inside MovieClip1 which is inside MovieClip2; yet when i click the Button it doesn't dispatch Event.
View 5 Replies
Sep 3, 2009
I have two components. One is called "InsideComp" and one is called "OutsideComp". OutsideComp has InsideComp as one piece of its component, and in my main MXML file, I have embedded an instance of OutsideComp. How do I access a public variable of InsideComp within my main MXML file?In Actionscript, I could just do something like:OutsideComp.InsideComp.valToChange = 5; But I dont know how to do it in MXML. I know this is probably an easy question.
View 4 Replies
Apr 13, 2003
I have seven loops in total. I imported them into the library. i've put each of them in a seperate movie clip with the names loop1,loop2,.In those movie clips, the first (key)frame contains the action stop(); . The second frame is a keyframe too and from here on the sound starts. And of course they loop.Okay, now the buttons to control the movie (Prev, Stop, Play, Next) work fine, but let me explain the system i used. I used a var loopnumber and everytime you click Next or Prev, it '+'es 1 or '-'es 1. I also set a variable number_to_play = "_root.loop"+loopnumber, so you would get _root.loop--number--, where --number-- is 1,2,3,4,5,6 or 7. To actually play the sound, i used tellTarget(number_to_play) {gotoAndPlay(2)}.That's why i added stop(); to the first frame of those clips.how can i make a volume slider for those sounds inside my movie clips ? I've checked this forum already for questions like this but they don't use the system I use.
View 4 Replies
Jan 26, 2009
How can I turn on / off the volume of a specific video in my project? (i've many of them, but i want to turn off the volume of only one.)
[Code]...
View 4 Replies
Oct 13, 2008
I simply have one FLVPlayback component in the background and a movieclip on the layer above with an FLVPlayback component inside it. The first FLV component is constantly looping a five-second video. So all I need is for the movieclip containing the second FLV component to load the right file, fade in, and when the video ends, fade out. Absolutely all of that works... apart from the fading in. What I noticed was that my movieclip was fading in correctly, but the FLVPlayback component was empty and transparent until the fade had finished - then it played the clip. Here's my code, which gets called at random intervals:
[Code]...
View 3 Replies
Mar 12, 2009
I'm trying to set up a slider that will adjust the volume of the video that is playing. I currently have a slider that adjusts the progress of the video that works just fine. I set my volume slider up the same way (as far as making it slide and the bounds it's contained within) but it fails to actually be draggable. I click on the slider and it disappears from view instead of allowing me to drag it. It's been a while since I've done any AS work and I'm struggling to figure out the problem here as everything appears to be correct.
View 1 Replies
Sep 9, 2009
i 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 ?
View 2 Replies
Jun 13, 2007
I would like to ask, how can I adjust the volume for the video playback ? here is the code
Code:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
video.attachNetStream(ns);
[Code]...
View 7 Replies
Oct 8, 2010
I have an external video list (array) that is set up to load and play in an FLVPlayback component. The client wants individual audio control buttons: 1) Up volume 2) mute 3) Down volume. I have AS on each of the buttons but it's not controlling the volume of any of the videos. The only one that works is the mute or "stop all sounds." I'm unsure on how to go about getting what I want.
View 5 Replies
Jun 4, 2011
I have a Flash CS4 project with sound that starts to play in the first scene, set to event/loop so that it plays all through the entire time.
But I have a piece of video with audio in another scene and I would like to have the sound file playing at a lower volume while the video is playing, then get it to return to normal volume when the video is over.
I have no actionscript at this point. Just timeline animations, etc.
View 7 Replies
Oct 8, 2010
I have an external video list (array) that is set up to load and play in an FLVPlayback component. The client wants individual audio control buttons: 1) Up volume 2) mute 3) Down volume. I have AS on each of the buttons but it's not controlling the volume of any of the videos. The only one that works is the mute or "stop all sounds." I'm unsure on how to go about getting what I want.
View 9 Replies
Aug 5, 2008
I have a video streaming application that uses a Red5 server. The stream from Red5 is represented through an embedded video object on stage. I need to be able to control the volume of this video object, but so far I've been unsuccessful despite following tutorials like this one: http:[url]....Here's the relevant code:
[code].....
I have a button calling volumeChange onRelease, but when I trace videoSound.getVolume() in volumeChange, it comes up as undefined. However, if I trace videoSound.getVolume() after I define videoSound, it comes up as 100, but any attempt to use videoSound.setVolume in initNetStream is futile.
View 2 Replies
Jan 10, 2010
I am relatively new to Flash CS3. I need to create a video file add a skin and put a voice over or background music. I have done all of it but I have a problem with the skin. On the skin there is a volume button for the video. How can I mute or control the volume of the video? Just like in youtube for example. You can turn it up or down. What is the code for it? Because when I click on the button to mute ir or turn it down it doesn't do anything to the volume. I had a separate video and a song but I went to Windows Movie Maker and associated the song with the video so now it is a whole: video with a song. So basically I just want to know what I need to do in order to control the volume of the video.
View 1 Replies
May 7, 2010
I have this site I'm doing in Flash with an embedded video.The site has background music that is loading automatically, but when the embedded movie loads, the volume on that is mixed in witht he sites music.If you mute the sites background music, it mutes the video sound as well. Make sense?How can I seperate them out or make the sites background music not load on that particular page.
View 1 Replies