[flexcoders] Re: Simple Flex audio player

2008-12-03 Thread oneworld95
I can imagine there are lots of options, but here's one
http://code.google.com/p/xmlmp3player/

-Alex

--- In flexcoders@yahoogroups.com, Haykel BEN JEMIA [EMAIL PROTECTED]
wrote:

 Hi,
 
 anyone knows of a simple Flex audio player (just start/stop buttons
and a
 slider)?
 It shouldn't be a big deal to implement one, just to avoid
reinventing the
 wheel.
 
 Thanks,
 
 Haykel Ben Jemia
 
 Allmas
 Web  RIA Development
 http://www.allmas-tn.com





Re: [flexcoders] Re: Simple Flex audio player

2008-12-03 Thread gabriel montagné
On Wed, Dec 3, 2008 at 8:38 AM, oneworld95 [EMAIL PROTECTED] wrote:
 I can imagine there are lots of options, but here's one [...]

Here's another one, it's chromeless but you can easily bind buttons and
sliders (you bind a slider back and forth and it will scrub and update without
hassle).

http://rojored.googlecode.com/svn/trunk/docs/flex/com/rojored/view/controls/Audio.html
http://rojored.com/code/simple-flex-audio-player/AudioTest.swf

You'll just need these two classes,
http://code.google.com/p/rojored/source/browse/trunk/src/com/rojored/view/controls/Audio.as
http://code.google.com/p/rojored/source/browse/trunk/src/com/rojored/view/controls/audioClasses/AudioEvent.as

Or the swc,
http://rojored.googlecode.com/svn/trunk/bin/RojoRed.swc

hth,
g.



-- 
gabriel montagné láscaris comneno
http://rojored.com
t/506.8367.6794


Re: [flexcoders] Re: Simple Flex audio player

2008-12-03 Thread gabriel montagné
On Wed, Dec 3, 2008 at 10:03 AM, gabriel montagné [EMAIL PROTECTED] wrote:
 Here's another one, it's chromeless but you can easily bind buttons and
 sliders (you bind a slider back and forth and it will scrub and update without
 hassle).

mx:Application
xmlns:mx=http://www.adobe.com/2006/mxml;
xmlns:rojored=http://rojored.com/2008;

rojored:Audio
id=audioPlayer
source=song.mp3
playheadTime={playheadTime.value}
/
mx:HSlider
minimum=0
id=playheadTime
value={audioPlayer.playheadTime}
maximum={audioPlayer.totalTime}
/
/mx:Application

-- 
gabriel montagné láscaris comneno
http://rojored.com
t/506.8367.6794