I am looking for a way to control the playback of some content created via Breeze using JavaScript. Essentially I have the Breeze SWF embedded on a page, and that page is surfaced in another application. The application only communicates via JavaScript, so I have to expose some pause/resume functions to the Breeze content.
With Captivate content we are able to do something like this:
// Adobe Captivate
function pause()
{
var movie = document.getElementById("match3");
movie.PauseResume();
}
function resume()
{
var movie = document.getElementById("match3");
movie.PauseResume();
}
These methods, however, don't work for SWFs produced from Breeze. The native Flash/SWF (StopPlay()
and Play()
) simply start the Breezo over at the loading frame; rendering it useless.
Are any movie controls exposed to an external interface for content published from Breeze?