Professional :: Put Mp3 Along In Flash File And Control Stop Start?
Mar 5, 2010
how to put mp3 which is just speaches done, be put alone in a flash file. Do i have to import sound? I wanted to be able to put 3 different mp3 files in flash and have people able to click on any sound and hear it. Be able to play and start and pause a sound. Is it possible are should I use something other than flash. Are should I convert to mp3 into another format and put in flash.
View 4 Replies
Similar Posts:
Jan 18, 2011
I can't get the movie clips to stop and start in this file. I used the code snippents but it didn't work. In fact after the first movie clip the rest of the movie won't play... It just stops there and loops the first movie clip. I can't seem to attach the flv and the action script files here in the forum... But you can download the fla file here:[URL]
View 1 Replies
Jun 29, 2010
How to control (start / stop encoding) Flash Media Encoder 3.5 using ActionScript 3 (using Flash CS4)? Flash Media Server 3.5 is also installed in same server. It includes an Apache server, which I think can run batch script, if CGI is installed.
View 1 Replies
Jun 14, 2010
I realize this is probably an old thread, but does anyone have an actionscript example of how to create a custom start and stop time for a Flash video? In other words I'd like to be able to "bracket" the play time of a Flash video with custom start and stop times rather than start at the beginning and end at the end.
View 1 Replies
Oct 15, 2010
I'm putting an swf on a website and it's working great except for IE. (Although it works great in IE 9). In some versions of IE it will start to play then stop as if the video was never load and in others it will just go white. It works great in other browsers, just our favorite browser IE seems to screw it up (big surprise).
View 2 Replies
Jan 26, 2010
I have created a short animation in Flash CS4 which has one button with a URL link. the button shows up on frame 217, and on that frame I added the following action script:
[Code]...
however, the 'hit zone' for the button shows up from frame 1 of the animation. is there a way of getting the hit zone to start when the button shows up?
View 3 Replies
Jan 28, 2010
I created a simple animation that is 90 frames long. How can I start and stop it at specific keyframes so it takes 3 separate mouse clicks to complete. Example: a picture is on my website. When you click it, the first 30 frames play and then stop. A 2nd click makes the next 30 frames play and a 3rd click makes the last 30 frames play.
View 6 Replies
Dec 11, 2010
I want to put a number of flash videos on a page so I need to stop them from starting automatically. Is there a way to go into the .html?[code]
View 1 Replies
Jun 24, 2010
How can I write the Actionscript3 code if I want to start MyLogo 5 seconds after loading my webpage and then stop for 1minute and loop in the same manner.The following is the code right on my Actions_Layer:
var l:Loader=new Loader();addChild(l);l.load(new URLRequest("MyLogo.swf"));l.x = 17;l.y = 60;
l.contentLoaderInfo.addEventListener(Event.INIT, growLoader);
[code].....
View 1 Replies
Oct 4, 2010
How to do this? I'm very new to flash.
View 3 Replies
Apr 26, 2011
I am using a single FLV file. On the player interface in addition to play/pause and stop, I have a number of chapter buttons, which I have successfully pointed to the corresponding points in the FLV file. I need to find a way to capture and hold the relevant start and stop times of each of these chapters so that when I am in each chapter, the stop and play buttons will reference the chapter times and control only the relevant chapter, ie in Chapter Two clicking stop will reset to beginning of Chapter 2, not the start of FLV file. Not sure if there are built-in properties and methods I can use, or I need to create something custom.
View 4 Replies
Sep 19, 2011
I am new to AS3 and am trying to work out how to stop a movie clip from playing on mouse click. At the moment I have created a movieclip which plays when the user clicks it, but I now want to be able to stop the movieclip if the user clicks on it again. At the moment I have the following code:
stop();bigTree_mc.addEventListener(MouseEvent.CLICK, onClickplayAnimation);
function onClickplayAnimation(event:MouseEvent):void { bigTree_mc.play(); }
The tree animation plays fine, but i want to be able to stop it if the user clicks it again.
View 2 Replies
Oct 11, 2009
I want a site to have background music, but when I attach the music to the file it makes it quite large ...3 meg and the site is slow to load. Is there any way of having the music separate from the flash file and still have start stop music buttons?
View 2 Replies
Jan 4, 2010
I have created an animation by making a series of frames. So now I have a FLA file with the frames in.So far, so good.I can export this as a movie and create a SWF file.I can use this SWF file in a HTML document and get it to display in the browser.This is where I hit a brick wall. I have done a lot of searches but I am getting something wrong. I need to adjust this FLA/SWF so that in the HTML file, when the SWF is first loaded it does not play. If the mouse moves over the object it starts/continues playing. If the mouse moves away it stops playing.
View 12 Replies
Jan 6, 2012
My final goal would be to have the animation pause after the first click, then resume with the next click and so on.So, after successfully having started the animation on I tried adding a
this.addEventListener(MouseEvent.CLICK,stopF);
function stopF(e:MouseEvent):void{
this.stop();
[code]....
View 1 Replies
Jul 10, 2011
i've been looking around for answers to my problem to no avail. What I want to do is create a powerpoint style presentation. But rather than change slides, I have one large "graphic" that I am moving around and zooming into by "motion tweening" Now all I need to do is: (with a keyboard event) start the motion tween and then let it play out then start the next motion tween and let it play out and so on. all i have is this, which allows me to start and stop it when it is tweening, but isn't as effective as it stopping at then end of a motion tween, then allowing me to push a key and for it to go to the next "slide"
[Code]...
View 17 Replies
Jun 21, 2010
i want the .SWF file to be opened but not donwloaded until a button is pressed but don't know ho to do that..on frame 1 i have an object (movieclip) that consists of a logo with a blur effect.. after 1-2 seconds the blur effect goes away and you can see the logo. the logo itself is a button that send's the user to the next frame in the main scene.on frame 2 of the main scene i have a preloader that shows the percentage of the loaded page and a progress bar .. everything works great
the problem is that when you open the swf it starts downloading the hole flash site and when you press enter the site is already loaded and you can't see the progress bar of the preloader..i want only the 1 frame of the main scene to be loded, then i want i to stop loading (downloading) the SWF file until enter is pressed.when enter is pressed i want the flash site to be loaded and so you can see the preloader in action..can i put some code on the action layer on the 1 frame that stops loading the movie (the first frame is loaded and the blur effect of the logo plays).and another code on the second frame (where the preloader is visible) that starts the donwloading again?
View 4 Replies
Nov 19, 2011
Here is the action scrip that I created. Correct it if you can.
Process.visible = false;
Cycles.visible = false;
stop();
[Code]....
View 3 Replies
Jan 17, 2007
I am trying to make a play, pause and stop btns controlling a mp3 file which is in the library which has a linkage id of Speakers. I've manage to get the pause and play to work but now incorporating a stop button isn't working for me
Code:
var snd:Sound = new Sound();
snd.attachSound("Speakers");
btnHalt.onRelease = function() {
snd.stop();
} btnResume.onRelease = function() {
snd.start(snd.position / 1000);
} restartbtn.onRelease = function() {
snd.start();
}
To say basically if you have pressed the pause btn, then the play btn, play from state pause at, but if you have pressed the stop btn then pressed the play btn, play from start and also if the play btn has been pressed and the audio is playing if pressed again dont play again do nothing.
View 5 Replies
Oct 10, 2011
I have an online flash module I need to burn on a CD. I'd like this CD to be able to autostart. Right now it opens in a browser and I would like the index.html file to autostart. Does anyone know the best way to do this on PC and MAC?
View 1 Replies
Jul 9, 2010
I use Adobe Flash cs5 Professional.I want to know how I can start and stop an animation.I want to do this with actionsscript 3
View 5 Replies
Mar 18, 2011
I am trying to create a sound button to start a sound and then stop it when clicked again. I thought it would be easy because there is a code snippet for "click to play/stop sound"
I have my sound file in my library.
Below is the code that is not working:
Instructions:1. Replace [URL]below with the desired URL address of your sound file. Keep the quotation marks ("").*/
CYOA2bttn.addEventListener(MouseEvent.CLICK, fl_ClickToPlayStopSound_11);
var fl_SC_11:SoundChannel;
//This variable keeps track of whether you want to play or stop the soundvar fl_ToPlay_11:Boolean = true;
Proxy-Connection: keep-alive Cache-Control: max-age=0 Cp>function
[Code]....
View 7 Replies
May 1, 2010
I have a flash player that plays an MP3 from my website. On one of my pages i have around 20 of these flash players embeded on the website. i've seen on other websites so when the user presses the play on flash player #1 and then while that's playing, they press play on flash player #2, it would first pause and stop flash player #1 and then start flash player #2 and so on.
View 4 Replies
Oct 14, 2009
While streaming a live worship service in Flash format, I'll need to archive only the sermon in Flash. I do not want to handle this in post/editing. What will I need to make this happen?
View 6 Replies
Jul 6, 2010
I'm wondering how I can make a Flash start playing a video on MouseOver, and stop playing on MouseOut.
View 1 Replies
May 4, 2009
I need to turn off/on all the sound for a flash animation. The flash control contains a layer named sounds that has 5 sounds associated with it in keyframes at different time. How can I simply turn on/off everything using a symbol button.
View 2 Replies
Jan 1, 2012
what wrong with the functin 'stopFish' Without this function the fish in the tank swims but when I add it, it doesnt anymore. I just want the fish to stop swimming after I clicked it and start swimming after another click.
View 1 Replies
Aug 9, 2010
How can i stop the webbrowser from loading/displaying images, flash, script etc?I found this article that deals with it, but i dont know how to implement that "STDMETHODIMP CAtlBrCon::Invoke" function
View 1 Replies
Feb 6, 2007
How do you get the information bar to stop blocking the active X control for a flash movie in IE.when I am in fire fox, it just starts the flash movie. Right in the HTML page. But with IE, the info bar at the top pops up, and blocks my flash movie.Then you have to click on it, and say that you want to activate the active X on the page. Is there anyway to stop this from happening. I remember, using IE, that not all flash is blocked, just the stuff that I make.
View 7 Replies
Oct 18, 2010
Here is the issue I am running into. I have built my site in CS3 and I have used a loader.On my site I have embedded video links, when the other video links are pressed, the audio from the prior swf keeps playing. The site[URL]
View 1 Replies