ActionScript 2.0 :: One Sound Control Multiple SWF

Jun 26, 2010

I have multiple swfs in one HTML page and I would like to create the simple sound control (on / off) to control all the mouse over sounds.

View 3 Replies


Similar Posts:


IDE :: Multiple Sound Volume Control?

May 3, 2010

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.

View 2 Replies

ActionScript 2.0 :: Sound Control Over Multiple Scenes?

Apr 29, 2002

I currently have a movie, about 12 scenes long. I have a sound control that loops the track I have the user select repeatedly. But because I wanted music to always play unless they manually turned down the volume in my controls I load the music each time the main scene is loaded... This ends all of the other sounds and just restarts the first track in my list.

Here's the code:

For the main frame, inside a movie clip placed on scene 1:

stop ();
stopAllSounds ();
setProperty ("playing1", _visible, "1");
setProperty ("playing2", _visible, "0");

[Code]....

All I want this to do is keep playing the track the user selected, and not have to reset everytime the main scene is loaded...

View 1 Replies

ActionScript 2.0 :: Make A Music / Sound Control And FX Sounds Control

Mar 21, 2011

im trying to make a music/sound control and FX sounds control,so i have my FX volume level as a variable(FX_vol) and also the Music/sound volume level as a diffrent variable(M_vol),so i set them as sounds that i can use trough coding:

[Code]...

View 2 Replies

ActionScript 1/2 :: Sound Control Adding Text Into The Linkage Field But Still Sound Doesn't Work

Jan 21, 2010

How to import sound with AS? Cuz i have tried it and my sound just wount play. Can you explain me where my sound should be and what is the as code for importing cuz i use

mysound = new Sound();
mysound.attachSound("SoundOn");
mysound.start();

and this SoundON from where i get it, i try to add linkage to the sound file but in CS4 i cant find the option;. I do it from the library, adding text into the linkage field but still my sound doesn't want to play?

View 15 Replies

ActionScript 2.0 :: F8 - Attach Sound Object To A Separate Mc To Control Independently From All Other Sound / Root Volumes

Mar 15, 2008

I have been at this for about 19 hours straight! I am going to go to bed immediately after this post, but for crying out loud, I have NEVER had this problem before today! Before anyone reads ahead and says 'you have to attach your sound object to a completely separate mc to be able to control it independently from all other sound/root volumes.' see if the following code accomplishes just that:

[Code]...

View 2 Replies

ActionScript 2.0 :: Script For Sound Control - Turn The Sound Off And On?

Jan 21, 2003

I want to incorporate sound into my main movie but I also want to be able to turn the sound off and on.

View 1 Replies

CS3 Sound Control - No Sound Playing?

Apr 16, 2010

I am trying to embed some sound controls, and have hit a dead end. I made my play and stop buttons, imported my mp3,, assigned it proper linkage, and inserted this AS2 :

[Code]...

The buttons are named "play_btn" and "stop_btn" respectively. When I export it or preview it, hitting the play button does not do anything.... I hear no sound. What could be up with this?

View 4 Replies

ActionScript 3.0 :: Control Multiple Sounds In Multiple Timelines

Mar 10, 2009

Here's the setup:

-I have a music score that will be streamed in via actionscript

-I also have multiple short sounds (SFX) in multiple nested MCs

-these SFX sounds are customized using the ide edit interface, so it would be a pain to use actionscript to play each sound

What I need: To have 1 mute button for the music, and 1 mute button for the SFX, both on the root timeline.[code]...

View 7 Replies

F8 :: Timeline Sound Volume Control

May 22, 2009

I 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 Replies

ActionScript 3.0 :: Sound Volume Control?

Dec 23, 2008

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 Replies

ActionScript 3.0 :: Control Sound Which Is On Timeline?

Sep 8, 2009

I have sound on the timeline.

Also I have the following buttontns[code]...

View 1 Replies

Actionscript 3 :: Control Sound Pitch With It?

Feb 27, 2010

After browsing the documentation for the sound classes, it seems there is no way to control sound pitch with Actionscript 3.0. there is only the ability to control volume and pan. why is there no pitch property? it's the only sound property missing for the ability to create a full featured sound engine in Actionscript?

i hope i'm misinformed, but in case i'm not are there any alternatives / workarounds to control pitch in AS3?

View 1 Replies

ActionScript 2.0 :: Sound Control In Loaded Swf?

Aug 8, 2009

My english is not too stron, but i'll try to explain my problem...I've got 2 swf's, first is main, second is loaded to he first(flv player) throught the command "loadMovie("player.swf", myPlayer)".In the second swf there are such code:

