Hey man thanks for the reply...very appreciate

and it will be perfect and solve everyone problems if that IE server side script can be work in Projectors (.exe).
Anyway i got some minor problems with listBox in MX.
I have this actually it creates .swf into it but wanted it to create .txt
ActionScript Code:
listArray = new Array ();
for (i=1; i<=0; i++) {
listArray.push ({label:"Slides" + i, data:"Slides" + i + ".txt"});
}
this.attachMovie ("FListBoxSymbol", "newSlides", 18, {_x:18, _y:482});
this.newSlides.setSize (280,100);
this.newSlides.setDataProvider (listArray);
this.newSlides.setChangeHandler ("loadTXT");
function loadTXT (component) {
loadVariablesNum (component.getValue(), 0);
}
Question is i wanted it to load .txt instead of .swf
and label were based on the txt file name.
Edit: OK i figured out half of it just have the problem for the listArray to push it.