Hey Nicole. This is exactly what im looking for bar one part.
I'm totally new to flash and actionscript and would really appreciate it if you'd take some time to help me out.
is it possible to add another part to the xml. a link="http://www.site.com" and when the user clicks on the picture or on the text they would be sent to it.
I'm assuming you'd have to create another clip and call the info from the xml doc...i just have no idea how.
I'm totally new to flash and actionscript and would really appreciate it if you'd take some time to help me out.
is it possible to add another part to the xml. a link="http://www.site.com" and when the user clicks on the picture or on the text they would be sent to it.
I'm assuming you'd have to create another clip and call the info from the xml doc...i just have no idea how.
thank you for you time and i await your reply.
var link:Array = new Array();
and include this in the if loop:
textBar.onRelease = function() {
getURL(link[current], "_blank");
trace(link[current]);
};
then in the xml, add link="http://www.site.com"