<div>Hello Ron,<br></div><div><br></div><div>I don't know how you are building your menu but if each item is a text object you could assign an image to each text item and then change the image when the menu item has been accessed. </div>
<div><br></div><div>Create an image icon for each image you will require - it may be you just use a tick image and a transparent image. In this example I'll call then imgBlank and imgTick</div><div><br></div><div>For each image capture the url data</div>
<div><br></div><div>blankUrl = imgBlank.XMLElement.attributes.url.substring(16,imgBlank.XMLElement.attributes.url.length -1 ); </div><div>tickUrl = imgTick.XMLElement.attributes.url.substring(16,imgTick.XMLElement.attributes.url.length -1 );  </div>
<div><br></div><div>// Set the image visible properties to 0 to hide them.</div><div>imgBlank._visible = 0;</div><div>imgTick._visible = 0;</div><div><br></div><div>// create a movieclip loader</div><div>loader = new MovieClipLoader();</div>
<div><br></div><div>// for each text icon in your menu you can then assign an image</div><div>txtMenuItemA.createEmptyMovieClip("myImage", 999);</div><div>// then assign the appropriate graphic</div><div>loader.loadClip(FileLocation + blankUrl, txtMenuItemA.myImage); </div>
<div><br></div><div>// at a later time you should be able to change the graphic to a tick</div><div>loader.loadClip(FileLocation + tickUrl, txtMenuItemA.myImage);  </div><div><br></div><div>The above is based on a page I created a while back. </div>
<div><br></div><div>I don't have time to test it out now but if you think it looks like it may solve your problem then give it a try.</div><div>If you have any issues getting it to work post back and I will check everything over to make sure I haven't missed anything out.</div>
<div><br></div><div>Kind regards</div><div><br></div><div>Johnathan</div><br><div class="gmail_quote">On 1 January 2012 04:24, KnowledgeWare <span dir="ltr"><<a href="mailto:knowledgeware@kccsoft.com">knowledgeware@kccsoft.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div lang="EN-CA" link="blue" vlink="purple"><div><p class="MsoNormal">I’d like to turn checkmarks on on a menu when the student has finished a section.</p>
<p class="MsoNormal"> </p><p class="MsoNormal">I want to loop through an array to get ‘1’ or ‘0’ then place the checkmark and display it if the value is ‘1’.</p><p class="MsoNormal"> </p><p class="MsoNormal">How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- (</p>
<p class="MsoNormal"><br>Happy New Year!</p><p class="MsoNormal"> </p><p class="MsoNormal">RonM2</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>
</div><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" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte</a><br>
<br>
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.<br>

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