Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

MrMitch/Simple-AS3-Recorder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Simple AS3 Recorder#

A voice recorder in Flash AS3 language. Allows you to record a sound, listen to it and download it (as a WAV file).

Very simple yet efficient interface with 3 buttons :

  • Record button
  • Play/Stop button
  • Download button

Every button activates when necessary (you obviously don't need a download button when you haven't recorded anything yet).

You can insert it in your web pages using the great swfobject javascript library like so :

var flashVars = {
    title : "My Badass Recorder"
}

swfobject.embedSWF("Simple-recorder.swf", "recorder", "320", "170", "10.0.0", null, flashVars);

Or you can play it old-school and use the <object> tag :

<object type="application/x-shockwave-flash" data="Simple-recorder.swf" width="320" height="170">
    <param name="movie" value="Simple-recorder.swf" />
    <param name="width" value="320" />
    <param name="heigth" value="170" />
    <param name="flashVars" value="title=My%20Badass%20Recorder" />
</object>

About

A simple yet efficent AudioRecorder using AS3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published