Is it possible to 'script' an swf object from within another flash file.
I would like to be able to place or load another flash file into my main flash file. The child flash file is written by a third party, and I do not want to rewrite / recompile any parts of its source code. So ideally, I would like to be able to call something such as:
child_mc.genericFlashSpirte.x += 15;
child_mc.genericFlashSpirte.y -= 30;
etc...
inside the code of the parent flash file.
Is this possible. I imagine, that once I embed the child flash file, I should be able to start, and stop it from playing, but I want to do more then this.