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

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickael GOETZ committed Nov 18, 2011
1 parent b19967f commit a9aaadd
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ Every button activates when necessary (you obviously don't need a download butto

You can insert it in your web pages using the great [swfobject](http://code.google.com/p/swfobject/) javascript library like so :

```
var flashVars = {
title : "My Badass Recorder"
}
swfobject.embedSWF("Simple-recorder.swf", "recorder", "320", "170", "10.0.0", null, flashVars);
```javascript
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 :

```html
<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>
<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>
```

0 comments on commit a9aaadd

Please sign in to comment.