SWF Scout |
Compilng SWF flash movie from XML document using SWF Scout
See also: How to decompile SWF to XML using SWF2XML object in SWF Scout Since version 1.40 SWF Scout provides ability to decompile SWF to XML and then compile SWF from XML using SWF2XML and XML2SWF object interfaces (requires optional XML License). Here is an example how to compile SWF from XML: ' TO USE SWF2XML and XML2SWF objects YOU HAVE TO HAVE ADDITIONAL "XML License" Set
XML2SWF = CreateObject("SWFScout.XML2SWF")
XML2SWF.InitLibrary "demo","demo"
XML2SWF.LoadXMLFromFile "Shapes.xml",
true
XML2SWF.Compile
XML2SWF.SaveToFile "Shapes_FromXML.swf"
|
|
|
||