| DEVPPL http://www.devppl.com/forum/ |
|
| Multiple pic URL links http://www.devppl.com/forum/viewtopic.php?f=45&t=13141 |
Page 1 of 1 |
| Author: | johnyct9760 [ Wed Mar 25, 2009 2:18 pm ] |
| Post subject: | Multiple pic URL links |
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: 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? |
|
| Page 1 of 1 | All times are UTC + 1 hour |
| Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group http://www.phpbb.com/ |
|