How can I load SWF Text created flash movie into Macromedia Flash?
Current version of SWF Text only generates flash movie in .SWF format, and its generated flash movie can not be imported into Macromedia Flash. Instead you should use ActionScript “loadmovie” to load it in your own .FLA project. It can be done by following instructions below: 1) First generate the flash movie by using SWF Text and save it into the same directory as where you will save your “loader” flash movie which loads the SWF Text generated flash movie. 2) Open FLA project file of “loader” flash movie by using Macromedia Flash. 3) Insert following ActionScript into the frame createEmptyMovieClip(“text”, 0); text.loadMovie(“text.swf”); // Replace “text.swf” with the filename of your SWF Text generated flash movie here text._x = 100; // Adjust the position if needed text._y = 100; 4) To see a preview of what you have created, select “Control/Test Movie” from main menu. 5) When uploading, both the “loader” flash movie and SWF Text generated flash movie should be uploaded to the web se