ActionScript 3.0 :: Mp3 Player - Plays The First Song When Click On Second

Jan 17, 2010

Im new in flash, and i have a problem in my mp3 player. im using flash cs3. When i click the link to play the song, it plays the song. but when i click another song, it plays the first song. by the way its an XML driven. here's the codes that i've tried

[Code]...

View 3 Replies


Similar Posts:


Flash8 :: Music Only Plays For Part Of Song?

Nov 30, 2009

I've got a flash website that I've been using a little while nowIt was created for me, but I know enough on how to edit itHowever, I recently decided to add new music instead of the regular loops used beforeI added three full mp3's to the library and they are on the site and allbut it cuts off after the first minute of the song and it starts over

View 10 Replies

Importing An AS File That Plays A Spectrum And The Song Have?

Jan 25, 2010

I can't figure out why I am not able to make this work here is an example of what I am doing.I am importing an AS file that plays a spectrum and the song I have. Here is the code.

[code]
zoeyPic_mc.addEventListener(MouseEvent.CLICK, addMC);
function addMC(event:MouseEvent):void

[code]........

View 1 Replies

Enable Page So That It Shuffles Songs And Plays A Random Song Every Time Page Is Loaded

Nov 25, 2010

I have a site up that is a "music" site, it is XML and flash and I would like to know if it would be possible to and how would I enable the page so that it shuffles the songs and plays a random song every time the page is loaded.URL...

View 2 Replies

ActionScript 3.0 :: Mp3 Player Won't Go To Next Song Sometimes?

Oct 17, 2009

so I have this mp3 player I made. It won't go to the next song when a song ends sometimes. It will if the song is very short (10ish seconds) but once it gets to the 30 second mark it won't go.If you click on the slider at any point it will get to the next song, if you click the pause play button it will get to the next song.I have only been doing AS3 for a little bit and I am totally baffled by this problem.
 
I've attached the code as a .txt file, i sorted them into their sepperate files with a header. I hope its ok to read. I can post them differently or post the actual player need be.

View 1 Replies

ActionScript 3.0 :: Loading More Than One Song Into MP3 Player

Feb 8, 2009

I'm trying to make an MP3 player with art and text associated with each of the 4 songs I need included, but I can't figure out how to load more than one song into the player. The first song loads and plays fine, but when I try to load another one of the songs, I'm given this error:

Code:
Error: Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful.
at flash.media::Sound/_load()
at flash.media::Sound/load()
at RealSite_fla::mp3player_mc_6/goGS86()

And here is my code:
var req:URLRequest;
var sound:Sound = new Sound();
var controller:SoundChannel;
var volumeControl:SoundTransform;
var soundPaused:Boolean = false;
var position:int;
function loadSound(event:Event):void
[Code] .....

View 1 Replies

ActionScript 2.0 :: Add Song Count To Mp3 Player?

Mar 21, 2009

I've searched the forums and can't seem to find an answer on this one.

How do I add a a counter on a mp3 player that counts the number of times a song is played?

Could I send this count number to a mysql database using PHP?

View 7 Replies

Multi Song Flash Player

May 10, 2010

I need to make player like this one URL...Is there a tutorial for this on this site already? If not does anyone know any good tutorials?

View 3 Replies

ActionScript 3.0 :: Audio Player Song Duration

Jun 18, 2010

Im looking for a why to display the current time position of a song playing in an audio player in a dynamic text box. I know the soundChannel. position references the current point of the songs, but I need some conceptual help translating that to a string and 00:00 time format dynamic text box

View 1 Replies

ActionScript 2.0 :: MP3 Player - Song Position Not Setting To Zero

Apr 2, 2010

I am create a flash mp3 player. In that I am displaying the song.position(time completed played). The song.position is not setting to zero, when a new song is played. It is continuing with the previous song. For example, if the previous song time is 30 seconds. the song.position is started from zero and comes to 30 seconds. After that song is completed and a again a new song is started, the song.position is starting as 30 seconds and gets increasing. It is not setting to zero at the start of the second song. I even set the song.position=0, when the previous song is completed.

View 1 Replies

ActionScript 2.0 :: Music Player Won't Play On 2nd Song?

Nov 3, 2011

I have problem with the code below. its a flash mp3 player. I need to prevent it from autoplay from the start. but keeps on playing all the tracks after the user click on play. How can i fix this?

Code:
import flash.filters.DropShadowFilter;
var infostruc:Array = [];
var xmlData:XML = new XML();

[Code].....

View 2 Replies

IDE :: Marquee Scroll (Song Title) From XML File In MP3 Player

Jan 3, 2007

So I made some a nifty a MP3 player that grabs songs from an XML file. It displays the song name in the dynamic text field. Unfortunately, I only have very little display space and many of the track names are long. The solution: marquee scroll the text horizonally. The problem: I never marquee scrolled dynamic text and now I am lost.

