ActionScript 2.0 :: Stop Streaming LoadSound From Starting Immediately?

Nov 9, 2010

I have an AS2 file where I want to load an external sound, but not have it start until the play button is pushed. It is a large file so I want it to load streaming, but can't figure out how to keep the streaming true without having it start immediately. Here is the code:

this.createEmptyMovieClip("craigTalks_mc", 10);
craigTalks = new Sound(craigTalks_mc);
craigTalks.loadSound("mp3/Craig_BP.mp3", true);[code]....

I have three audio files using the same code that I want the user to be able ot toggle on and off. When I set the loadSound isStreaming variable to false, it works perfectly, but at true, all three files start at once, and the pause doesn't work! However if I keep it at false, once I load it to the website it doesn't work, I believe because it is taking too long for the audio files to load.

View 4 Replies


Similar Posts:


ActionScript 2.0 :: Stop MP3 From Cache'ing Streaming Sound Using Loadsound?

Jul 19, 2004

I have used the loadsound command with the streaming option set to true, so it streams sound etc. But the problem is that it cache's the mp3 file it is streaming onto the user's internet cache folder Is there a way to prevent mp3 files from being cached (have I murdered the English language today using the word cache? ) Something like what the Real Player does, it streams the files but never cache's them. <gasp>

View 7 Replies

ActionScript 2.0 :: Stop MP3 From Cache'ing Streaming Sound Using Loadsound

Jul 19, 2004

I created a streaming mp3 player, the Click here for player

I have used the loadsound command with the streaming option set to true, so it streams sound etc. But the problem is that it cache's the mp3 file it is streaming onto the user's internet cache folder.

Is there a way to prevent mp3 files from being cached (have I murdered the English language today using the word cache? ) Something like what the Real Player does, it streams the files but never cache's them. <gasp>

View 12 Replies

ActionScript 3.0 :: Stop Class File From Automatically Starting And How To Stop It After It Starts?

Oct 13, 2011

How do I stop a class file from automatically inserting itself into the .fla file. I want to insert it manually into a frame, and then tell it to stop after I leave the frame.The following is the code included in my .as file.

ActionScript Code:
package {
import flash.display.*;
import flash.events.*;[code].........

View 3 Replies

Starting/streaming/loading/playing Large SWF Video Files?

Jul 28, 2009

I have recently "inherited" several websites that feature 1 to 10 minute video animations in SWF formatOne of my challenges is to get these files to appear or play in a timely manner so that the viewer does not loss interest as it is loading. My questions will start with file size.reduce or minimize the size of published SWF files while still maintaining high quality video output? Second, how about this business of preloading.I don't really understand that term but my thinking is that if a large movie could be loading while another, shorter, movie is playing, or a graphic displaying, that this could be useful in my case. Lastly, how about streaming in general. Are there ways to optimally use a given download speed to efficiently stream SWF video?

View 5 Replies

Stop Swf Video From Starting When Page Is Openend

Oct 13, 2009

How can i stop an swf video file from starting when the page is opened in browser? Under the publish settings i click on (paused at start) . This doesn't seem to have any affect on whether the video starts when the page is opened.

View 3 Replies

ActionScript 2.0 :: Stop Video From Starting Until User Clicks Play

Mar 28, 2009

Using the tutorials on the gotoandlearn main page I built a custom video player that loads the videos from an xml file and it works great. At present the video starts playing as soon as the video opens, I would like the video to only start playing after the user clicks the play button.

View 3 Replies

ActionScript 2.0 :: 1 Btn-different Events - Btn Can Stop The Default Drive By Starting The Function?

Jan 19, 2009

PHP Code:[code].....

What I want to achieve is that the btn can stop the default drive by starting the function anhalten and then it should be able to restart with the function anfahren...I think this should go with if/else and bool-vars, but I could not make it work.

View 1 Replies

ActionScript 1/2 :: When File Loads In The Browser - Music Immediately Plays And Loops Until Click A Button To Stop The Music

Mar 30, 2009

I downloaded a flash template and have modified it to suit our company but there is something that I can't do. When the file loads in the browser, music immediately plays and loops until you click a button to stop the music. On our video page, we have video
that we need to play that has sound in it. How do I get the background music to stop when my video plays without having to go up and stop the music manually. The videos are loaded via an external XML document and there are no buttons in the FLA file to link code to. the website is [URL]

View 4 Replies

ActionScript 3.0 :: Stop An Event From Starting Before All Other "events" Have Finished?

Sep 23, 2009

I have several objects moving around the stage (labelled bead1, bead2, bead3...). I have the beads moving using an EnterFRAME event.My problem is, before the beads have finished moving to their end destination, if the user clicks on a button that will trigger the beads to move again, it "interrupts" the event before the event has completed and the bead stops moving halfway and just looks broken. In essence, it looks like the event has been hijacked which is not what I am looking for.Is there a general way to check and see if all ENTERFRAME events on the stage have completed before starting a new ENTERFRAME event?Here is a sample of what the code looks like for each item:

Code:
private function MoveNum_3_OFF(e:Event):void
{
if (bead3.y < origY_bead3)[code].....

View 5 Replies

ActionScript 3.0 :: Movie Looping After Starting Syntax With Stop Command, No Compiler And Syntax Errors?

Jul 14, 2011

using action script...
 
stop();btn001_btn.addEventListener(MouseEvent.CLICK,showimage1);function showimage1(event:MouseEvent):void { gotoAndPlay(10);}btn002_btn.addEventListener(MouseEvent.CLICK,showimage2);function showimage2(event:MouseEvent):void { gotoAndPlay(20);}
 
however movie is playing without stopping to "Listen" for a Mouse CLICK. Images placed at frame 10 and 20 should appear only when CLICK'd.
 
This code is straight out of Classroom in a Book CS4.

View 5 Replies

Release Camera After Stop Streaming To FMS?

Oct 14, 2010

When stop streaming, i close NetStream, close NetConnection, clear video, and remove any event listoner on camera. After these actions, the camera is still in used.

View 2 Replies

Actionscript 3.0 :: Stop Sound From A Streaming FLV?

Jan 2, 2008

I am having trouble with sounds from a streaming flv continuing to play even after the playhead navigates to a different place in the timeline. I know from looking through forums and Adobe's livedocs that the answer lies with the SoundMixer class, but I just can't seem to get it to work. I am building a site that houses all of the videos for my company, so basically I want the sound from the flv to stop playing when the user navigates away from the frame that contains the flv.

Here is a sample of the particular code I am trying to use to do this:

Code: Select allimport flash.media.SoundMixer;
var sControl:SoundMixer = new SoundMixer();
msfNavHeader_btn.addEventListener(MouseEvent.CLICK, msfHome)

[Code]....

I don't know if there is a way to build a function that stops sounds globally or if I have to target each instance of an FLVPlayback Component.

View 5 Replies

ActionScript 3.0 :: Does MP3 Stop Streaming Skipped Music?

Aug 12, 2010

Let's say I click next song, it starts loading the next song, then I click next song again before the first song finishes loading. Will the program continue streaming the first song as well as stream the second song?

Code:
private function NewSong (plus) {
if (sound.bytesLoaded / sound.bytesTotal < 1) {
sound.close ();
} sound = null;
songtimer.stop ();
songplaying = false;
channel.stop ();
[Code] .....

This is the code that handles when a new song is to be played. I would think that the first few lines of code would close the stream if it's still loading but I'm not sure. When I click next song like say 10 times, it takes a really long time for the song to stop buffering and start playing. The main question still remains: Will it continue loading songs I skipped over?

View 1 Replies

ActionScript 3.0 :: NetStream Doesnt Stop Streaming?

Nov 11, 2010

i have a video object on my stage and i make it play by using ns.play();However, when i want to stop playing by ns.close(), i see from httpfox that streaming doesnt stop but continues.is there any way to really stop steaming anytime i want?it is same when i use FLVPlayback component. when i assign path to its source attribute, it starts streaming without saying it to play..

View 3 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 2.0 :: Display An Offline Image When Stop Streaming?

Dec 9, 2011

I have created a video streaming system for a video chat website. I have two flashes. One for the model which streams and one for the user who plays the streaming. What is the solution for displaying an offline image in the user player when the model stops the streaming?

View 1 Replies

Media Server :: Streaming Is Automatically Stop Even FMS Is Started?

Jul 30, 2011

Some time streaming is working fine and even in Admin console i see the bandwidth Grapgh is growing up due to no. of connected usersbut automatically it happen streaming is stop and bandwidth graph is going down till zero then i restart to FMS then streaming goes smoothly and working fine.before restart i check FMS services it is started and also encoder is connected when i restart it goes smoothly.What happen to FMS i don't know and i don't find any error in FMS log how to stop streaming even FMS is connected and started

View 14 Replies

Media Server :: Stop Or Disable Just Live Streaming Ability?

Jan 26, 2010

In my system I have installed Flash Media Streaming Server and as you know Streaming Server doesn't abilty to authenticatte the user which connects with FMLE or another application to publish (or am I wrong, I hope I am wronggg ). Because of this reason my system is abused time to time for unlegal content . In my system we don't use live streaming ability for live events regulary. Sometimes we use live ability max 4 times in a month. And I want to learn that is there a way to stop or disable and open the live streaming mechanism whenever I want?

View 2 Replies

Media Server :: Multiple RTMP Sources Streaming To FMS Without Stop?

Feb 19, 2012

I have some .mov files want to stream to Flash media server by ffmpeg. i have already tried to stream a single .mov by FFMPEG command in terminal and it works, the FMS can display the thing i streaming in live.Now i want to stream multiple files as one source, i tried to use above command one by one, but it seems Flash media server stop the streaming when file1 is finished, then start the stream with file2.It makes the stream player stopped when file1 is finish, and i have to refresh the web page in order to continue on file2.i am calling the FFMPEG command by a C program in linux, i wonder is there any method that i can prevent the FMS stopped when i switch the file source in FFMPEG? or is that possible to let FFMPEG constantly deliver the stream by multiple files source without stopped when a file finish

View 2 Replies

ActionScript 2.0 :: Stop Player Streaming Automatically On Page Load?

Apr 29, 2008

I have a streaming MP3 player that i'm going to incorporate into my site. Below is the AS for the player. At the moment the player starts automatically when the page loads up. Can someone tell me what i'd need to change so the player doesn't start streaming on page load....?

Code:
stop();
playlist = new XML();

[code].....

View 1 Replies

Media Server :: Live Streaming - Start / Stop Flash Archive?

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

Recommend Simple Streaming Music Player With Just Play - Pause And Stop?

Feb 24, 2010

I just need something simple, where there is only pause, play and stop buttons. I usually load the music within the flash movie and play from there, but I would like to build one where if you press play, the music loads and plays streaming on the spot. I have got a couple of more complex streaming style mp3 players but I would like to use a simplified streaming version. Any recommendations or code that I can just add to a button?

View 1 Replies

ActionScript 2.0 :: LoadSound From Php Url?

Jan 28, 2010

actionscript and i have a mp3 player that loads an mp3 file from a certain url. my code is this:ow can i change this to load an mp3 file from a php code exactly like this:

<?php echo base_url(); ?>uploads/<?php echo $artist_id; ?>/music/<?php echo $filename; ?>

View 1 Replies

ActionScript 2.0 :: LoadSound Won't Play In IE

Nov 3, 2004

i have a script on a frame at the root of the movie.

[Code].....

the problem is, that the sound isnt loading in Internet Explorer. I thought it may have been SP2 causing problems but i went and tested it on school's computer SP1 and it still didnt work. In firefox it works fine, so the AS must be correct (which im positive it is) i just cant work out for the life of me why it isnt loading. I have also tried loading the sound onto a movieclip and not from the frame
i.e.

[Code]....

and this didnt work in IE either. Works again in firefox though.

View 1 Replies

ActionScript 2.0 :: LoadSound Prob

Jan 7, 2006

I applied folowing script to load my mp3 file. Problem is my mp3 won't loop:s. Anyone see the prob in my script? i'd also like the mp3 to fade in and when I push the stop button it fades out.

loopSound = function () {
myMp3.loadSound("streamsound.mp3", true);
myMp3.setVolume(50);[code]...

View 1 Replies

ActionScript 2.0 :: LoadSound Won't Play In IE?

Nov 3, 2004

i have a script on a frame at the root of the movie.

// background sound (war environment)
_global.bgsound = new Sound();
bgsound.loadSound("sounds/mp40.mp3")

[Code].....

the problem is, that the sound isnt loading in Internet Explorer. I thought it may have been SP2 causing problems but i went and tested it on school's computer SP1 and it still didnt work. In firefox it works fine, so the AS must be correct (which im positive it is) i just cant work out for the life of me why it isnt loading. I have also tried loading the sound onto a movieclip and not from the frame i.e.

// background sound (war environment)
_root.createEmptyMovieClip("myEmptyMC","2");

[Code].....

and this didnt work in IE either. Works again in firefox though.

View 1 Replies

ActionScript 2.0 :: CS3 Mp3 Using LoadSound Restarting After 2 Seconds

Mar 8, 2009

I'm having some trouble with loadSound. I've created a portfolio section for a company that has short (1:30) mp3 clips. The clips are being loaded in dynamically through an XML doc. For whatever reason, when the sound loads, it plays for almost exactly 2 seconds, then restarts and plays all the way through. My flash is set up in three frames, the first two are the main gallery, then frame three is where the sound is loaded and played. "p" is defined by which icon in the gallery is clicked.

[Code]...

View 2 Replies

ActionScript 3.0 :: LoadSound With Large Mp3 Files?

Jan 21, 2009

I'm writing a small mp3 player. It reads the playlist from an xml file, then at the end of a song (or when the "Next" button is pressed) automatically plays the next song in the list.My problem is that if the song is a large file (around 16MB), the player doesn't play the song -- I have to click pause then play a couple of times to play it.

The code is roughly:

Code:
function playSong():Void
{
tune = new Sound();

[code]....

where 'tunes' is an array of paths to the file. I've missed out a couple of things, but that's basically it. Is there an issue with loadSound needing to load some of the song first?

View 0 Replies

ActionScript 2.0 :: LoadSound With Large Mp3s?

Jan 22, 2009

I originally posted this wrongly in AS3, I'm writing a small mp3 player. It reads the playlist from an xml file, then at the end of a song (or when the "Next" button is pressed) automatically plays the next song in the list.

My problem is that if the song is a large file (around 16MB), the player doesn't play the song -- I have to click pause then play a couple of times to play it.

[Code]...

View 0 Replies







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