pass it through a text file back and forth and have the flash to do
this:
function loadTheVars() {
var dateVars = new LoadVars();
dateVars.onLoad = function(ok) {
if (ok) {
date_txt.text = "High Bid $"+dateVars.day+" Bidder: "+dateVars.month;
}
};
dateVars.load("http://www.yoursite.com/yourfile.txt?nocache="+random(650
00));
}
loadVarsInt = setInterval(loadTheVars, 2000);