Shockwave and ASP.NET

  • Thread starter Thread starter mehdi ebrahimi
  • Start date Start date
M

mehdi ebrahimi

How can I give variables value in Shockwave (director)
with a ASP.NET?
 
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);

Trint


.Net programmer
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top