var fDesc=new Array(); fDesc[0] = "During the Air beta the mx:HTML component didn’t do javascript very well, and it didn’t do flash at all, from what I could remember. I created a simple little browser with Adobe Flex Builder 3 and the latest Adobe Air SDK. It runs embedded Flash/swf great, and does well with javascript. I tested the javascript abilities with prototype and some custom functions."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }