[flashmx2004]Hover caption not working in infinite scroll and link problem

Good day,

Im here again, wishing for the expert to help me out with my another set of problem…im done with the thumbnail scrolling, all the requirements have been done, the hover caption, the link and mostly the image is loading and scrolling perfectly fine… thanks to all the help specially to scotty (-: so done with that…now im modifying it and making the scroll infinite…copied the code from one that i have search in here…the “infinite dynamic mx” thread…i forgot the link…

the thumbnail scroll with link and with hover caption :bu:

1st problem:
i already made the thumbnail to load in the stage…already made to scroll infinite…face a bit problem because of Registration Marks…but already figured it out… i attached the hover caption function on the actions layer then tried to test it, also made the xml caption to load on the container but the problem is the hover caption box is not following the x and y of the mouse instead its not hovering at all… and the function jumps to the value FALSE so the caption box not showing at all…i test the captionFN to true upon onRollout and it works but its not hovering…

2nd problem:
link to a URL with similar objective with the above link…
i put the code like this:

if (tot == loa && tot>4) {
   item.id = p;
   loadper += per;
   if (q>0) {
    item._x = sub_menu["pic"+(q-1)]._x+sub_menu["pic"+(q-1)]._width;
   } else {
    item._x = 0;
   }
   item.onRelease = function() {
    getURL(linkArray[this.id],"_parent"); [COLOR=red]-->> [/COLOR][COLOR=red]link not working[/COLOR]
   };
//this area is not on the sample "infinite dynamic" i just add this hoping that might work
   item.onRollOver = function() {
    this._alpha = 50;
    //Hover Caption
    overtxt.text = capArray[this.id]; [COLOR=red]-->> container which i use to test dynamic text[/COLOR] 
    captionFN(true, capArray[this.id], this);     
   };
   item.onRollOut = function() {
    this._alpha = 100;
    overtxt.text = "";
    captionFN(true); [COLOR=red]-->> value has been change to true[/COLOR]
   };   
///////////////////////////
   nextItem();
   delete this.onEnterFrame;

my xml looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<genius>
    <thumbnail title="Digital Camera" thumb="http://www.genius-me.com:8080/GENIUS/GetDoc?UniqueKeyValue=4311&ShowPath=false&Download=false" link="<A href="http://www.google.com"/">http://www.google.com"/>
    <thumbnail title="Video Camera" thumb="http://www.genius-me.com:8080/GENIUS/GetDoc?UniqueKeyValue=4312&ShowPath=false&Download=false" link="<A href="http://www.yahoo.com"/">http://www.yahoo.com"/>
    <thumbnail title="Home Theater" thumb="http://www.genius-me.com:8080/GENIUS/GetDoc?UniqueKeyValue=4313&ShowPath=false&Download=false" link="<A href="http://www.kirupa.com"/>">http://www.kirupa.com"/>
etc...
<genius>

can anyone help… scotty (-:… please…