It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming Flash Forum

Multiple pic URL links

Moderator: Phate

Multiple pic URL links

Postby johnyct9760 on Wed Mar 25, 2009 1:18 pm

I have kind of a follow up question what would the procedure be if I had like a slide show and each slide when you clicked on it there would be multiple links this is the code I have so far:
My slideshow instance names are pic_000_mc to pic_004_mc


Code: Select all
var link_000:URLRequest = new URLRequest("http://www.somelink.com");
var link_001:URLRequest = new URLRequest("http://www.somelink.com");
var link_002:URLRequest = new URLRequest("http://www.somelink.com");
var link_003:URLRequest = new URLRequest("http://www.somelink.com");
var link_004:URLRequest = new URLRequest("http://www.somelink.com");

// here is where I get stuck I'm not sure what to add for the listener since there is like 5 buttons
addEventListener(MouseEvent.CLICK, onClick,false,0,true)
function onClick(event:MouseEvent):void
{
   pic_000_mc.navigateToURL(link_000);
   pic_001_mc.navigateToURL(link_001);
   pic_002_mc.navigateToURL(link_002);
   pic_003_mc.navigateToURL(link_003);
   pic_004_mc.navigateToURL(link_004);
}


I know there is a better and more efficient way to do this then to have all five different functions and listeners. Does any one have any idea?
User avatar
johnyct9760
 
Posts: 22
Joined: Sun Mar 02, 2008 5:21 am
Location: USA, Michigan

Who is online

Users browsing this forum: No registered users and 0 guests