How can I reset a recorder widget?
If you want to reuse a recording (or playback) widget in your page, you first need to provide a an embedding id:
[code language="html"]
<ziggeo ziggeo-id="foobar"></ziggeo>
[/code]
Using this id, you can find your embedding and reset your embedding as follows:
[code language="js"]
var embedding = ZiggeoApi.Embed.get("foobar");
embedding.reset();
[/code]