brux
brux

Reputation: 3230

Change playback of flash object via html or javascript

is it possible to change the playback speed of a flash object without having to recompile the flash object, i.e through the html attributes or javascript?

thanks in advance

Upvotes: 1

Views: 208

Answers (1)

Cay
Cay

Reputation: 3794

No, but you can call a function within your SWF file from JavaScript (ExternalInterface. addCallback) that changes your animation's FPS... However, you would need to create the function in your flash file and recompile it once.

You could also create a loader SWF that has this functionality, and load your old flash movie from it.

Upvotes: 1

Related Questions