11743280
5704474
7710381
8734053
5704484
9421768
Automotive Supply
Military Parts Supply
Military Parts Number
Military Automotive Combat and non Combat Supply
Military Automotive Supply
Then this is what you put inside mylink.txt//put this script on a frame where all your 3 buttons are located…
textFile = new LoadVars()
textFile.onLoad = function(){
buttonlink1 = this.link1;
buttonlink2 = this.link2;
buttonlink3 = this.link3;
}
textFile.load(”mylink.txt”); // mylink.txt is your external text file
//—actionscript for buttons
//—make sure you have all your buttons instance name added. btn1, btn2 and btn3.
btn1.onRelease = function(){
getURL(buttonlink1, “_self”);
};
btn2.onRelease = function(){
getURL(buttonlink2, “_self”);
};
btn3.onRelease = function(){
getURL(buttonlink3, “_self”);
};
&link1=http://www.yahoo.com
&link2=http://www.google.com
&link3=http://www.w3schools.com