in normal swf files, usually it plays from frame 1 till the end and then loop…
is it possible to use javascripts/any script to make it start play from, e.g. frame 10?
Thankyou.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, but it would require the SWF to be fully loaded.
What I would do is create a pre-loader as the first frame which waits until the SWF has finished loading, you can then use the pre-loader to decide what frame to go to.
For this I’d have a default frame set as frame 2 (that’s what frame 1 used to be) and then you may use either FlashVars or JavaScript to tell the pre-loader which frame to choose. Personally, as you have PHP available, I’d use PHP to create the FlashVars dynamically on page generation.