Professional :: Setting Up Simple Flash Mp3 Player?

Jun 13, 2010

I have a html page with some links to mp3 songs.I would like to set things up so that when user clicks a mp3 link, a small flash mp3 player (embedded in the page) starts playing with that songs. The user could click on another song that would replace the last one at any time and have basic controls.
 
- flash mp3 player - need 1 that has start / stop and volume buttons (simple)
 
BTW: I set this type of thing up in the past with a frameset - top had quicktime player embedded - and bottom song links went to top frame - all was fine but kind of bulky.... looking for something a bit slicker...Also would like to do the same for flash / quicktime videos, Also if there's something free or close to free that is a jukebox type where the song list is part of flash,

View 2 Replies


Similar Posts:


Professional :: Simple Sound Player - Visitor To Hear The Sound And Be Able To Apply Simple Controls?

Aug 1, 2011

Flash is not in my toolset, but I am an old Director jock and have spent some hours dipping my head into the Flash manual.  I suppose that makes me a promising beginner-level poster. I'm working in CS5.
 
I need to make a simple Flash-based sound player for a website for a newly-released novel (http://www.bearriverbooks.com/index.html).  I want the user to click on what appears to be an icon (or image), which kicks open a simple controller and starts playing a sound file (a radio interview, which I will probably export using Flash's voice compression).  Nothing fancy.  Just want the visitor to hear the sound and be able to apply simple controls (stop/start/rewind/volume).
 
I can learn ActionScript, I suppose, since I used to dream in Lingo, but my life would be a lot simpler if I could just publish a controller without having to roll my own.  I'd like to think there's a magic button somewhere that can do this, but I haven't found it yet.

View 4 Replies

ActionScript 2.0 :: Making The Simple Player Using The Player Component Preinstalled In Flash?

Jun 3, 2010

I am trying to make the SIMPLEST POSSIBLE MP# player using the player component preinstalled in flash.It is very simple, the code is as follows:

Code:
on (release) {
player.contentPath ="Song.mp3"
player.play()
}
("player" is the mp3 component)

This works if I want a single track to be selected and played.Now, I need it to AUTOMATICALLY LOAD THE NEXT TRACK, which I will input in the code.I am thinking something like this:

Code:
player.onSoundComplete = function() {
player.contentPath ="Song.mp3"
player.play()
};

But this is not working.

PS: I know an XML file would be the best here, but I don't want to use it. I just want to enter the next track's code inside the swf.

View 2 Replies

Flash :: Create A Very Simple Mp3 Player?

Oct 21, 2009

with the FLVPlayback component i can get a nice looking basic player for .flv files easily..is there some way to set up the same functions to create a very simple mp3 player with flash?

View 1 Replies

Flash :: Setting Proxy Settings For Player?

Jan 9, 2011

I asked Google. But there is no working answer for it. I checked "right click -> global setings" and found no proxy setting in [URL].. Can anyone know how to configure proxy settings for flash player?

View 1 Replies

Setting Up Flash Music Player As Opengraph Tag?

Jan 5, 2012

I have a flash music player at ith a Facebook like button.I've set OpenGraph meta tags in order to specify the url of the flashobject :

<meta property="og:video:type" content="application/x-shockwave-
flash" />
<meta property="og:video" content="http://www.etiennechampollion.com/

[code]........

View 1 Replies

Flash Player Setting - Allow Button To Access Client Web Cam

Aug 8, 2010

I am building a flash app that will asks the client to access their web camera. Users on Windows (Firefox, Safari, Chrome browsers) are able to click the allow button. However, users on Linux/Mac (Firefox, Safari, Chrome) either need to click several times until they can click allow, or they can't click at all. [URL]

View 1 Replies

Actionscript 3 :: Flash Audio Player Volume Setting?

Sep 18, 2011

i am creating a audio flash player and i want to set the volume of the sound to 0 and then again to 60. Means i want to toggle between these values on a single button click.

View 1 Replies

Javascript :: Flash Video Player That Supports Setting Cookies?

Sep 10, 2011

I've tried JWPlayer from my app (C#). It works well, but I can't seem to find cookie support. I need to send a cookie or else the server will return 403 Forbidden. Is there any commercial flash player with cookie support (or I'm missing something in JWPlayer's doc)

View 1 Replies

ActionScript 3.0 :: Simple New Code Causes Crash In Browser, Not In Flash Player?

Mar 7, 2012

I am working on a game. All behavior was as expected, and I got no crashes when testing on my machine using FlashDevelop and the Flash Player. But if I open the .swf in Chrome directly or through the Kongregate test area, the game crashes 100% of the time that that function is called.

[Code]...

The selectDebater function is not new, and has never had a problem.

View 6 Replies

Android :: Flash Player Doesn't Work When Setting A Custom User Agent In WebView

Jun 20, 2011

I am trying to use the Flash + Set the browser to a desktop agent on the Galaxy Tab.

mWebview.getSettings().setUserAgentString("Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.11) Gecko/20101019 Firefox/3.6.11");
mWebview.getSettings().setPluginsEnabled(true);

So the issues is, when the UserAgentString param is enabled, flash player wont load as many websites like Iplayer don't recognise the browser in the WebView.

This may be a bug in the Samsung browser. Anyone have any desktop agents that the WebView will accept whilst enabling flash?

View 1 Replies

ActionScript 3.0 :: Simple Target MovieClip - Setting Visibility True?

Feb 11, 2010

Just new to As3. I can't set visibility of movieclip inside another movieClip
ActionScript Code:
player.vidImage.visible = true;
trace(player.vidImage); // shows - [object SimpleButton]
tracing player.vidImage show [object SimpleButton]. But can't set visibility true.
VidImage is physically placed inside player MovieClip.

View 5 Replies

ActionScript 3.0 :: Make A Simple Flash Mp3 Player With A Play/pause Toggle Button Called Toggle_btn

Jan 14, 2011

I'm trying to make a simple flash mp3 player with a play/pause toggle button called toggle_btn. The button is actually a MovieClip with two buttons inside it: play_btn and pause_btn, which live in different places on the MovieClip's timeline. That all works fine, and when I press the play/pause button for the first time, my music plays as expected.

However, when I press it again to pause, it keeps right on playing. If I push it again, the button gets all glitchy, and doesn't go into its rollover state when it should nor toggle when clicked.

Here's my ActionScript:

Code:
// load the playlist
var getFile:URLLoader = new URLLoader(new URLRequest('songs.xml'));
var numSongs:int = 0; // number of songs in playlist -- we'll set this later

[Code]....

View 3 Replies

Professional :: Loader Component Works When Publish To Flash Player 7 But Not In Flash Player 8

Jul 5, 2010

My loader component works when I publish to Flash Player 7 but not when I publish to Flash Player 8, why? The publish setting are for ActionScript 2.0 on both.

View 2 Replies

Flash :: Professional - Setting A Background Image

Feb 25, 2010

Is there a way to set up a background image (repeating or non-repeating) that the stage area floats over. When I use file > publish settings > HTML > publish - It creates the HTML document but any area outside the stage is colored with the default stage color- Can this be set up in Flash or changed in HTML?

[Code]...

View 2 Replies

Professional :: Setting Classpath For Papervision In Flash CS5?

Jul 17, 2010

I keep trying to get started with Papervision, but I must be entering the classpath incorrectly as I keep getting errors that the compiler cannot find the classes.Is there some kind of bug with setting the classpath on a mac?I checked out the papervision stuff so it sits in:
 
/Applications/Adobe Flash CS 5/Papervision/as3/trunk/src/
 
Inside the src folder is a folder called "org", which contains "papervision3d" and the folders of classes.To set the classpath, I've gone to Preferences, chosen ActionScript, clicked on the ActionScript 3.0 button at the bottom, clicked the plus sign, and then clicked on the little folder button to add a path to the Library box (the middle box). I browsed and selected:
 
  /Applications/Adobe Flash CS 5/Papervision/as3/trunk/src/
 
I thought at this point (after quitting and restarting Flash) that if I created a class file that had, for example,
 
import org.papervision3d.cameras.*
 
that it would work -- but it doesn't. It only works if I save the .fla and .as files themselves in /Applications/Adobe Flash CS 5/Papervision/as3/trunk/src/, in the same folder as the "org" folder. And I guess this means that the path in the Preferences setting is useless. 

View 2 Replies

Professional :: Simple Mask Not Working In Flash CS4?

Jul 27, 2010

I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:

1.insert a new layer in which I named it mask and click frame 1 on this layer

2. select the oval tools on the tools panel and set the stroke to none

3. set the fill color to purple

4. draw a circle and click the selection tool and drag a marquee around the circle to select it.

5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened

6. click the last frame in the mask layer and drag the circle to the end of the line of text

7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties

8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.

9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage.

View 1 Replies

Professional :: Simple AS3 - Flash 10.2 To Crash On All Platforms

Feb 22, 2011

Very simple code that causes flash 10.2 to crash on all platforms.

[Code]...

View 6 Replies

Professional :: Create A Simple Flash Preloader?

Aug 20, 2011

How can create preloader in flash (AS2).

View 7 Replies

Professional :: Connect Flash To Php With A Simple Type In A Name?

Sep 11, 2011

how i can connect flash to php with a simple type in a name and submit it through flash..yes there is downloadable class's but i couldn't get them working and integrating together properly, can someone refer me to where i can learn a BASIC of it... i know brief php already.

View 1 Replies

Professional :: How To Make A Simple Flash E-card

Nov 22, 2011

I want to make a nice and impressive flash e-card,

View 1 Replies

Professional :: Cannot Get A Simple Flash Button To Work?

Jul 20, 2011

I do not know action script, and, have created a button in flash that pops up information when you rollover the button.The button works fine, but, the entire area - where the information pops - is also poping up when I rollover that area.

View 4 Replies

IDE :: Make A Simple Mp3 Player?

Jul 4, 2009

I'm trying to create a very basic player for my very basic site.

View 3 Replies

Professional :: Make A Simple Flash Intro With No Buttons ?

Jun 13, 2010

I've been working with Photoshop for years but recently started using dreamweaver to build sites.I want to make a flash intro for the site I am currently working on and have never used Flash before.I am looking to make a simple flash intro with no buttons and have it automatically cycle through the images I have.I'm looking for a tutorial to make an intro like the one on this page: http:[url]....

View 1 Replies

Professional :: Buy Book To Make A Simple Flash Game?

Jul 29, 2010

I need to make or buy a template for a simple flash game for a clients website. It has to be legit to buy. It is about 5 pages long. You are asked a question, you select a radio button for the answer to the question, it compiles all your answers and gives you a result.I know flash pretty well but ccording to budget and time.it is best not to have to experiment.

View 2 Replies

Professional :: How To Do Simple Or Basic ActionScript On Adobe Flash CS4

May 6, 2011

I am doing my simple portfolio on Adobe Flash CS4. However when I am already looking just for the basic action scripting from the tutorial I can't determine which is the most accurate for the buttons. Here's my sample below: The texts that were listed below are my buttons such as About, Profile, Print Ads, Magazine, Logo, Print, Illustration, and Design Concept.

I've already convert it into symbol as BUTTON and now I am ready to put a basic action script to function and transfer into another scene. Example I want to function the Illustration and Print button into Illustration and Print scene how would I do the action script about it?

Here's the example of next scenes that could be clicked from the homepage
This is the ILLUSTRATION scene
This is the PRINT scene
How to do the action scripting by using the gotoAndPlay or anything else to function my portfolio.

View 12 Replies

Professional :: Make A Simple Flash Website Video Intro In Flash CS5 Pro?

Jul 31, 2010

I am new to flash and trying to make a simple flash website video intro in Flash CS5 Pro.I have a flv viedo on the stage, under an image with a trasnparent center.I have the video on the bottom layer, the overlay image on the middle layer, and the top layer is my AS layer (AS3).

The video is currently autoplaying when i export.All i want is for it to open my website in the same window as the intro played when the video ends.I dont need a "skip intro button" or anything.I just want it to play the intro when you go to my site, and then bring up the index page of my site after it plays.

View 2 Replies

ActionScript 2.0 :: CS3 Simple Music Player

Jan 21, 2009

I want to add a really simple music player to my flash website.Basically all i want is one of my tracks to start when the page loads.Then a simple 'sound on/off'.

View 6 Replies

Professional :: Flash Publish Setting : Exporting Specific Frame As Png?

Jul 27, 2010

I'm unable to make it work :Flash exports the first frame in the SWF file as a PNG file, unless you mark a different keyframe for export by entering the #Static frame label.When publishing the fla, the png is build from the frame that is currently displayed in flash (if my timeline is at frame 3, frame 3 get exported)

View 2 Replies

Professional :: Make A Simple Theremin In Flash As Part Of A Project?

Jan 19, 2011

I'm an MA student, and I am looking to make a simple theremin in Flash as part of a project. Can it be done? Has anyone done it before?

View 3 Replies







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