ActionScript 2.0 :: Show A Button When Audio Ends?

Oct 31, 2006

I have an mp3 in my library that plays when ik click a button. The button hides when the audio starts.

on (press) {
mysound = new Sound();
mysound.attachSound("SoundOn");

[code].....

View 3 Replies


Similar Posts:


Flash :: Slide Show Ends Abruptly?

Sep 27, 2010

I made a flash website with an introduction slide show. When the slide show is over it closes altogether in the index web page. The slide show works fine but it closes abruptly. I would like to find out if there is a way to fadeout the slide show at the same rate the images fade out, or if there is a way to make a slideshow with a transparent background. The SWF slide show loads externally into the index page.[URL]..

View 12 Replies

Professional :: Display Button When Movie Ends?

Mar 18, 2010

I made a short movie in After Effects and now I'm trying to add some buttons to it. The movie starts with an intro and when that ends a "continue" button should appear and take you to the next part. My idea was to place a screenshot of the last frame in the next keyframe with a stop() function after the intro and add the button to that but it would be less work to make the button appear the end of the movie using some code I have no idea about

View 3 Replies

Show Audio Waveform In Flash Movie?

Dec 14, 2009

I'm trying to create a WAV audio player for a website which will display the audio waveform like this site does: [URL]

Is there a way to do this? I've spent hours searching the internet with no luck.

View 2 Replies

Professional :: Whole Audio File Doesn't Show Up Immediately In New Layer That Have Created

Jan 21, 2011

I'm making videos for an instructional program. This involves importing audio, images, animating those images, etc. I'll be exporting to flv format at the end, and then converting them to MP4 for downloads online.H

1.) Should I be using ActionScript 3.0 or ActionScript 2.0 for this?

2.) When I try to import audio, the whole audio file doesn't show up immediately in a new layer that I've created. It only goes in the blank keyframe that I've inserted. How do I import the audio so that the entirety of it shows up?

View 1 Replies

Flash :: Actionscript - Remove The Audio - Put The Audio Into A Byte Array And Then Re-add The Audio To The Flv Video?

Aug 6, 2010

If I import an FLV video is there any way to remove the audio, put the audio into a byte array, and then re-add the audio to the flv video?

View 1 Replies

ActionScript 3.0 :: Multiple Button Functions - When Click The Button, The Mc Does Not Stop Playing And The Text Does Not Show Up?

Nov 8, 2009

I'm designing an interface for a class, and the buttons that I am using all have multiple functions.For example, when the story button is clicked, I need the mc to stop playing and change to text (in the same window/screen, just no mc playing).  The mc is 31 frames long, but if there's a way to just make it loop continuously until told not to, Currently, my code looks like this:

stop();
story_btn.addEventListener(MouseEvent.CLICK,story);
function story(event:MouseEvent):void { gotoAndStop(32);}credits_btn.addEventListener(MouseEvent.CLICK,credits);[code]...

When I click the button, the mc does not stop playing and the text does not show up. 

View 6 Replies

Professional :: Can Have Audio On / Off Button?

Aug 8, 2010

I basically need to put audio behind my flash.It is divided into labels to create different pages and is controlled by buttons.
 
- Is it possible to put different MP3 audio recordings behind different labels? i.e. if the user clicks on the forward button will that audio stop and the next page's audio begin?

- How do you put audio in flash?
 
- Can I have an audio on/off button? And if so, how do I code it?
 
Am going to use Adobe sound booth to make the recordings and save as MP3s. I would have probably around 20 1-2 minute recordings.

View 24 Replies

IDE :: Get The Button To Stop Both Audio And Visual?

May 10, 2009

creating a button within a movie clip that will pause both the images (bmps) on the screen and the sound, which is being loaded by AS3.Here's the code for my sound.

Code:
//This assigns an abreviated name to the StorySongBook class which is inside the StorySongBook.mp3 properties.
var sbs:StorybookSong = new StorybookSong();[code].....

How do I assign this to a button on the stage though (event listener?) and get the button to stop both audio and visual?

View 2 Replies

Professional :: Creating An On/off Audio Button In Flash CS5 With AS3

Jan 13, 2011

Is it possible to create an On/Off button to toggle audio on and off using AS3?

The Adobe help files do not seem to provide this, only AS2 options using Behaviours.

When I click on a button and choose Behaviours I get a warning that it only works with AS2.

I change the project to AS2 and then half of my actionscript stops working.

View 3 Replies

Professional :: Stop Audio When Roll Off A Button?

Jan 13, 2011

I have a button that when the user rolls over it, it plays a 3 second piece of audiothat works fine.When the user rolls off though, the audio still plays, that, if the user rolls over the button several times you get multiple instances of the auduo until they all play out.

View 2 Replies

ActionScript 3.0 :: Stop Streaming Audio Using A Button?

Oct 9, 2009

Sometimes I get ahead of myself and have to stop and say how the hell did I do this before? I'm referring to a simple stop button I need to put in a flash animation. I know how to code calling a sound from the library, starting and stopping from a btn. But how do I stop audio that is streaming inside a layer from a button ?

var my_sound:Sound = new Sound();
my_sound.load(new URLRequest("yoursoundfile.mp3"));
var my_channel:SoundChannel = new SoundChannel();

[Code]....

View 3 Replies

ActionScript 3.0 :: Muting Audio Inside A Timeline With A Button AS3

Oct 12, 2009

I have a narrated fla which needs to have an audio mute button so you can mute the audio, problem is I can only find how to do with streaming audio. I need this done off a button where the audio is on a layer inside the timeline.

View 10 Replies

ActionScript 3.0 :: Fade Out Audio Clip When Clicking A Button?

Apr 8, 2012

I have intro audio music playing on a project I am working on. The audio is in the timeline (but doesn't necessarily have to be), and when I click a button to move away from it, it just keeps playing. I can use SoundMixer.stopAll(); to make is stop as you click the button, but this makes a rather harsh abrupt stop to the music that is undesirable. I would like to have it fade the audio track out once the button is clicked.

View 14 Replies

ActionScript 3.0 :: Show 'over' For Button?

Apr 7, 2010

I created button myself.After clicking to this button i go to label.How i can show 'over' for this button?(not 'up')
 
code:
 
public function gameMenu():void
{
gotoAndStop('homeScreen');
homeBtn.addEventListener(MouseEvent.CLICK, homeScreen);

[code].....

View 5 Replies

ActionScript 3.0 :: Video Component Audio Can't Stop When I Use Back Button

May 20, 2010

I am putting together a basic video portfolio and have everything working except when I click the back button to get back to the thumbnail page (contained on frame 1) the audio from the video continues to play, I'm not an expert on as3.

I have tried a lot of code in the function below ( like "stopAll();" ) but nothing seems to work.

View 1 Replies

Actionscript 3 :: Make Flash Button Disappear When Playing Audio

Aug 12, 2011

I have a flash document (Actionscript-3) with play button on top of a image, and an audio is played when the button is clicked. How do I make the play button disappear when it is clicked and audio is playing. The button should reappear after the audio has finished playing.

View 1 Replies

ActionScript 3.0 :: Back Button Stopping Audio On A Video Component

May 16, 2010

I am putting together a basic video portfolio and have everything working except when I click the back button to get back to the thumbnail page (contained on frame 1) the audio from the video continues to play.[code]

View 4 Replies

ActionScript 2.0 :: Creating Volume Mute Button For Audio Player?

May 2, 2008

I'm creating a mute button for an audio player that I pieced together, and it seems to be working alright except when I advance to a new track. If the volume is NOT muted and I click a new track it's fine, but if the volume is muted (i.e. at "0") and click a new track it remains at 0 and won't un-mute when I click the button.. though if I click the button to un-mute it and then select a new track it's fine, so I think there's something in my playSong() function that's interfering, I just can't tell what it is.

Code:
stop();
Player Variables
volume = 100;
current_song = 1;
[Code] .....

View 1 Replies

Button Colour To Show It's Selected?

Nov 21, 2009

I have buttons with black text. The buttons (not the text) change colour to red when you rollover them. I can't seem to work out how to get the colour to stay red when it's clicked to show that it's selected. Do I make a duplicate symbol which is already red to replace it when clicked? And I'm also unsure of the actions I'm supposed to use if any??Another thing, when I click on a different button, I don't want the previous button to still be selected.

View 1 Replies

ActionScript 3.0 :: Hide / Show With Only One Button

Mar 9, 2012

I'm not happy with my hide/show function..... the code works, but I think it is a waste of space on my stage that I need two buttons to hide and show a movieclip... there must be a better way

[Code]...

View 3 Replies

ActionScript 2.0 :: Show When A Button Has Been Clicked On?

Jul 8, 2004

i want to show when a button has been clicked on (visited), by changing the colour (or just another pictogram). How can i do this? (for an example, go [URL] you see the small icons, once visited, they turn blue). How can i do this? Is it just a simple actionscript?

View 5 Replies

ActionScript 2.0 :: Button = Show Movieclip?

Feb 5, 2004

I am making a mp3 player, and i would like to have a "lamp to flash"(movieclip if posible) when i pause the player. My action script is until now this:

[code]...

View 7 Replies

ActionScript 3.0 :: Audio Controls - Add Play/stop Music Button On The Page?

Jun 15, 2009

I am trying to add a music track to some of the pages of my flash website, I imported the mp3 file to the library and dragged it on the stage and it plays when I test it. I want to add play/stop music button on the page, I dragged buttons from the video components to use, but I have no idea where to start with the code??

View 1 Replies

Professional :: Link Audio To Button To Make It Play And Stop On Click?

Mar 2, 2010

I am trying to connect audio to the button so when I click on the button music it starts playing and when clicked again music stops.

View 5 Replies

ActionScript 2.0 :: Mute Audio Embedded In A Button's Timeline From The Main Stage?

Oct 26, 2007

how to mute a audio embedded in a button's timeline from the main stage

View 1 Replies

ActionScript 3.0 :: Show And Hide A Darned Button

Apr 13, 2009

I need to progress. [URL] The Adobe documentation assumes you are an expert with Flash and there are no clear cut examples of how to even show and hide a darned button, well, I can't find any referrences. I can imagine what I want to do with flash, but getting anything out of it cracks open my brain. Programming is not fair!!! for us graphic artists. Examples of things I want to study are loading images to the stage on a specific event such as "if(enterFrame == x)" ideally I would like the images to load from a directory on the server and ease in the image.

Basically I want to keep it simple yet effective. Alot of the code I see out there is double dutch to me and appears to go in the wrong direction of simplifying things. I can understand the basic fundamentals, but I wish when people post examples like myMC1.visible = true; that they explain that myMC1 is just a name chosen by the writer to look for an item called myMC1 or go the extra step and color code the code BLUE for actual code, RED for names of items given by the writer that exist on the stage etc etc...

[Code]....

View 3 Replies

ActionScript 3.0 :: Get InputText Value With Button And Show It In TextArea

Jul 30, 2009

I'm a beginner in AS3. I need to pass the inputtext value to text area, with a button. I know is a simple tasks but I'm really desperate cause I just test several ways, including external classes without results. With this code, I can get the value of the button, but I need to get the input text field userName. I suppose that I need to pass the value of input text to String, but I don't how!

I post my code here:
import fl.controls.Button;
import fl.controls.TextInput;
import fl.events.*;
import fl.controls.Label;
import fl.controls.Slider;
import fl.events.SliderEvent;
[Code] .....

View 3 Replies

Professional :: Show An Image On Button Click?

Mar 31, 2011

We need the button to display an image on a button when clicked for a tic tac toe game. 

View 2 Replies

ActionScript 3.0 :: How To Get Text Button To Show Another Symbol

Jul 23, 2011

All I want to do is make a text button show another symbol? Basically, I have 16 icons which I want to eventually be buttons as well, and I want to show them in two different orders. So I have my two buttons for the different orders, and I have my icons in the orders as two different layers, and I've tried using the code snippets to show the icons but I keep getting an error message and it doesn't work, instead my buttons disappear. I just want to be able to click a button and the order of my icons changes.

View 1 Replies







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