Question
htmlloader - set parameter in js [AIR]
In the loaded html page has a parameter: param = 0.
For example, I want to change the parameter to: param = 1
I do: htmlloader.window.param = 1
The parameter is replaced, but I need to get changed the whole page.
When I do this: document.documentElement.outerHTML
in the JS script still remains: param = 0;
What could be the problem and whether it is possible to solve it?
maybe it's a bug?