Here's how?:
the child swf generated by swfc:
.flash filename="edittext.swf" bbox=410x210
.font Fontname filename="EstaBold.ttf"
.text myedittext font=Fontname text="set from child"
.put myedittext x=3 y=100
.end
the parent swf generated by flash:
this.createEmptyMovieClip("edittext", 2);
var mcLoader = new MovieClipLoader();
mcLoader.onLoadComplete = function() {
_root.edittext.myedittext = "set from parent";
}
mcLoader.onLoadInit = function() {
trace(_root.edittext.myedittext);
}
mcLoader.loadClip("edittext.swf", edittext);
But nothing changes, any clue?
Greet,
eddie