Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have flash media server installed and i wrote some flash games using action script 3.

is there a way for me to allow the users to record their plays so they'll be able to watch it later from my fms server?

share|improve this question

1 Answer

up vote 1 down vote accepted

From within the game you could approximate their actions but I don't believe that you can actually make a video of all the frames. I know there are apps out there that do that but they don't run within the swf.

But if you really wanted to you could just put a blanket click listener on the stage, record the position of the mouse and the time that it was clicked and any other state that would be necessary. As long as there's no randomness in the game this would work for a replay. If there is randomness you'll have to store the random number generator seed as well so that you can make sure that the randomness is the same each time.

I hope that helps direct you down some useful paths.

share|improve this answer
thanks alot! :) it's very useful. – ufk Dec 25 '09 at 2:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.