<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (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:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* 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;}
span.EmailStyle17
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@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]--></head><body lang=EN-GB link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='color:#1F497D'>Copied, pasted, and committed. I haven’t tested it.<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> xerte-dev-bounces@lists.nottingham.ac.uk [mailto:xerte-dev-bounces@lists.nottingham.ac.uk] <b>On Behalf Of </b>Smith, John<br><b>Sent:</b> 12 July 2013 16:19<br><b>To:</b> xerte-dev@lists.nottingham.ac.uk<br><b>Subject:</b> [Xerte-dev] Changes to wizard.swf<br><b>Importance:</b> High<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><span lang=EN-US>Hi,<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>This has been a bug-bear of mine for a while… holding down shift/pressing play on a sub-node of a page (should open that page) has never worked, but always gone to page 1..<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>Well I think I have it solved… Can someone add this code to the wizard and then commit if appropriate as I don’t have commit rights to the xerte google code project, only the toolkits…<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                //if shift is down, jump straight to this page<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                if (Key.isDown(Key.SHIFT)){<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                // First we find the top page of the currently selected node<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                current_node = tree.selectedNode;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                while (current_node.parentNode.nodeName != "learningObject" && current_node.parentNode.nodeName != undefined) {<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                current_node = current_node.parentNode;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                }<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                // Then get the linkID or assign one...<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                linkID = current_node.attributes.linkID;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                if ( linkID == undefined){<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                current_node.attributes.linkID = 'PG' + new Date().getTime();<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                linkID = current_node.attributes.linkID;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                }<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                if(_root.apache!="false"){<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                url += '_' + linkID;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                }else{<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                                url += '&linkID=' + linkID;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                                }<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                } <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>                                                saveFile();<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>Regards,<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US>John Smith<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>Learning Technologist<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>School of Health & Life Sciences<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>Glasgow Caledonian University<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:12.0pt;font-family:"Times New Roman","serif"'><br></span><span lang=EN-US style='font-size:10.0pt;font-family:"Arial","sans-serif";color:gray'>Glasgow Caledonian University is a registered Scottish charity, number SC021474<br><br>Winner: Times Higher Education’s Widening Participation Initiative of the Year 2009 and Herald Society’s Education Initiative of the Year 2009.<br><a href="http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html">http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html</a><br><br>Winner: Times Higher Education’s Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners.<br><a href="http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html">http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html</a></span><span lang=EN-US style='font-size:12.0pt;font-family:"Times New Roman","serif"'><o:p></o:p></span></p></div></body></html>