Here is my main AS:
stop();
playlist = new XML();
playlist.ignoreWhite = true;
playlist.onLoad = function(success) {
if (success) {
[Code] .....

And while this did make the text scroll on the first song, it doesn't work so hot on the second song. It blips back-and-forth between the first and second song name. Advance to a third song and you've got an even bigger blipping mess. I kind of think that this code above isn't the way to go... that it isn't even worth reworking... that I should try something completely new.

View 3 Replies

ActionScript 3.0 :: MP3 Player To Load Random Song From XML List

Jan 27, 2009

I have built an MP3 player using XML and this works fine. But I want this MP3 player to load a random song from the XML list everytime it runs.

I have this code:
var my_songs:XMLList;
var my_total:Number;
var my_sound:Sound;
var my_channel:SoundChannel;
var current_song:Number = 0;
[Code] .....

But it produces the error -
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at flashPlayer_fla::MainTimeline/playSong()
at flashPlayer_fla::MainTimeline/processXML()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/flash.net:URLLoader::onComplete()

I have also tried to trace the problem by putting trace(my_songs[mySong].@URL) in the playSong() function but this doesn't do anything.

View 6 Replies

ActionScript 2.0 :: When You Click 'off' On The Song, It Turns Off All Sounds, Including The Video?

Jun 13, 2007

I have a song that plays on my site, with an on/off button. And the way the code is set up now is when you click "off" it turns off all sounds. I just put a video on my site, and now the song interferes with the video, so when you click 'off' on the song, it turns off all sounds, including the video. Of course all you have to do is re-start the video, but I'd rather have it set up so the code for the musicbox just turns off only the music.Here's the way it is now, on the off button:

Code:
stop();
stopAllSounds();
play_btn.onRelease = function(){[code]...

I don't know always know the proper way to write it. These last few days have been like a person who's in a foreign country and has a lot to say but can't because they doesn't speak the language.

View 2 Replies

ActionScript 3.0 :: Direct Flash MP3 Player To Get Song List From XML File

Nov 12, 2010

What do I need to put in my code to tell my mp3 player to grab its songs from a folder on my server via an xml doc I outputted from my sql server? (The mp3 player is also on the server).

Here's my code:
import flash.events.MouseEvent;
import flash.media.Sound;import flash.net.URLRequest;
import flash.media.SoundChannel;import fl.events.SliderEvent;
var myMusic:Sound = new Sound();
var soundFile:URLRequest = new URLRequest("lpwfte.mp3");
var channel:SoundChannel = new SoundChannel();
[Code] .....

View 1 Replies

ActionScript 3.0 :: Music Player - Play / Pause Specific Song

Nov 27, 2010

At the moment, I am attempting to make a music player that will play a specific song of my choosing. I am stuck at the part where you can pause the sound, and then play it in the same place. I have tried many things such as using the timer utilities. Right now, when I pause it, it stops, and when I press play, it plays from the beginning.
stop();
var channel:SoundChannel;
var soundCheck:Boolean = true;
var song:Sound = new Sound(new URLRequest("song.mp3"));
channel = song.play();
[Code] .....

View 1 Replies

Flash :: Mp3 Player With Playlist Playing The Song That Has Been Deleted Or Changed

Dec 22, 2010

I downloaded player from [URL].. but I don't know why what the problem it had with with playlist. I had a playlist in xml file with songs. When i deleted the mp3 from the server, it is still playing. and when i changed the mp3 files it is still playing the original files. I don't know where these files were saved. I thought it was saved in my browser cache and i cleared it but it didn't work. I thought it was cached in my server, but in my localserver , i had the same problem.

So, again i downloaded the player, and this time it played different song, that i put. I have a hypothesis. Does flash player (swf object) absorb mp3 files?? i don't think so but how come player is playing the mp3 that has been changed or deleted? if it was in server cache then how long will it take to clear the cache and play new file. However, i don't remember coding something like 'cache'

View 2 Replies

ActionScript 2.0 :: XML Player - Flash Button To Call Specific Song?

Sep 7, 2011

I have a flash website that uses an XML player to play the artist's songs. The player works great. Now, I need a specific button in the flash document to call and play a specific song title from the XML list. The button I tried and that is showed in the flash code has an instance name of "santaBaby", calling a function I named "sampleSong1"Here's my XML playlist:

Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<jukebox>

[code]......

View 9 Replies

ActionScript 3.0 :: Mp3 Player Functions - Create Next And Previous Song Buttons

Jan 27, 2009

I don't really use Flash anymore but have been approached by a client to work on a simple-function mp3 player with play, pause, prev, and next song buttons for their website. I'm using [URL] and wanted to learn how to create next and previous song buttons. Here is my code:

[Code]....

View 1 Replies

ActionScript 3.0 :: Why Flash-based Music Player Can't Play A Song From Other Sites

Apr 28, 2009

I am making flash CS4-based music player with ActionScript 3. When I host the player on my site, e.g. [URL], and play an mp3 on the server of my site, e.g.[URL], it works well.

When I link to an mp3 of another site, e.g. [URL], in my local machine, it also works. However, when I host the music player in my site [URL], and play an mp3 of [URL], then it can't be played.

View 8 Replies

Javascript :: Update The Song's Volume For A Flash Player Using JQuery Slider?

Apr 12, 2012

I'm having some trouble with the code below. the flash player has a default volume slider, but I want to use the jQuery slider to change the volume. the volume value(nr) is changing while I move the slider, but the volume of the song doesn't.

<!DOCTYPE html>
<script type='text/javascript'>
$(document).ready(function(){

[Code].....

View 1 Replies

Flash - Xspf Player - Name Of Object Or Code That Defines Current Song Highlighting?

Jan 20, 2010

I'm creating a new look for the xspf player: [URL]The playlist highlights the current song being played. I'd like to change the color but can't find where that option is listed in the .flv file, or in the actionscript file.

View 2 Replies

ActionScript 3.0 :: Mp3 Title List - Stop Button Should Move From Song To Song When Playing?

Aug 19, 2009

I have a list of mp3-songs, when song 1 is clicked it gets streamed, a stop-button appears, if this Btn is clicked, this Btn disappears as it should - but if user forgets to click for stopping sound and clicks song 2, stopBtn 1 remains and the new stopBtn 2 also appears. there should be only one stopBtn, the one next to the song is playing.

I would like to move the stopBtn and I have tried several approaches move; graphics.moveTo; if(stopButton !=null) {removeChild (stopButton)}; I packed the var stopButton:Sprite in the header and so on.

Code:
SoundMixer.stopAll();
import flash.display.Sprite;[code]..........

View 0 Replies

ActionScript 3.0 :: ID3 Tag - Getting The Song Length Before The Entire Song Has Been Loaded?

Feb 15, 2010

I am writing a mp3 player and having some issue getting the song length before the entire song has been loaded - which messes with my position indicator, as it needs to know the track length. I thought I could get the length from an ID3 tag, problem is ID3.TLEN returns undefined, though if I right click the track and show properties, the summary tab shows song duration, bitrate, etc... how I can retrieve the song length before the entire thing has been downloaded?

View 4 Replies

ActionScript 3.0 :: Sound Plays When I Click Button

Aug 4, 2010

I have a movie clip with a sound at the beginning of my project, and when I click a button in another scene it starts playing the voiceover from that clip. I don't have the button linked to that clip.

View 2 Replies

ActionScript 3.0 :: Mp3 Plays In Browser But Not Flash Player?

Sep 15, 2010

For some reason, I can get this file to play in the web browser, but I can not get it to play in my flash player.

File:
http:[url]......

The file is a file that uses cURL, to load the song from the saved url. I am thinking that it is a cURL thing, because when displayed in my google browser, the load bar doesn't load on my page, but on the link below it does display.I use other songs in the same flash player by just linking to a different id number and those songs play fine in the player. Why does this song do this, and others don't?

File on the web: http:[url].....

View 0 Replies

ActionScript 2.0 :: Mp3 Player Plays Files Too Fast?

May 9, 2006

I've built a mp3 player which loads the mp3 via url. I've tried some songs and everything goes as expected, but if I use a mp3 at 8khz, the song plays too fast! And the format I have to play is this one since are voice recordings.

View 4 Replies

ActionScript 1/2 :: Click On A Certain Button, It Plays A New Music Clip?

May 3, 2006

I want to make it so that when I click on a certain button, it plays a new music clip. I am trying to do it by selecting the button I want, then going into behaviors, then +, then Sound, Play Sound... It then asks for the instance of the audio file that I want to play... but I don't know what it is.

View 6 Replies

Professional :: Flash Player 11.2.202.228 No Longer Plays Audio Flv

Mar 29, 2012

Installed the new flash player and all of a sudden my flv audio no longer played in an existing media player built using the FLVPlayback component.
 
Finally figured out that if I change the FLVPlayback component parameter "maintainAspectRaion" from false to true, the audio will play.

View 11 Replies

Professional :: Flash Player 11.2.202.228 No Longer Plays Audio Flv Either?

Apr 2, 2012

Audio flvs that previously would play fine no longer play. I get "NetStream.Play.Failed".This occurs when progressively playing over HTTP, i.e. starting NetConnection.connect(null) and then NetStream.play("http://url_of_my_flv");Regular RTMP playback still works.So, I've seen two posts with similar issues in the last day or so:

View 1 Replies







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