-
1. Re: Pausing Slide during imported SWF interaction
NathanStryker May 24, 2010 11:04 AM (in response to NathanStryker)Hey All, Still looking for some ideas with this... Anybody ?
-
2. Re: Pausing Slide during imported SWF interaction
CalebRejino May 25, 2010 11:42 AM (in response to NathanStryker)Same problem here. Looking for a solution within this forum.
-
3. Re: Pausing Slide during imported SWF interaction
NathanStryker May 25, 2010 11:56 AM (in response to CalebRejino)Hi Caleb -
I figured out the solution to my problem. I am not sure if this will help you, but what I did is this....
In Captivate I added a next button to the slide, this pauses Captivate. Then at the end of my SWF file I added the simple code
visible=false;
To the final function
in other words
exit_btn.addEventListener(MouseEvent.CLICK, exitClicked);
function exitClicked(e:MouseEvent)
{
visible=false:
}
This effectivly "Hides" the SWF file allowing the user to see the "next" button hidden beneath it.
FYI (make sure you put the "next" button some where behind the SWF where the user will not accidantly click on it, apparently the interactions will work "through" the SWF file.
Let me know if you have any questions.

