<div>Recently I have been working on opening up Xerte projects via a url which includes a parameter to specify which page to open the project at.</div><div><br></div><div>I have a javascript function which returns a url parameter, you pass the name of the parameter in the function call and it returns the value for the parameter if that parameter name has been included in the url.<br>
</div><div><br></div><div>When included in a html page it works reliably in IE8, Opera and Firefox.</div><div><br></div><div>However when I add the function to the end of rloObject.js and open the Xerte project with a url like the following (running a Xampp install of XOT)</div>
<div><br></div><div><a href="http://localhost/toolkits/play.php?template_id=20&pageID=bullet">http://localhost/toolkits/play.php?template_id=20&pageID=bullet</a></div><div><br></div><div>and including in a script in the Xerte project the lines</div>
<div><br></div><div>destinationPage = callJS("myFunction","pageID");</div><div>callJS("alert","
destinationPage
 = " + 
destinationPage
);</div><div><br></div><div>In Opera or Firefox I get an alert box that displays "destinationPage = bullet"</div><div>but in IE8 I get an alert box that displays "
destinationPage
 = null"</div><div><br></div><div>If I use the Developer Tools in IE 8 and put a break point in my function I can watch the parameter be correctly gathered by the javascript function and returned.</div><div><br></div>
<div>The debugger then shows the next stage in the process as being back in the flash environment with the current line shown in yellow below</div><div><br></div><div>function __flash__escapeXML(<span style="background-color:#33ff33">s</span>) {<br>
        return s.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&apos;");<br>}<br>
function __flash__toXML(value) {<br>   <span style="background-color:#ffff33">var type = typeof(value);</span><br>    if (type == "string") {<br>             return "<string>" + __flash__escapeXML(value) + "</string>";<br>
        } else if (type == "undefined") {<br>        return "<undefined/>";<br>   } else if (type == "number") {<br>        return "<number>" + value + "</number>";<br>
        } else if (value == null) {<br>        return "<null/>";<br>        } else if (type == "boolean") {<br>        return value ? "<true/>" : "<false/>";<br>     } else if (value instanceof Date) {<br>
        return "<date>" + value.getTime() + "</date>";<br>   } else if (value instanceof Array) {<br>       return __flash__arrayToXML(value);<br>   } else if (type == "object") {<br>
       return __flash__objectToXML(value);<br>   } else {<br>           return "<null/>"; //???<br>   }<br>}</div><div><br></div><div>If I set a watch on "<span style="background-color:#ffff00">value</span>" it correctly displays in the watch with the value of the url parameter</div>
<div>i.e. if my url has &pageID=bullet, and I called my function with </div><div>destinationPage = callJS("myFunction"."pageID");</div><div>then the watch shows "value" to be "bullet"</div>
<div><br></div><div>Since the type is a string the function 
__flash__escapeXML(<span style="background-color:#33ff33">s</span>) gets called.</div><div> <br></div><div>If I set a watch on <span style="background-color:#33ff33">s</span> in this function then this also displays with the value of "bullet"</div>
<div><br></div><div>However when you step beyond the line</div><div><br></div><div>
return s.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&apos;");
</div><div><br></div><div>the debugger changes to display</div><div><br></div><div>try { __flash__toXML(alert("destinationPage = null")) ; } catch (e) { "<undefined/>"; }</div><div><br></div><div>
I don't know if the functions revealed by the debugger are part of Xerte or part of the browser's flash player, but the problem appears to lie here in that somehow even though the javascript has been able to return the url parameter to the flash environment, the flash environment is then returning a value of "null".</div>
<div><br></div><div>If I can overcome this problem then it should be possible to call a XOT project via a url and open the project at a specific page in IE8, just as I now can if the project is opened in Firefox or Opera.</div>
<div><br></div><div>Can anyone with more knowledge of the Flash side of things cast any light on what is going wrong or how to fix this?</div><div><br></div><div>Kind regards</div><div><br></div><div>Johnathan</div><div>  </div>