is there any solution on StageWebView.loadURL(), how I can handle URLs in HTML Pages which have target=”_blank”?
It’s a mobile Android App. (TabbedViewApplication)
Hope someone can help.
Thx
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.
OK, so the only solution for this problem i could found is to load the page (containing the links) as String with the
URLLoaderand replace its specified parts. Finally loading it viaStageWebView.loadString()method.Problems occur when the Site is dynamic and contains JavaScript. I had also replace some relative links with absolute pathes.
That’s it… but I really hope that adobe makes it possible to load those “_blank” links with the
StageWebView.loadURL()method.