<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)"><!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><style><!--
/* Font Definitions */
@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;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
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.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {mso-style-priority:99;
        mso-style-link:"Balloon Text Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif";
        mso-fareast-language:EN-US;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.BalloonTextChar
        {mso-style-name:"Balloon Text Char";
        mso-style-priority:99;
        mso-style-link:"Balloon Text";
        font-family:"Tahoma","sans-serif";}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
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-CA link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='mso-fareast-language:EN-CA'>This is going to sound complicated but I think its probably simple, but my low level of actionscript navigation obscures the answer to me. I think it is all a matter of properly addressing the nodes, which I’m obviously not doing.<o:p></o:p></span></p><p class=MsoNormal><span style='mso-fareast-language:EN-CA'><o:p> </o:p></span></p><p class=MsoNormal><span style='mso-fareast-language:EN-CA'>Everything is fine in my desktop xerte app. The program navigates from a flash menu to any of a number of frameworks with entrypanes which includes a ‘Next’ and ‘Previous’ button to take the user through the FW pages. Once at the end of the pages in the FW it goes back to the main menu (shows the menu as visible). This is the structure for this:<o:p></o:p></span></p><p class=MsoNormal><span style='mso-fareast-language:EN-CA'><o:p> </o:p></span></p><p class=MsoNormal><span style='mso-fareast-language:EN-CA'><img width=240 height=220 id="Picture_x0020_2" src="cid:image001.png@01CCC496.4B540DC0"></span><o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><b>Next Page script code: (works fine)<o:p></o:p></b></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>if(fw.currentPage < fw.pages.length - 1)<o:p></o:p></p><p class=MsoNormal>{<o:p></o:p></p><p class=MsoNormal>fw.nextPage();<o:p></o:p></p><p class=MsoNormal>dummy = '<b>Part '+ part + ' - Module ' + module + ' - Page '+(fw.currentPage+1) + ' of ' + fw.pageCount + ' - '+partname;<o:p></o:p></p><p class=MsoNormal>showcurrentpage.setText(dummy);<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal>else<o:p></o:p></p><p class=MsoNormal>{<o:p></o:p></p><p class=MsoNormal>                  _level0.engine.rootIcon.navigate('menu');<o:p></o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><b>Problem:</b> I inserted Flash swf buttons (tutorialnavbuttons icon below) – and am attempting to use similar navigation code as above inside the swf button file. This breaks the navigation – I believe the ‘fw.currentpage’ etc. is no longer recognized….but I don’t know how to have the SWF file recognize the framework that I am in, and ‘currentpage’, etc. How should I address those nodes in the SWF file?<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><span style='mso-fareast-language:EN-CA'><img width=240 height=235 id="Picture_x0020_1" src="cid:image002.png@01CCC496.4B540DC0"></span><o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><b>SWF file code on the ‘Next’ button:  (it now always flows through the ‘else’ statement and goes to the menu – is there a way I can make it recognize the ‘fw.currentpage’ etc?<o:p></o:p></b></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>NextButton.onRelease = function() <o:p></o:p></p><p class=MsoNormal>{<o:p></o:p></p><p class=MsoNormal>                <o:p></o:p></p><p class=MsoNormal>                if(fw.currentPage < fw.pages.length - 1)    //THIS STATEMENT IS NO LONGER WORKING<o:p></o:p></p><p class=MsoNormal>{<o:p></o:p></p><p class=MsoNormal>fw.nextPage();<o:p></o:p></p><p class=MsoNormal>dummy = '<b>Part '+ part + ' - Module ' + module + ' - Page '+(fw.currentPage+1) + ' of ' + fw.pageCount + ' - '+partname;<o:p></o:p></p><p class=MsoNormal>showcurrentpage.setText(dummy);<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal>else<o:p></o:p></p><p class=MsoNormal>{<o:p></o:p></p><p class=MsoNormal>                  _level0.engine.rootIcon.navigate('menu');<o:p></o:p></p><p class=MsoNormal>}<o:p></o:p></p><p class=MsoNormal>                <o:p></o:p></p><p class=MsoNormal>}<o:p></o:p></p><div style='mso-element:para-border-div;border:none;border-bottom:solid windowtext 1.0pt;padding:0in 0in 1.0pt 0in'><p class=MsoNormal style='border:none;padding:0in'><o:p> </o:p></p></div><p class=MsoNormal>Thanks for any suggestions!<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>RonM2<o:p></o:p></p></div></body></html>