Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Loading a ComboBox from a file
Author: Sas Jacobs
| Website: http://www.sasjacobs.com |
Actionscript for frame 3 of the actions layer
var ComboSites = sitestext.Sites.split(",");
var ComboURLs = sitestext.URLs.split(",");
CBOLoadSites.addItem("-- select site --");
for (i=0; i
CBOLoadSites.addItem(ComboSites[i],ComboURLs[i]);
}
CBOLoadSites.setChangeHandler("loadSite");
function loadSite(component) {
var SiteURL = component.getSelectedItem().data;
getURL(SiteURL, "_blank");
}
stop();
| » Level Intermediate |
|
|
Added: : 2002-08-13
Rating: 7.64 Votes: 25
Hits: 2138
|
| » Author |
|
Applications Developer
Marconi Australia
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (369 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|