<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
It's a string.<br><br>{'&lt;p&gt;Buy SuperWidget' + '\u00AE' + ' today!&lt;/p&gt;'}.<br><br><hr id="stopSpelling">Subject: RE: [Xerte] Adding from other applications<br>Date: Thu, 28 Jan 2010 16:49:17 +0000<br>From: Julian.Tenney@nottingham.ac.uk<br>To: xerte@lists.nottingham.ac.uk<br><br>






<style>
.ExternalClass p.ecxMsoNormal, .ExternalClass li.ecxMsoNormal, .ExternalClass div.ecxMsoNormal
{margin-bottom:.0001pt;font-size:12.0pt;font-family:'Times New Roman','serif';}
.ExternalClass a:link, .ExternalClass span.ecxMsoHyperlink
{color:blue;text-decoration:underline;}
.ExternalClass a:visited, .ExternalClass span.ecxMsoHyperlinkFollowed
{color:purple;text-decoration:underline;}
.ExternalClass span.ecxEmailStyle17
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass span.ecxEmailStyle18
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass span.ecxEmailStyle19
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass span.ecxEmailStyle20
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass span.ecxEmailStyle21
{font-family:'Calibri','sans-serif';color:#1F497D;font-weight:normal;font-style:normal;text-decoration:none none;}
.ExternalClass span.ecxEmailStyle22
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass span.ecxEmailStyle23
{font-family:'Calibri','sans-serif';color:#1F497D;font-weight:normal;font-style:normal;text-decoration:none none;}
.ExternalClass span.ecxEmailStyle24
{font-family:'Calibri','sans-serif';color:#1F497D;}
.ExternalClass .ecxMsoChpDefault
{font-size:10.0pt;}
@page Section1
{size:612.0pt 792.0pt;}
.ExternalClass div.ecxSection1
{page:Section1;}
</style>





<div class="ecxSection1">

<p class="ecxMsoNormal"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">Quite. So how do we handle it? I’m sure I’ve done it before,
just can’t remember how,</span></p>

<p class="ecxMsoNormal"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">J</span></p>

<p class="ecxMsoNormal"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 36pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Paul Swanson<br>
<b>Sent:</b> Thursday, January 28, 2010 4:29 PM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 36pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">I
know I’ve used the Unicode characters before by typing them into a text icon,
but know I either get the string of the Unicode value, or ‘undefined’. But if I
add them to an array, I can use them by referencing the array index.</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">I’ve
got an array set up with most of the HTML entities, using the entity as the
index and the Unicode equivalent as the value. Partial sample:</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">// create array
with HTML entities as the key and the unicode equivalent as the value</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities =
Array();</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;nbsp;"]&nbsp;&nbsp;
= "\u00A0"; // non-breaking space</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;iexcl;"]&nbsp;
= "\u00A1"; // inverted exclamation mark</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;cent;"]&nbsp;&nbsp;
= "\u00A2"; // cent sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;pound;"]&nbsp;
= "\u00A3"; // pound sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;curren;"]
= "\u00A4"; // currency sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;yen;"]&nbsp;&nbsp;&nbsp;
= "\u00A5"; // yen sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;euro;"]&nbsp;&nbsp;
= "\u20AC"; // Euro sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;brvbar;"]
= "\u00A6"; // broken vertical bar (|)</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;sect;"]&nbsp;&nbsp;
= "\u00A7"; // section sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;uml;"]&nbsp;&nbsp;&nbsp;
= "\u00A8"; // diaeresis</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;copy;"]&nbsp;&nbsp;
= "\u00A9"; // copyright sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;reg;"]&nbsp;&nbsp;&nbsp;
= "\u00AE"; // registered sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;trade;"]&nbsp;
= "\u2122"; // trademark sign</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 10pt; font-family: 'Courier New'; color: black;" lang="EN-US">HTMLentities["&amp;deg;"]&nbsp;&nbsp;&nbsp;
= "\u00B0"; // degree sign</span><span style="font-size: 10pt; font-family: 'Courier New'; color: rgb(31, 73, 125);" lang="EN-US"></span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">With
this, I can display the registered trademark symbol with {‘&lt;p&gt;Buy
SuperWidget’ + HTMLentities[‘&amp;reg;’] + ‘ today!&lt;/p&gt;’}. But
{‘&lt;p&gt;Buy SuperWidget’ + \u00AE + ‘ today!&lt;/p&gt;’} gives me
‘undefined’, which seems goofy. Seems like those should be the same thing.</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<div style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color blue; border-width: medium medium medium 1.5pt; padding: 0cm 0cm 0cm 4pt;">

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 36pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Julian Tenney<br>
<b>Sent:</b> Thursday, January 28, 2010 1:17 AM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">A related qustion – I was
playing around with the google translate API, and it returns strings containing
\u1234 etc. In Xerte, they display as that: \u1234. How do I get it to display
the actual character? I tried switching \u1234 for <a>\\u1234</a>
but no dice. Have you any idea?</span></p>

<p class="ecxMsoNormal" style="margin-left: 36pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 72pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Paul Swanson<br>
<b>Sent:</b> Wednesday, January 27, 2010 5:05 PM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 72pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">What
if you use \u00A0 instead of spaces? That’s the Unicode equivalent of
&amp;nbsp; in HTML (a non-breaking space). It should look like a space, but
allow you to test for the existence of the character, just like an underscore.</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">Paul</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);" lang="EN-US">&nbsp;</span></p>

<div style="border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color blue; border-width: medium medium medium 1.5pt; padding: 0cm 0cm 0cm 4pt;">

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 72pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Hall C.M.<br>
<b>Sent:</b> Wednesday, January 27, 2010 8:54 AM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span lang="EN-US">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">I’m teaching EFL. The problem
I have is the choice of answer is between, for example, &nbsp;worked/ was
working. When I’ve tried to make two word gaps Xerte objects </span><span style="font-size: 11pt; font-family: Wingdings; color: rgb(31, 73, 125);">L</span><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);"> If I
put two gaps it gives the answer away. I’ve tried using underscores and dashes
but that’s not really ideal.</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">The new templates sound
interesting. When will they be available?</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">Chris</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 72pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Julian Tenney<br>
<b>Sent:</b> 27 January 2010 16:06<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 72pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">I did some work recently on
the gap fill exercise to allow parts of words to be marked up for gaps –
previously you could only mark up whole words. What’s a ‘two- gap word’?</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">There is also a new template
pretty much finished designed with modern languages teaching in mind – what are
you teaching?</span></p>

<p class="ecxMsoNormal" style="margin-left: 72pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 108pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Hall C.M.<br>
<b>Sent:</b> Wednesday, January 27, 2010 4:03 PM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 108pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">My original question was
about adding a Hot Potatoes Gap Fill to a Xerte package in order to get round
the problem of two-word gaps in Xerte. Eg adding a Hot Potatoes page like a
Google map but it doesn’t seem &nbsp;possible other than as a link. Not sure
how SCORM is relevant either.</span></p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">Chris</span></p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 108pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Julian Tenney<br>
<b>Sent:</b> 27 January 2010 15:51<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> RE: [Xerte] Adding from other applications</span></p>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 108pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">I’m not sure how SCORM is
relevant?</span></p>

<p class="ecxMsoNormal" style="margin-left: 108pt;"><span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: rgb(31, 73, 125);">&nbsp;</span></p>

<div style="border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 144pt;"><b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">From:</span></b><span style="font-size: 10pt; font-family: 'Tahoma','sans-serif';" lang="EN-US">
xerte-bounces@lists.nottingham.ac.uk
[mailto:xerte-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Yuping Jin<br>
<b>Sent:</b> Wednesday, January 27, 2010 3:45 PM<br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> Re: [Xerte] Adding from other applications</span></p>

</div>

<p class="ecxMsoNormal" style="margin-left: 144pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-right: 0cm; margin-bottom: 12pt; margin-left: 144pt;">Is this expected by SCORM compliant LMS? To play
other SCORM contents or leverage them? I mean I'm not sure what kind of interoperability
can be obtained by complying to SCORM. Is it expected to insert SCORM content
from other product into Xerte piece?<br>
Any point would be appreciated! </p>

<div>

<p class="ecxMsoNormal" style="margin-left: 144pt;">On Tue, Jan 26, 2010 at 11:38
PM, Julian Tenney &lt;<a href="mailto:Julian.Tenney@nottingham.ac.uk">Julian.Tenney@nottingham.ac.uk</a>&gt;
wrote:</p>

<div>

<div>

<p class="ecxMsoNormal" style="margin-left: 144pt;"><span style="color: rgb(31, 73, 125);">No, but you can create links
to them from a Xerte piece,</span></p>

<p class="ecxMsoNormal" style="margin-left: 144pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

<div>

<div style="border-style: solid none none; border-color: -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;">

<p class="ecxMsoNormal" style="margin-left: 180pt;"><b><span style="font-size: 10pt;" lang="EN-US">From:</span></b><span style="font-size: 10pt;" lang="EN-US"> <a href="mailto:xerte-bounces@lists.nottingham.ac.uk">xerte-bounces@lists.nottingham.ac.uk</a>
[mailto:<a href="mailto:xerte-bounces@lists.nottingham.ac.uk">xerte-bounces@lists.nottingham.ac.uk</a>]
<b>On Behalf Of </b>Hall C.M.<br>
<b>Sent:</b> Tuesday, January 26, 2010 3:32 PM</span></p>

<div>

<p class="ecxMsoNormal" style="margin-left: 144pt;"><span style="font-size: 10pt;" lang="EN-US"><br>
<b>To:</b> Xerte discussion list<br>
<b>Subject:</b> [Xerte] Adding from other applications</span></p>

</div>

</div>

</div>

<p class="ecxMsoNormal" style="margin-left: 180pt;">&nbsp;</p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">Hi,</span></p>

<div>

<div>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">This might seem a strange
question but Is it possible to add activities from other applications, Hot
Potatoes for example, to Xerte or Xerte Toolkits?</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><b><span style="font-size: 10pt; color: rgb(31, 73, 125);">Chris Hall</span></b></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><b><span style="font-size: 10pt; color: rgb(31, 73, 125);">e-Learning
Support Officer</span></b></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="font-size: 10pt; color: rgb(31, 73, 125);">Swansea
University</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="font-size: 10pt; color: rgb(31, 73, 125);"><a href="http://learninglab.swan.ac.uk/">http://learninglab.swan.ac.uk</a>
</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

<p class="ecxMsoNormal" style="margin-left: 180pt;"><span style="color: rgb(31, 73, 125);">&nbsp;</span></p>

</div>

</div>

</div>

</div>

<p class="ecxMsoNormal" style="margin-right: 0cm; margin-bottom: 12pt; margin-left: 144pt;"><br>
_______________________________________________<br>
Xerte mailing list<br>
<a href="mailto:Xerte@lists.nottingham.ac.uk">Xerte@lists.nottingham.ac.uk</a><br>
<a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte">http://lists.nottingham.ac.uk/mailman/listinfo/xerte</a></p>

</div>

<p class="ecxMsoNormal" style="margin-left: 144pt;"><br>
<br clear="all">
<br>
-- <br>
Jin Yuping<br>
<a href="mailto:jinyuping@gmail.com">jinyuping@gmail.com</a></p>

</div>

</div>

</div>                                               <br /><hr />Hotmail: Trusted email with powerful SPAM protection. <a href='http://clk.atdmt.com/GBL/go/196390707/direct/01/' target='_new'>Sign up now.</a></body>
</html>