flash actionscript 1.0, load external swf file to parent swf file -


I am creating a website using Flash I have an external SVF file that I want to import to my website. Thought that this would be an easy task, but for some reason when I load the film, it is a flicker. My website (parent SWF) was built using 1.0. The external form was created using SDF 3.0. Any ideas?

My attitude:

  1. Create an empty movie clip called MCFRM. To go to the MC clip page I want to draw an external movie in 3. Within my action layer, I call the following function loadMovie ("main.swf", mcForm);   

If I write:

  Loadmophhen ("Main Sol.", 0);   

Then my main .swf opens correctly, but closes the parent sff file. I want to embed the original .swf file into the original file.

As far as I know that action script 1 or 2 will load an action script 3 movie It is not possible to do the movie. The reason for this is that AS3 * action script is processed by Virtual Machine 2 '(AVM2), while AS1 and AS2 are processed by AVM1. As such, when you have an AVM1 film and try to load something targeted for AVM2, whatever is unsupported (e.g., almost everything) will be lost. As AVM 2 is capable of executing 2 AVM1 codes, however, reverse (i.e. loading AS3 / 2 video into AS3) is possible.

Its only exception is when the film is actually scriptwriter, i.e. a simple (a "stupid" animation.

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -