I am newbie in Flash Website development. I want to change the picture on the website with a specific interval of time. I have setup motion tween for two pictures on the website and it works once while loading the site but after it reaches the home keyframe it stops because I have the action script command stop on that keyframe. Could anyone guide me in a right direction to change the picture? Or is there any other way to do it? By the way I am using Adobe Flash CS6.
function gotoLaserLikeLipo(event:MouseEvent):void
{
gotoAndStop("laser-like-lipo");
}
function gotoCelluite(event:MouseEvent):void
{
gotoAndStop("celluite");
}
function gotoSpecialOffers(event:MouseEvent):void
{
gotoAndStop("special-offers");
}
function gotoOtherServices(event:MouseEvent):void
{
gotoAndStop("other-services");
}
function gotoFaq(event:MouseEvent):void
{
gotoAndStop("faqs");
}
function gotoContactUs(event:MouseEvent):void
{
gotoAndStop("contact-us");
}
function gotoMedia(event:MouseEvent):void
{
gotoAndStop("media");
}