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
|
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 |
|||||||
|
|
I never worked with the StageWebView but I know it's really limited. When using an HTMLLoader, you can set a custom HTMLHost instance that specifies to use current HTMLLoader when opening to _blank. However, I don't think it's possible with StageWebView.
|
|||||||
|
|
OK, so the only solution for this problem i could found is to load the page (containing the links) as String with the 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 |
||||
|
|
|
If you want to capture when a user clicks on a link inside your StageWebView add an an event listener for location changing event (LocationChangeEvent). This LocationChangeEvent will include the URL they are going to and target. Then you can prevent the URL from loading, let it continue (by doing nothing) or handle it any other way including loading another URL. If you want to load another URL first stop the loading with stageWebView.stop(). You should also call event.preventDefault(). You can then attempt to Note: There is another event called locationChange that may be helpful. |
|||||
|
|
The Bug or lets say Feature Request has been committed to Adobe's Bug System. Please vote for it! https://bugs.adobe.com/jira/browse/SDK-32091 Thx & Best regards |
|||
|
|
|
As it was declared as an official bug, adobe QA Owner Sanjay C. added a comment: "Able to reproduce the issue with the attached project. Sending to IRB." So, hope the next Build will come up with the fix wit it. Best regards |
|||
|
|