Search tutorials
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 < ComboSites.length;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.85 Votes: 26 |
| » Author |
| Applications Developer Marconi Australia |
| » Download |
| Download the files used in this tutorial. |
| Download (369 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!