is it possible to extract dynamic loaded text from a swf (flash application) programatically ?
is it possible to extract dynamic loaded text from a swf (flash application) programatically
Share
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.
I’ve got one thing in mind.
If you load the swf, you can access its children in the INIT handler, so you could use a recursive function to loop through all the children automatically and get all children that are TextFields( dynamic text ), as statis text is TextSnapshot.
Here’s a simple implementation:
Sounds like some kind of crawler. What do you have in mind ?