I am trying to generate an swf in Quark for use in Flash 8. I want to load the swf into a blank movie clip and then use action script to change the text in the mytext field. I know how this is done if I use swf's generated from flash but I don't seem to be able to target the object in the quark version. Here is how I made my quark version, am I missing something or addressing the object incorrectly. if I trace(); the object in flash it reports undefined.My action script is below too.
So what i do in the FLA is
loadMovie("fromquark.swf", bmc);
//THIS DOES NOT WORK even though
_root.bmc.mytext.text = "It works";
bmc.mytext.text = "It works";
trace(_root.bmc.mytext); //returns undefined