ActionScript 3.0 :: Creating A Track From Multiple Sounds And Exporting As Wav Or Mp3.

Feb 4, 2012

I am trying to create a Flash application(more like a game) where a user can add sounds to a timeline and then play the resulting "song". That is not really hard to do, and the resulting track can be saved and played within my app, but the problem is that I would like to export the created track as a .wav(or .mp3). I know that recording from a microphone with MicRecorder is possible and then the record can be exported with WaveEncoder, but I didn't find a way to create a custom sound stream from multiple sounds and than export it.

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Multiple Sounds - Creating Separate SWF Files To Represent Each Sound

Sep 20, 2002

I've created a small application that links various Sound Clips to corresponding Sound variables, and the individual start and stop commands work fine. However, when I try altering the volume, the controls affect all the sounds in the movie. I'd like to refrain from creating separate SWF files to represent each sound, but I will if I have to.

View 1 Replies

ActionScript 2.0 :: Exporting Sounds To Frame 2?

Oct 25, 2008

I made a thread about this over on ultrashock and nobody seemed to know the answer, so maybe Kirupa knows! It's like this, I've got a music file in the library of my flash, and I want to play it using ActionScript. So far so good, so I go into properties of the music file and check for it to export for actionscript, and export it to frame 1. But what I've noticed is that then the music file loads BEFORE the preloader, so the preloader doesn't show up in this relatively small flash until it's at the very end. Before that it just seems like the flash isn't working cause nothing shows up. But if I uncheck ""export to frame 1", the sound won't play at all! So what I'm wondering is how I export the sound to actionscript AFTER the preloader

[Code]...

View 6 Replies

IF Statements - Creating Next Track Button

Apr 25, 2009

I'm trying to make a "next track" button. "T" is meant to be track number, and every time they click this button, I wanted "T" to increase by one until T>4 where I need it to go back to T=1 (I've only got 4 tracks). Then, I want, depending on what "T" equals, for it to start playing Track"T" and stop playing previous track. I also want the track playing to be looping continuously. At the moment, everything is muted, until I press the button; where it then plays all four tracks at once. I also have a problem with the mute button, but I've got a strong feeling both are of the same reason. I think my problem is that it does not know what "T" equals to begin with so it accepts all if statements; playing all tracks. But I'm new to Flash (my second project) so I'm not sure.

