Do any of you know where I could get a tut or .fla that could gve this kind of design that allows for each date to be a button that can link to say a .txt file with events for that day?
I am still working on AS so the code might well be in the attached .fla! - if so could some kind soul point me in the right direction?
Hi,
The important thing is to name youy text files correctly, I would name my text files like this:
2info21.txt
where the first digit is the month number and the last digits are the date, your button code would then look something like this:
[AS]
on(release){
loadText = new loadVars();
loadText.load(month +“info” + date" + .txt");
loadText.onLoad = function() {
box.text = this.loadText;
}
}[/AS]
In effect you would only need one buttin duplicated the number of days per month, each with that code.