I have a HTML control in Flex that succefully loads a page.
Is there someway that i can extract or get all the images from that HTML control and show them?
I have a HTML control in Flex that succefully loads a page. Is there
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.
You can actually use the HTML document DOM and ask about all img tags. It’s a lot cleaner this way.
Once you get the DOM it’s all standard so you can check HTML DOM documentation if you’re unsure about something.
Here’s quick example. I’ll just write the onComplete function, as it would be called in Taurayi’s example