bunglebrown
New Member
- Messages
- 157
- Reaction score
- 0
- Points
- 0
wondering if there is anyway to activate a flash animation with a regular image (outside of flash) so that when you press on the image the animation will begin?
function Jumptoframe50()
{
var flashMovie=getFlashMovieObject("moviename");
var currentFrame=flashMovie.TGetProperty("/", 1);
var Frame50=parseInt(currentFrame);
if (Frame50>=0)
Frame2=50;
flashMovie.GotoFrame(Frame50);
flashMovie.Play();
}