50% off / full price $16
$8Try before you buy
Not sure if you need this component?
Download the free preview and customize it for your project before you purchase it.
Note: You can test the preview only on your computer.
Similar components for adobe flash
Mp3 Player for Adobe...
This is a fully customizable MP3 Player, built with support for... read more
Mp3 Player with Playlist
Fully customizable MP3 Player, built with support for multiple songs.... read more
Simple Mp3 Player
Minimalistic flash mp3 player with a twist, perfect for your website.... read more
list more items
General Videos
- How to buy?
watch movie - Embed a Flash Component in your Flash Project
watch movie - How to embed a Flash Component in the same HTML page twice?
watch movie - How to embed two different Flash Components in the same HTML page?
watch movie
Our recommendation
Basic Mp3 Player for Adobe Flash
Sometimes you don't need a big, fancy mp3 player. This basic mp3 player... read more
Save money now!
Showcase
Send us a link to the page you used this product on, and we'll post the link to your site on our blog if you customized it nicely.
Need support?
Get a support ticket
read more
Share this
If you enjoyed this product, please consider sharing it via a social network, or leaving a comment. Thanks!





Products RSS Feed
Follow us on twitter
support@flabell.com
odyou
on 17/3/12
In this website run normaly, but on local pc, i have this one (On Deploy Folder):
http://img11.hostingpics.net/pics/7480...
Any correction please ?
on 19/3/12
I'm not sure how you got the recorder to look like in your screenshot. Is that the FLA file's screenshot? We just tested the recorder and it works fine on the local machine. It's no different than running it on a server.
Have you made any changes to the component's source code? Try downloading the component one more time and use the good files.
odyou
on 17/3/12
What i can do now ?! i spend my money for nothing !!
on 19/3/12
The SWF file is approximately 370 KB, in the free preview and also in the full package that contains the source files. That's the size that is specified under the preview above (the properties rotate below the recorder).
joedhee valescha
on 18/3/12
How to Run on local PC?
on 19/3/12
The recorder works fine on the local machine. We just tested it. Could you please specify what problems have you encountered? What did you do to get them? We'll need more details, to find out what's happening.
Thanks for the patience!
joedhee valescha
on 18/3/12
on 19/3/12
joedhee valescha
on 18/3/12
on 19/3/12
odyou
on 19/3/12
Thank you to answer :)
For the screen in the top, i resolve the problem, must publish the compnents for work ...
on 20/3/12
I'm glad you solved the problem you had. The following URL explains how to embed the component using the "object" HTML element:
http://reference.sitepoint.com/html/ob...
As you can see there are various problems from a browser to another, so we recommend using JavaScript and the swfobject.js file. It solves all of the problems.
odyou
on 20/3/12
on 21/3/12
odyou
on 28/3/12
public function saveAs(filename:String = "record"):void { var loader:URLLoader = new URLLoader(); loader.addEventListener(IOErrorEvent.IO_ERROR, function(){trace("erreur");}); var request:URLRequest = new URLRequest("mic.php?name=" + filename +"&id="+ids); request.requestHeaders.push(new URLRequestHeader("Content-type", "audio/mpeg")); request.method = URLRequestMethod.POST; request.data = _mp3Data; loader.load(request); }As u can see, i added the IDS parameters, but is here the problem ! i used loaderInfo to get the IDS parameters like this:public function saveAs(filename:String = "record"):void { var ids:String = loaderInfo.parameters.id; var loader:URLLoader = new URLLoader(); loader.addEventListener(IOErrorEvent.IO_ERROR, function(){trace("erreur");}); var request:URLRequest = new URLRequest("mic.php?name=" + filename +"&id="+ids); request.requestHeaders.push(new URLRequestHeader("Content-type", "audio/mpeg")); request.method = URLRequestMethod.POST; request.data = _Data; loader.load(request); }And the error message is:
1120: Access of undefined property loaderInfo.
Can u help to resolve this problem please ? :)
Thank's.
on 29/3/12
Like the message explains, the loaderInfo is not a property for the object you're calling it for. I'm guessing you're trying to read a flashvar you're setting. You'll need to call it for the "root" property:
root.loaderInfo.parameters.id;
You have an example in the Sample.as file.
odyou
on 29/3/12
public function saveAs(filename:String = "record"):void { var ids:String = root.loaderInfo.parameters['id']; var loader:URLLoader = new URLLoader(); loader.addEventListener(IOErrorEvent.IO_ERROR, function(){trace("erreur");}); var request:URLRequest = new URLRequest("mic.php?name=" + filename +"&id="+ids); request.requestHeaders.push(new URLRequestHeader("Content-type", "audio/mpeg")); request.method = URLRequestMethod.POST; request.data = _mp3Data; loader.load(request); }I have this msg:1120: Access of undefined property root.U haved not a solution ???
on 1/4/12
It seems that the class you're calling the root for does not have this property. Sorry, I missed that. The only way we could help you on this is that we're doing the code changes. We can't assist you doing it. It would be a very long and difficult process. Please contact us for custom work at [email protected], if you're interested.
Thanks!
odyou
on 1/4/12
I succeffuly done the code :)
I can contact u to change the design ;)
on 1/4/12
jimibt
on 9/4/12
Quick question. I'm using the demo (for 5 minutes now :)) and therefore haven't yet purchased the full product. looking at the comment above from odyou, it would appear that a modification was done on the save routine in order to save via the web to an http POST resource. Am i correct in assuming that the current component does not support saving the newly recorded .mp3 file via HTTPPOST in a single action??
If it had this ability, this would be a no brainer for me as I need to provide a component (as part of a wider workflow) that saves images, audio and text via a single httppost action - ie for usability).
Looking fwd to your response.
jim
on 10/4/12
Unfortunately, it wasn't implemented by us. It was implemented by "odyou". We don't have those source files.
If you're interested, we'll do it for you as custom work. It's the same offer I made for "odyou".
Thank you for the question!