
August 22nd, 2001, 12:27 AM
|
|
Beelzebub
|
|
Join Date: Aug 2001
Location: The nether regions...ok, San Diego
Posts: 164
Time spent in forums: < 1 sec
Reputation Power: 12
|
|
|
You can access any variable in flash with javascript, without the flash knowing it. You can change the variable, too. Just name your movie in the object and embed tags. Then you can access them...
flashVar_name = document.myMovie.getVariable("var_name");
document.myMovie.setVariable("var_name", "var_value");
|