ActionScript 2.0 :: AudioPlayer - Sound Duration Timer Display?
Nov 2, 2003
I'm building a simple audioplayer. In frame 1 I have:
Code:
mySound = new Sound();
songs = new Array("1.mp3", "2.mp3");
songIndex = 0;
mySound.loadSound(this.songs[songIndex], true);
mySound.start();
var playing = true;
[Code] .....
So, the sound begins to play from the beginning. However the problem is with the timer: when 'stop' is pressed it says 0:00. But, when I press play again it immediately jumps to the time it showed when stop was pushed, e.g. 0:12
View 14 Replies
Similar Posts:
Jun 19, 2006
I have currently a music player that uses Sound.position and Sound.duration to use as a playlist. However, the sound is streaming, so then Sound.duration is the number of loaded seconds/miliseconds. Is there a way for me to figure out the duration of a sound without fully loading it? Right now, it really messes up the playhead.
View 2 Replies
Feb 18, 2010
I am trying to write an mp3 player. I have tried everything and am suck getting the duration of an mp3.[code]...
View 1 Replies
Nov 25, 2009
I have a mp3 file and I would like to play it from one position and for a certain duration. I have first used the Sound class, the play method where I can specify the start but not the duration. I have looked then at SoundEffect class where you can specify a duration and a startTime. However I do not know how to play it from a AS3 class not from MXML : there is a play method ... but I get no sound!
View 2 Replies
Mar 7, 2007
I have a controller that works well (play, pause, restart, and a scrubbing playhead), now I just need to display the time remaining vs. the total time of an external swf, preferably in MM:SS format (Ex: 02:36/03:51). I'm getting better with my ActionScripting all the time, but the more I learn, the more I realize just how little I actually know. Anyways, my files are setup as follows: HTML w/ JavaScript that hides the main swf (giving it time to load)Main swf revealed when button is clicked on HTML pageExternal swf pulled into an empty MC (mcContent)Instance of controller in the main swf targets mcContentDynamic text field labelled "txtTimer" is inside of controller waiting for the right script to display time remaining/total timeSo, anybody know where I could find some script to get this final touch added to my project? Either time elapsed or time remaining would be cool. I've gotten a lot of really good help/tips here in the past and am hoping to keep that going.
View 1 Replies
Nov 27, 2009
1. Is there a method of determining the length of a sound file (mp3 primarily); in bytes, elapsed time, before the file is played? (the file could be played against a stop watch and the elapsed time record after the fact, programmatically).
2. Is it possible to set markers and fast forward/rewind to markers corresponding to the file?What I am thinking of is a feature allowing the user to play a file to a point and pause, set a marker, rewind and play to the marker and stop, or fast forward from the beginning and play from the marker, or even play past the marker and rewind to the marker.
Setting a marker would be the easy part: just record the elapsed time when the pause function is called.Getting the sound file to start playing from that point without the previous part played at normal speed;(with volume off) is the essential part of this question.
View 3 Replies
May 5, 2010
I was wondering how I can get the full duration of a sound object.I know "sound.length" returns me the loaded length,but is there a way to get the full length so i don't have to wait until i loaded?
View 2 Replies
Jun 8, 2011
I'm really new about OOP AS3 programming, seems I can't fully understand how the eventcentral class works.For what I've understood this "system" allows classes to communicate between each other, passing parameters and call functions.So, having this ultra simple class:
Code: Select allpackage
{
import flash.events.*;[code].........
I'd like to execute (in the main class) the function "callthis" in the seconda class.
View 2 Replies
Nov 30, 2004
i have a mp3 player that works perfectly offline but once online the sound.duration seems to be incorrect. The sound.duration = 15' online and 52' offline. And it's the same for each mp3 with an incorrect duration. You can see what i mean here : [URL]
View 2 Replies
Mar 15, 2007
I can't seem to access the sound duration value in my code, I am not sure what I am doing wrong.
Code:
var directory:String = "Voices/";
var noOfSongs:Number = 100;
var aSongs:Array = [];
var currIndex:Number = 0;
[code]....
View 1 Replies
Feb 19, 2008
I need this to work so that on my stage i can have a dynamic text box displaying the current time of the flv and the total time ---- example 3:45 / 6:58 where the 3:45 would update as the flv was scrubbed or played, or whenever a jump point was pressed. I found an example of this on this page.I have been using the as3 code to import my video and use cue points and for the life of me I cant get this to work.
View 14 Replies
Jan 21, 2009
How to access the sound duration outside the onload function....im trying to diaply the duartion of each song in the playlist by loading them one after the other...but am not able to access duartion of all the mp3 files....i want to knw if there is any way to access the sound duration outside the sound.onload function.
View 3 Replies
Aug 4, 2010
I am following this tutorial (Url...) on how to build an audio mixer in Flash. I am trying to display the duration/position of one of the sound objects in the mixer (all sounds in the mixer have the same length). I have tried adding this code to the actions under frame label "ready".[code]I have two dynamic text fields named Text01 and Text02 on the main timeline. Yet, nothing populates.
View 2 Replies
Jul 13, 2010
I've developed a neat WindowSWF panel after watching Lee's demonstration video. I got everything I needed to work, but I'm having trouble getting information from my sound files. Basically I have a list of sound objects (.wav format) in my library and I want to find the duration of each file so that I can add them to existing movie clips, then add or remove frames depending on the length of the sound file on the frame. I've been pouring over the jsfl actions libraries and can't find any method to get the duration of a selected sound file.
View 2 Replies
Apr 3, 2009
is it possible to make the duration of a movieclip equal the duration of the preloader, i mean is it possible to make something like, the time the preloader needs to reach the 100% = the duration of the movieclip? i'm using AS 3.0 and flash CS4 just in case it helps here is my code for the loader:
Code:
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete);
function loadProgress(event:ProgressEvent):void {
var percentLoaded:Number = event.bytesLoaded/event.bytesTotal;
[code].....
View 1 Replies
Jun 27, 2010
I am facing error: 1113: Circular type reference was detected
package {
import nyt.ui.control.*;
dynamic public class AudioPlayer extends AudioPlayer{
public function AudioPlayer(){
return;
}// end function
}}
View 1 Replies
Mar 14, 2011
I have a project that requires me to display the waveform for a uploaded sound. The sound is always an MP3, most of the time 22.05 kHz mono, with speech only. The project are written with Flex/ActionScript 3. It's meant to run in the browser, but might also consider converting to AIR if that can help.
All examples I've found and looked at for generating a wave, are either doing some visualization in real time as the sound is playing, or, the most promising, as3soundeditorlib, keeps the wave already generated, but does it very slowly, seemingly using as long time as playing through the audio would've taken.Is there any way to generate the wave faster than real time?
View 2 Replies
Jun 7, 2010
I have a couple of buttons that start and stop sound, and I understand how to use a timer so that I can pause sound also. What I want to do, however, is have a sound play as it enters a particular frame and then stop upon entering another frame. As a means towards getting this to work, I experimented with a button that starts a sound on frame 1 and then a second button which stops it on frame 2. This works great as long as both buttons are present on the frame where the AS is introduced (which seems inconvenient as one has to be placed off screen, but whatever...).
When I switch around the name of the functions called upon by the eventListeners though, so stopSound is on frame 1 and startSound is on frame two, it plays when it gets to frame 2, but won't stop when it goes back to 1. I seem to not be getting the principle somehow, because if the functions are play on 1 and stop on 2, I can go back and forth endlessly. How can the order make such a difference? How can I get around this? How can I design an MC to have a sound associated with it so when the playback goes to the frame it is on, it will play, and then how to stop it later on?
Here's the very simple code I'm working with:
stop();
var soundReq:URLRequest = new URLRequest("TheCattleCall.mp3");
var sound:Sound = new Sound();
var soundControl:SoundChannel = new SoundChannel();
sound.load(soundReq);
[Code] .....
View 1 Replies
Feb 2, 2009
I've got a simple timer set up... heres the code for the frame:
[Code].....
heres my problem: when i start the timer with the start button, it stops the music... why is that, and how can i prevent it?
View 1 Replies
Sep 6, 2011
how could i record the precise time(in milliseconds) where sound effects are being played. This is what i have in mind/ or what i have done so far as an example: i start clicking the 'record button' and the timer starts.Then i play a sound effect and the time elapsed is 1.444 seconds,after that i stop the recording. What i was doing is push the values of the timer elapsed into an array as a string. So when i hit the 'play recorded clip' button, the timer starts again but this time:
it is constantly checking for the timerOn the example i have stated above; when the time elapsed at 1.444 seconds, i expect the sound i've played when i recorded to play. I have the methods needed to fire away the specific sound effect.
[Code]....
View 3 Replies
Mar 30, 2011
my code: myTextBox.text = count1.currentCount.toString();
How would i display the current count in milliseconds?
View 1 Replies
Sep 1, 2010
I have been working on a flash game for the past couple days and it is my first major game so there have been alot of issuesI think I finally have everything figured out with a few exceptions , they are.1. The movie clip that serves as my pop up window is popping up behind all my moving icons.I need it over top of them obviously.2. I need to figure out a simple way to pause time while the pop up is up and resume time when it disappears.3. I need to add about 5 seconds to the game clock when the user shoots a question mark so that it appears as though the clock was stoppedonClipEvent (enterFrame) {if (_root.time == 30) {_root.speedz = 9;_root.intervaln = 30;}if (_root.time == 10) {_root.intervalz = 10;}if (_root.time ==0) {_root.gotoAndStop(3); }}
View 1 Replies
Jun 3, 2010
im using real basic code for a small game and ive got a timer set up on one room and cant get it to display in the endgame room.this is the code i used
var gameStartTime:uint;
var gameTime:uint;
var gameTimeField:TextField;[code].....
View 1 Replies
Jan 1, 2010
I have an animation of footprints being left on the ground as if by an invisible man or ghost. the animation consists of:
1 movieclip containing --> 5 footprints each one is an individual movieclip. Each print fades in and out using the Tween class with an alpha effect
The main timeline uses the following code to create random instances of the animation:
var myTimer:Timer = new Timer(12000);
myTimer.addEventListener("timer", timedFunction);
myTimer.start();
[Code].....
so it looks like the function is being called correctly and removing the first instance of FOOT from the stage. but the 2nd iteration generates the error. Is this is a problem with the timer? I would like to send this to someone for examination and assistance.
View 3 Replies
Nov 12, 2010
I wonder if there's a more straightforward way to achieve this.[code]...
View 3 Replies
Aug 31, 2002
How do I make it so that my timer does not display the decimal places when it increments by .10? I only want to see whole numbers...
View 6 Replies
Apr 22, 2010
I am making a game where I want to have a timer running over each level (a total of 4). When the user has finished the game, I want the timer to stop and then display their time. I have 2 dynamic text boxes with the varibles set to them as "Seconds" and the other as "Min". Here is the ActionScript I have for it right now:
[Code]...
View 2 Replies
Jul 10, 2010
I'm on the last stage of developing my game, and I need to display a countdown timer, lasting 3 minutes. I want to display the time counting down in the format "3:00" and then when the timer hits the full 3 minutes an event is fired and it stops, and I display a few other things along with it in the same function. The difficulty I have is actually doing the bit where I display the timer and update it accordingly. If there is any genius out there who can do this (In AS3) then you are my new best friend. I only have a few hours till my submission deadline, and this thing is KILLING ME!!! hypothetically.
View 6 Replies
Jan 30, 2012
I've been asked to make a flash countdown timer. I want to use a dynamic text field to display the numbers, but have a few buttons that go with them. I want to be able to press the button, and a set time is generated in the dynamic txt field, i.e. 10 minutes, 15 minutes & 30 minutes. The idea is that the user will press 30 minutes, then start, then the countdown will commence, and same for the other time increments.
View 3 Replies
Dec 7, 2009
I have a nested movie clip which has the code written in one frame on a single layer.I want to incorporate a Slider to control the volume.Created a layer on top of the action script and pulled the slider on that layer at the stage.Added the code etc to the instance name of the slider but when the movie clips start playing( it is a dynamic slide show) they conceal the sliderHow do I make the slider visible on top of the images.Or shall I reverse the process i.e. build the slider on the main timeline. But then how do I assess the instance name from the Main TimeLine in the nested movie clip.
View 4 Replies