This content has been marked as final.
Show 3 replies
-
1. Re: list component question
Ned Murphy Apr 30, 2010 10:48 AM (in response to I Love Doing Websites)You just need to link to the pdf like you would link to any web page. The code you use depends on the version of actionscript you are using...
AS2: getURL("http://www.yourdomain.com/your.pdf", "_blank");
AS3: navigateToURL(new URLRequest("http://www.yourdomain.com/your.pdf"), "_blank");
-
2. Re: list component question
I Love Doing Websites May 2, 2010 11:02 AM (in response to Ned Murphy)I am using as3, so you mean that I have to put that text into the data field for the listcomponent? down the label?
Thanks
-
3. Re: list component question
Ned Murphy May 2, 2010 12:20 PM (in response to I Love Doing Websites)If you know how to open an swf using the list, then just replace the code that the clicking executes to open the swf with the navigateToURL line of code. You'll still have whatever listener you use for the click, just the task that selection performs changes.



