<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    It turns out that init IS called with flash variables as the
    arguments to init. Pat pointed me in that direction. It is right at
    the bottom of the wizard code...<br>
    <br>
    That also means that there is stuff going on in init that should
    have been in a if (xerte)  block , but isn't now. I.e., mdm is used
    in init, and I think it shouldn't. I haven't changed that at the
    moment, because it seems to work now.<br>
    <br>
    Tom<br>
    <br>
    Op 28-5-2012 11:07, Julian Tenney schreef:
    <blockquote
cite="mid:12C67A1EEC419342AF5E59DA31562C3F0BF5CCB561@EXCHANGE1.ad.nottingham.ac.uk"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 12 (filtered
        medium)">
      <style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
        {mso-style-priority:99;
        mso-style-link:"Plain Text Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.5pt;
        font-family:Consolas;}
span.PlainTextChar
        {mso-style-name:"Plain Text Char";
        mso-style-priority:99;
        mso-style-link:"Plain Text";
        font-family:Consolas;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
      <div class="WordSection1">
        <p class="MsoPlainText">That's right, nothing will call init in
          XOT, so set a flashVar. Right at the top of the file is this,
          so you can set your translation stuff up in the else…<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">if (mdm != undefined){ <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      xerte = true;<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      mdm.enableexithandler();<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      btnSave.label = 'Save';<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      btnSave.icon = 'icSave';<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">} else {<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      //THIS MUST BE XOT SO DO YOUR STUFF HERE...<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New""><o:p> </o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      xerte = false;<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      //local connections for drawing tools<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      editRec = new LocalConnection();<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      editRec.getData = function(){<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">            var drawingData =
            tree.selectedNode.firstChild.nodeValue;<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">            editSend.send("drawRec",
            "initDrawing", drawingData, _root.rlovariable, 'web' );<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      }<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      editRec.setDrawingData = function(xml){<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">            setDrawingData(xml);<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      }<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      editRec.connect("editRec");<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      editSend = new LocalConnection();<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      <o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      btnSave.label = 'Publish';<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">      btnSave.icon = 'icWorld';<o:p></o:p></span></p>
        <p class="MsoPlainText"><span style="font-family:"Courier
            New"">}<o:p></o:p></span></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText"><span lang="EN-US">-----Original
            Message-----<br>
            From: <a class="moz-txt-link-abbreviated" href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a>
            [<a class="moz-txt-link-freetext" href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">mailto:xerte-dev-bounces@lists.nottingham.ac.uk</a>] On Behalf
            Of Tom Reijnders<br>
            Sent: 26 May 2012 12:09<br>
            To: For Xerte technical developers<br>
            Subject: [Xerte-dev] Multi language wizard in XOT</span><o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">The multilanguage wizard is ready for
          Xerte Standalone, but I need to <o:p></o:p></p>
        <p class="MsoPlainText">figure out how to make it work in XOT.<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">In Xerte the current language choice is
          given to the wizard with a call <o:p></o:p></p>
        <p class="MsoPlainText">of the editor to init, but XOT does
          never call init.<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">So I assume I have to set a flashvar 
          and make sure that somewhere the <o:p></o:p></p>
        <p class="MsoPlainText">labels are set correctly (also only done
          in init at the moment, but that <o:p></o:p></p>
        <p class="MsoPlainText">is not good enough for XOT).<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">Julian, am I right that not calling init
          is the reason the wizard is not <o:p></o:p></p>
        <p class="MsoPlainText">working in XOT like I expect?<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">-- <o:p></o:p></p>
        <p class="MsoPlainText">--<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">Tom Reijnders<o:p></o:p></p>
        <p class="MsoPlainText">TOR Informatica<o:p></o:p></p>
        <p class="MsoPlainText">Chopinlaan 27<o:p></o:p></p>
        <p class="MsoPlainText">5242HM Rosmalen<o:p></o:p></p>
        <p class="MsoPlainText">Tel: 073 5226191<o:p></o:p></p>
        <p class="MsoPlainText">Fax: 073 5226196<o:p></o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText"><o:p> </o:p></p>
        <p class="MsoPlainText">_______________________________________________<o:p></o:p></p>
        <p class="MsoPlainText">Xerte-dev mailing list<o:p></o:p></p>
        <p class="MsoPlainText"><a class="moz-txt-link-abbreviated" href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><o:p></o:p></p>
        <p class="MsoPlainText"><a class="moz-txt-link-freetext" href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a><o:p></o:p></p>
      </div>
      <br>
      <p>
        This message and any attachment are intended solely for the
        addressee and may contain confidential information. If you have
        received this message in error, please send it back to me, and
        immediately delete it. Please do not use, copy or disclose the
        information contained in this message or in any attachment. Any
        views or opinions expressed by the author of this email do not
        necessarily reflect the views of the University of Nottingham.
      </p>
      <p>
        This message has been checked for viruses but the contents of an
        attachment
        may still contain software viruses which could damage your
        computer system:
        you are advised to perform your own checks. Email communications
        with the
        University of Nottingham may be monitored as permitted by UK
        legislation.
      </p>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Xerte-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>
<a class="moz-txt-link-freetext" href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a>

This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.

This message has been checked for viruses but the contents of an attachment
may still contain software viruses which could damage your computer system:
you are advised to perform your own checks. Email communications with the
University of Nottingham may be monitored as permitted by UK legislation.

</pre>
    </blockquote>
    <br>
    <pre class="moz-signature" cols="72">-- 
--

Tom Reijnders
TOR Informatica
Chopinlaan 27
5242HM Rosmalen
Tel: 073 5226191
Fax: 073 5226196

</pre>
  </body>
</html>