tezz2000
05-24-2006, 10:04 PM
Hello all...
i recently purchase a component set from jumpeye and have had aton pf problems getting any kind of support.. I would like to see if anyone can help me out.. I am using the new Accordion Panel Pro V2... and here's what I'm trying to do.. I have succefully loaded exteranl movies via xml.. but I am unable to target them with their function to send them to the second fram upon successfull loading... here's my code:
stop();
//create acordian listener
accordionInstance._visible = false;
lis = new Object();
accordionInstance.addListener(lis);
lis.onLoadXML = function(message) {
trace("xml loaded ");
};
lis.onLoadContents = function(message) {
accordionInstance._visible = true;
loading._visible = false;
trace("content loaded ");
};
// on this load I need it to go to frame 1
lis.onCloseItem = function(gotoframeuno) {
accordionInstance.openItem(itemNumber).gotoAndStop ("2");
};
// on this load I need it to go to frame 2
lis.onOpenItem = function(gotoframedous) {
accordionInstance.openItem(itemNumber).gotoAndStop ("1");
}
Here is the error/ trace that I am getting:
xml loaded
256 levels of recursion were exceeded in one action list.
This is probably an infinite loop.
Further execution of actions has been disabled in this movie.
any help would be great.. I contacted their support but have recieved no help back.
thanks,
Matt
i recently purchase a component set from jumpeye and have had aton pf problems getting any kind of support.. I would like to see if anyone can help me out.. I am using the new Accordion Panel Pro V2... and here's what I'm trying to do.. I have succefully loaded exteranl movies via xml.. but I am unable to target them with their function to send them to the second fram upon successfull loading... here's my code:
stop();
//create acordian listener
accordionInstance._visible = false;
lis = new Object();
accordionInstance.addListener(lis);
lis.onLoadXML = function(message) {
trace("xml loaded ");
};
lis.onLoadContents = function(message) {
accordionInstance._visible = true;
loading._visible = false;
trace("content loaded ");
};
// on this load I need it to go to frame 1
lis.onCloseItem = function(gotoframeuno) {
accordionInstance.openItem(itemNumber).gotoAndStop ("2");
};
// on this load I need it to go to frame 2
lis.onOpenItem = function(gotoframedous) {
accordionInstance.openItem(itemNumber).gotoAndStop ("1");
}
Here is the error/ trace that I am getting:
xml loaded
256 levels of recursion were exceeded in one action list.
This is probably an infinite loop.
Further execution of actions has been disabled in this movie.
any help would be great.. I contacted their support but have recieved no help back.
thanks,
Matt