We&#39;ve been using the page wizards to create learning objects that we then load into a flash wrapper application that creates a menu of them so that the user can select them as desired.  <br><br>Everything works fine with the wizard created pages when run directly in the browser.  <br>

<br>All xerte pages that are created by hand rather than by page templates work fine when run in our wrapper and also when published and run on their own in a browser.  <br><br>The problem comes when we run an rlo file containing wizard-created pages from our flash wrapper - it can&#39;t seem to resolve &quot;templatePath&quot; in order to find the panel.swf that I reference. <br>

<br>We can&#39;t find where templatePath is being assigned.  Looked around on the wiki page the source for xerte.swf but couldn&#39;t find it.<br><br> <br>Here&#39;s the line from the one of the page template rlm files:<br>

<span style="color: rgb(51, 51, 255);">        &lt;DIS tabIndex=&quot;-1&quot; id=&quot;panel&quot; name=&quot;panel&quot; x=&quot;-300&quot; y=&quot;20&quot; type=&quot;ext&quot; url=&quot;templatePath + &#39;common/whitePanel.swf&#39;&quot;&gt;&lt;![CDATA[]]&gt;&lt;/DIS&gt;</span><br style="color: rgb(51, 51, 255);">

<br><br>Tried substituting &quot;fileLocation&quot; for it but that didn&#39;t work.  <br><br><br>What did work is just removing &quot;templatePath&quot;  from the url like this:<br><span style="color: rgb(51, 51, 255);">        &lt;DIS tabIndex=&quot;-1&quot; id=&quot;panel&quot; name=&quot;panel&quot; x=&quot;-300&quot; y=&quot;20&quot; 
type=&quot;ext&quot; url=&quot;&#39;common/whitePanel.swf&#39;&quot;&gt;&lt;![CDATA[]]&gt;&lt;/DIS&gt;</span><br style="color: rgb(51, 51, 255);"><br><br>Here&#39;s how we&#39;re loading the rlo file in our flash wrapper:<br>

<span style="color: rgb(51, 51, 255);">        this._parent.attachMovie(&#39;Xerte&#39;, &#39;myRLO&#39;, 0).init(&#39;DABB.rlo&#39;, 230, 80, 1020, 640);</span><br>
<br><br>In short, we&#39;ve figured out a way to edit the rlo files so that they work in our wrapper but then they don&#39;t work outside of it.  <br><br>Hoping there&#39;s a way to get the same file to work in both situations.<br>

<br>Thanks!!<br>ma<br><br>