vol.onRelease = function() {
vol.bar._width = _root.myPlayer.vol._xmouse;
sound.setVolume(_root.myPlayer.vol._xmouse/vol._width * 100);

[code].....

View 2 Replies

ActionScript 3.0 :: Control External Swf Sound?

Nov 11, 2010

I am trying to control external swf sound and I have created volume slider. But when I am running the code I am getting following error..

ArgumentError: Error #2068: Invalid sound.
at flash.media::Sound/play()
at volumeControl_fla::MainTimeline/volumeControl_fla::frame1()

[Code]....

i.e. when I load theexternal swf..how to catch the sound embedded in that swf

View 5 Replies

ActionScript 3.0 :: How To Control Sound Volume

Aug 11, 2011

how to control sound volume via AS3?[code]

View 4 Replies

ActionScript 2.0 :: Advanced Sound Control?

Oct 3, 2002

I have three sounds I want to use in my preloader and main movie - I have the first (sound1) looping until the entire movie has loaded and it then starts another (sound2) (same as the first loop but it is just now playing more instruments) and it will play (sound2) once and then go on to (sound3) which is the main loop I want to play on my site - all of these sounds are sequencial to eachother so seamlessness is very important - is there a way to maximize the sound control with action script so everything plays seamless?

View 4 Replies

ActionScript 2.0 :: Control Sound On An External Swf?

Apr 4, 2005

i am trying to control sound on an external swf.

the sounds that i have is on a swf file that has my "container" MC that loads up all of my external swfs.

the sound controller is on my external swfs.

View 1 Replies

Professional :: Control The Volume Of The Sound In The Timeline?

Nov 19, 2007

I 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...

View 6 Replies

ActionScript 1/2 :: Sound Isn't Working With Control Buttons

Apr 10, 2009

I have a scene with a voice over. I have split the voice over in to multiple sound files (mp3). The voice over plays correctly as long as you don't use the btns. When the forward btn is used the the file goes to the correct frame in the timeline but won't play the sound. Next issue, after pausing then using play the scene plays but without sound.

[Code]...

View 5 Replies

Flex :: Control SwfLoader And Sound Content

Aug 25, 2009

i am doing a project and i am loading .swf files in a FLEX 3 SWFLoader. i made a HSlider as a seeker to control the .swf file (forward and backword); BUT... if the swf file has sound and i drag the seeker forward or back word the sound does not effect i want to control the sound as i control the swf file note:: the sound is in the .swf file not loaded

View 1 Replies

ActionScript 2.0 :: Control Volume Of A Timeline Sound?

Jul 20, 2009

However, is there a way to control the volume of a timeline sound?

View 7 Replies

ActionScript 2.0 :: How To Get Clicking Buttons To Control Sound

Oct 24, 2009

I'm just getting into learning ActionScript, I'm using 2.0 for the time being. Anyways, I know how to get clicking buttons to control the sound, but mostly that has just been a matter of muting with the "stopallsounds" function. What I wanted to know is if it is possible to get the keyboard to set the volume at 20%. For example, when you him the "down" arrow key, it goes down to 20% volume automatically.

View 1 Replies

ActionScript 2.0 :: Control Object Visibility With Sound?

Nov 12, 2009

I need to make the object visible when the external mp3 reaches 8.2 seconds, what I�m doing wrong...?

ActionScript Code:
my_sound.loadSound("audio/sound_1.mp3", true);
var my_sound:Sound = new Sound();

[code].....

View 9 Replies

ActionScript 3.0 :: Control Speed Of Sound Playing?

Jun 29, 2010

is it possible to control the pitch and speed of playing a sound file via AS3? i want to simulate the car engine voice by movement speed, i need to change pitch and speed on runtime...

View 2 Replies

ActionScript 3.0 :: Dynamically Control Pitch Of A Sound?

Sep 9, 2010

I have a project where I dynamically generate a single tone and have to alter its frequency as the scene progresses. All the ways I have tried so far result in a clicking or popping noise when the tone's frequency changes. Does anyone have some source code for a way to change the frequency without the irritating click/pop noises?

View 8 Replies

ActionScript 2.0 :: Control Sound On An Embed Movie?

May 7, 2008

I'm having a horrible problem trying to mute the sound on an embed movie.I work on a flash banner, with an embed video.I would like the sound to be audible on rollOver, and off on rollOut, and have a link on it I tried putting a transparent movie clip on a layer above the video, and put in the AS, but nothing seems to get it done!How can i deal with that!Can my movie clip set the general movie sound to 0 or 100?

View 8 Replies

ActionScript 2.0 :: Control Flash With Realtime Sound?

Jun 20, 2008

I was curious if anyone knows of any experiments or API's out there that would allow a user to control flash interaction/display etc...via voice or sound commands in realtime with their cell phone? Let me know.

View 7 Replies

ActionScript 2.0 :: Buttons To Control Sound Volume

May 12, 2009

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]...

View 1 Replies

ActionScript 3.0 :: Sound Control - Bug In Mute Action?

Jan 13, 2012

I am using the following code to mute sound in a flash file - basically turning the volume to 0 or 1.It works fine until I go to a different scene. Once I load a new scene the button no longer works.

[Code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved