flash levels ?
flash levels ?
- Started
- Last post
- 5 Responses
- CX
What is the best way to pass a variable from a button on the main movie to a dynamic textfield inside a movie clip in a SWF loaded in a seperate level?
- ********0
good question? god I think I saw this posted here, did yo check dB?
- Bluejam0
On mousevent(release)
_level1.movieclipname.textfieldn... = _level0.variablename...i think.
- CX0
Thanks, Ill try that. I'm not finding anything on NT or Google search.
- versa0
pass your vars to the root level .swf, and pick them up when you need them....
- versa0
in other words:
in _level0 swf:
fooButtonMC.onRelease = function() {
_root.fooVar = fooValue;
};then in _level2 .swf:
fooMC.textfieldName= _level0.variableName