on (release){
stopAllSounds();
T =T+1
if (T>4){
T=1
} if (T = 1){
_root.snd1.start(0, 100);
[Code] .....

View 3 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

Professional :: Creating Custom .swf Skin And Exporting For Use

Jul 26, 2010

I am currently working on a projects that needs to have a custom flash skin player.I have tried copying and editing excisting skins, but when I export the swf and fla into the crrect folders, I am able to select it from the skin list- however it doesn;t show in the player.Am I exporting/ publishing this in the correct way and to the right folders?

View 3 Replies

Professional :: - Sound Has No Valid Device Sound Path Although Exporting Device Sounds Was Requested In The Export Settings?

Jun 30, 2011

I have imported my wav files to my library added them to the down state of my buttons and when I test the file I get (Sound has no valid device sound path although exporting device sounds was requested in the export settings. This sound will be ignored.) I have been surching for an answer but as of yet have found none.

View 3 Replies

ActionScript 3.0 :: Best Practice : Keep Track Of Multiple Dynamic Buttons?

Feb 13, 2009

Using the for loop i create many buttons and add events to them;

[AS]
for (var j:Number = 0; j < all_objects.length; j++) {
var dump = new Sprite ;
dump.graphics.beginFill (0x41C5D2,.5);// flash button color default=0x41C5D2[code]....

I need to know which button is pressed, so i use the (tricky) unprofessional methode: event.target.name.the question is; how can I know which button is pressed, using a custom event, this custom event should pass some vars to the called function, including the j var (from the loop)actually I tried setting a custom event using the example at the noponies accordion menue class, but it's so complicated to get working.

View 5 Replies

ActionScript 3.0 :: Exporting SWC With Multiple Levels Of Movieclips?

Nov 30, 2010

I'm trying to create a game in flash cs4 to then export it as a SWC class so I later on can work with the movieclips in flex. However I can't seem to get multiple levels of movieclips to work, example:main_clip-> icons -> dude_1dude_1 have a couple of rows script, when I now export main_clip I can only access main_clip and icons, the script inside dude_1 wont run but the movieclip is exported..I found a workaround my copying dude_1 to the same level as icons and hide it, that way the script will run inside the third level of movieclips. Is there a reason why I can't just access the movieclips inside the second level of movieclips when I export the file as a SWC?

View 1 Replies

Actionscript 3 :: Track X And Y Values Of Multiple Object Instances On The Stage?

Oct 27, 2011

I have an arbitrary number of object instances on the stage. At any one given time the number of objects may be between 10 and 50. Each object instance can move, but the movement is gradual, the current coordinates are not predictable and at any given moment I may need to retrieve the coordinates of a specific object instance. Is there a common best-practice method to use in this case to track object instance coordinates? I can think of two approaches:

I write a function within the object class that, upon arbitrary event execution, is called on an object instance and returns that object instances coordinates.
Within the object class I declare global static variables that represent x and y values and, upon arbitrary event execution, the variables are updated with the latest values for that object instance.

[Code]...

View 2 Replies

Sound: Set Different Volumes For 2 Or Multiple Sounds?

Jan 19, 2003

Iam searching vor solution so adjust different volumes for multiple sounds. That means:

Sound1 Volume 100
Sound2 Volume 20

I have tried that with the following script:

DayNature = new Sound();
DayNature.attachSound("Day_Nature01");
DayNature.setVolume(100);

[Code].....

View 4 Replies

ActionScript 3.0 :: How To Play Multiple Sounds

Aug 5, 2010

I am making a slide show, for every image i want sound on it. For example if it the "Tiger" in the image, it says "Tiger". I have all the voice in .wav format.
 
Right now my slide show is xml based and in as3, i have made another attribute for voice.
 
Let me know how i can play different sounds for different images.

View 5 Replies

ActionScript 2.0 :: Playing Multiple Sounds From Different MCs?

Sep 3, 2010

Working on a project with multiple sounds (all contained in different MCs) played by different key board events. Most of it works, but when I try to use simultaneous 2 button combinations to call upon a different sound, all 3 sounds play at once. The 3 sounds are as follows: the sound associated with the first button, the sound associated with the second button, and the sound associated with the 2 button combo. I've made several different true/false statements to override different events and states, but they don't affect the playing of the MCs. I've also tried using attachSound but I don't like the results I'm getting from that either.

How can I stop the first 2 sounds from being played, so only the 3rd sound can be heard?

View 2 Replies

ActionScript 2.0 :: Add Multiple Sounds Of Movie?

Nov 11, 2005

im am using this script in my current movie to attach sound using acttion script it also has a stop/start button but i need to now how to add multiple sounds in this way.

[Code]...

View 2 Replies

ActionScript 3.0 :: Preloading The Multiple Sounds?

Jun 11, 2009

In my app, scenes on the stage play based on user interaction, and are accompanied by sound clips that are loaded through a soundLoader class (see below). I can play the correct track from the model, but I can't figure out how to correctly write a loadTracks function that will proload all of the track options for a given scene, and then play the correct one based on what the user clicks without a pause. How would I preload and store those sounds in a way that I can use them when needed?

Code:
package mvc
{
import flash.display.*;
import flash.media.*;
import flash.events.*;

[code]....

View 2 Replies

ActionScript 2.0 :: Adjusting Volumes With Multiple Sounds?

Apr 27, 2009

m using Flash 8. And I'm trying to adjust two sounds files using action script. First I set a sound file to 100, then I tried to set another file to 25 but when that happens, it also sets the first sound file to 25.

How do I adjust the second sound file so that the first one doesn't get changed as well.

By the way, here's the action script I was using for both sound files:

Sound File 1
background = new Sound();
background.attachSound("Kingdom Hearts Theme");
background.setVolume(100);

[Code].....

View 2 Replies

ActionScript 2.0 :: Flash8 : Preloading The Multiple Sounds?

May 14, 2009

I have 10 sound files in an array.I am wanting to preload all of them and update a counter once each one loads sucessfully.So when song 2 for instance finishes loading then the counter would be at 2,then 3,etc....I think maybe I need to use a while loop to hook each sound into a load event?

View 1 Replies

Actionscript 3 :: Playing Multiple Generated Sounds

Sep 6, 2010

Inspired by Andre michelle, I`m building a tone matrix in AS3.I managed to create the matrix and generate the different sounds. They donīt sound that good, but Iīm getting there One big problem I have is when more than one dot is set to play, it sounds just horrible. I googled a lot and found the additive synthesis method but donīt have a clue how to apply it to as3.anybody out there knows how to play multiple sounds together? any hint?

View 2 Replies

Actionscript 3 :: Working With Multiple Sounds & Channels

Nov 17, 2011

Are there any audio management libraries for ActionScript 3? The more tailored they are for game development the better.I'm finding it hard to understand and work with multiple channels, which is making a lot of my audio sound screwy and cancel each other out, etc. I've been working on an RPG that can at a given time have quite a number of sounds playing such as environmental noise (like opening doors, thunder, rain, etc), walking enemies, inventory sounds (for events like dropping an item into your inventory), passive spell-casting sounds, voice clips, weapon swinging etc. Alternatively, if there are any good resources that explain how to use multiple sound channels strategically.

View 1 Replies

ActionScript 2.0 :: [FMX] Controlling Sounds Across Multiple .SWFs?

Apr 10, 2003

I need a little advice. I've got a set of swfs that are all part of one training, and within these movies are a few sound effects attached to button instances. I want the user to be able to click a button to turn the sound on or off at any time during the training.

My first idea was to create a variable called wantSound, which each sound instance checks before deciding to play. This is working perfectly. There's a toggle switch on the main timeline that sets sound to on or off, and when a sound is supposed to play, it checks to see if wantSound=true, and plays, or if it is false, it does not.

This works fine on each individual .swf, but when a new .swf loads in, the sound defaults back to true, and the user has to turn it off again. I imagine this could be fixed by loading each movie into different levels instead of loading them into level0 or root, but as this is not how I originally created the file, that will take a lot of work to handle aligning the loaded movies and parking them (making sure none of the buttons are active on the level below). I'm lazy, what can I say? :-)

I've been looking around at similar questions, and found a decent tutorial on Macromedia's site about using javascript to pass a variable from flash to HTML. I went through that, and managed to get Flash to send my wantSound variable to HTML with no problem. Check here for the tutorial.

The only problem is that in macromedia's example for sending data from HTML back to Flash, they use a text field for getting the variable. I just want to take the variable sent from Flash to HTML and send it back to Flash when requested (at the beginning of the next SWF.)

View 1 Replies

ActionScript 2.0 :: Manage Multiple Sounds With One Function?

Dec 17, 2005

I have set this:

Code:
mp3_1 = new Sound();
mp3_1.loadSound("1.mp3", true);
mp3_2 = new Sound();
mp3_2.loadSound("2.mp3", true);

[Code]...

View 2 Replies

ActionScript 3.0 :: How To Use Multiple Sounds To Play A Single Mp3

Jan 22, 2009

I have figured out how to play a sound with AS3, but i cannt figure out how to use multiple sounds. to play a single mp3, i am using this:

Code:
//number that is redefined when the pause button is hit
var pausePoint:Number = 0.00;
//a true or false value that is used to check whether the sound is currently playing

[Code]....

but what I need to do is have 4 different mp3's, each with its own stop & play button, so the user can play any file they want. These are voice over reels, not music, so each needs its own set of buttons.

View 1 Replies

ActionScript 2.0 :: Flash - Won't Play Multiple Sounds?

Mar 2, 2010

Okay, so I'm using

Code:
exampleSound = new Sound(this);
exampleSound.attachSound("exampleLinkageName");

[code].......

View 5 Replies

ActionScript 3.0 :: Flash Playing Multiple Sounds At Once?

Jan 16, 2012

i seem to be posting a lot at the moment but i am trying to get my Flash Skills up to date, hope im not annoying anyone too much. Basically i have a small project where pressing a button will trigger a sound, So when i click 'Button1' it plays the sound assigned to 'Button1', I have done this like the following.

[Code]...

Eventually i am going to have 20 different sounds, i know i need to probably assign each sound to its own individual sound channel. i tried manipulating the for statement to say something like var [i]Channel = new SoundChannel; in the hope that it would assign a number next to the SoundChannel thus making it unique,

View 5 Replies

Flex :: Play Multiple Sounds With A Custom Delay?

Dec 9, 2009

I need to realize a multiple-track player. The user can upload multiple tracks and mix (play them together). My problem is to allow the user to define an exact start position of each track to allow a synchronization between them, something like this:

Track 1: start at [x] sec.
Track 2: start at [y] sec.
play/stop

where the user can set the x and y. I've tried to realize it with AS2 (using netstream and setInterval) and AS3 (using netstream or sound and timer). Only if I set the same x and y both tracks are playing simultaneously.

View 1 Replies

Arrays :: Import Multiple Sounds In A For Each Loop, Actionscript 3

Mar 1, 2011

So im recreating my ear training program with more effective coding so i can add on to it. original i did.

//88 C8
var mp3Req88:URLRequest = new URLRequest("88.mp3");
var mp3_88:Sound = new Sound();
mp3_88.load(mp3Req88);

I basically got 88 sound files (each note of the piano) doing this code 88 times for each sound. with mathamatical equations made my ear training program.

Is there a simpler way to import these sounds in a loop of some sort so i dont have to do this 88x for the piano and however many times for the other instruments i will be including?

thus var i have tried things along the lines of below with failure

var i:int;
for (i = 0; i < 5; i++)
{
var pianoMP3Req+i:URLRequest=new URLRequest("piano/"i+"mp3");

[Code].....

View 1 Replies

ActionScript 2.0 :: Connecting Multiple Sounds To A Soundbar Function?

Mar 23, 2005

I am getting ready to publish my site, but I realized I hadn't yet added sound to my site so I created an external .swf that would load into my main site when the button it corresponded to was clicked. In this .swf which I called basically Sound Selection, the user could select sever sound samples from a menu like option. Now here is what I dont understand:Well I completely understand the "create a sound bar tutorial" in the advanced section under flash mx tutorials. But you can only load in one sound into sound1.swf and I would like the user to select from the list/menu I have created and be able to load those sounds into some sort of sound slot, somewhere, which play and stop would correspond to *like in the tutorial*.

I have tried a few methods but I think there is a conflict between the two externally loaded .swfs. And I have also tried to create a way which will load the subsequent song when the song playing has finished, Almost as if it were a stream. But I am not really worried about this atm. I am moreover curious to find out how to accomplish the primary.

View 1 Replies

ActionScript 3.0 :: Flash Multiple Sounds On Single Frame?

Aug 18, 2010

I have two buttons on a single frame that each play seperate sounds when clicked though actionscript is throwing up this error and I have no idea how to fix it.

1151: A conflict exists with definition snd in namespace internal.
1021: Duplicate function definition.
Warning: 3596: Duplicate variable definition.

[Code].....

View 2 Replies

ActionScript 2.0 :: Connecting Multiple Sounds To A Soundbar Function

Mar 23, 2005

I am getting ready to publish my site, but I realized I hadn't yet added sound to my site so I created an external .swf that would load into my main site when the button it corresponded to was clicked. In this .swf which I called basically Sound Selection, the user could select sever sound samples from a menu like option. Now here is what I dont understand:

Well I completely understand the "create a sound bar tutorial" in the advanced section under flash mx tutorials. But you can only load in one sound into sound1.swf and I would like the user to select from the list/menu I have created and be able to load those sounds into some sort of sound slot, somewhere, which play and stop would correspond to *like in the tutorial*. I have tried a few methods but I think there is a conflict between the two externally loaded .swfs. And I have also tried to create a way which will load the subsequent song when the song playing has finished, Almost as if it were a stream. But I am not really worried about this atm. I am moreover curious to find out how to accomplish the primary.

View 1 Replies

ActionScript 3.0 :: Play Multiple Sounds From The Custom Positions (delays)?

Dec 9, 2009

I need to realize something like a multiple track player. The users can upload multiple tracks and start to play them together. My problem is to allow the user to define a start position of each track to allow a synchronization between them, something like this:

Track 1: start at [x] sec.
Track 2: start at [y] sec.
play/stop

where the user can input the x and y. I've tried with AS2 (using netstream and SetIntervall) and AS3 (using netstream or sound and timer). If I set the same x and y both tracks are playing simultaneously. But not if the x and y are different.

View 4 Replies







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