ios StageWebView LoadUrl with Query String Error
While I already have a workaround I would like to know if there are any better fixes for loading a html document with a query string into a StageWebView on ios.
Currently if I call the loadURL function with a url like "file:////index.html?test" the ? symbol gets change to %3f and the file does not load properly. The only fix I have found so far is to load the index.html file and then when the load complete event comes back to call loadURL again with a javascript call to fix the url such as
loadURL("javascript:window.location = 'file:////index.html?test';");
This in turn makes the webview reload as it should but this time with the query string in the location.
I am using Air 3.1, though I have noticed this error in past versions of air, this is just the first time I will need the functionality implemented in a project.
Thanks for your help,
Richard Pitul
