i m new to swf mill ,trying basic xml for generation of swf containing images
i m facing an issue in using SWFMILL for generation of SWF from
XML data ,when i pass XML containing media data through SWFMILL
,it generates SWF containing both text and media info , but it
displays only text.
(how i know there is media data in swf created through swfmill
???????? when i convert that SWF file back to XML(SWFML)
that XML contains info corresponding to that media data)
for generation of SWF from XML i m using standard format for
creating XML defined in the SWFMILL tutorial,
I have converted SWF (already running )to XML its schema and
structure were same as XML(SWFML) i obtained on converting back SWF
(created by me) to XML
, What i feel ,the problem is because of some missing parameter
(defining image location or size), i am looking for that.....
moreover i am able to to extarct back the image from swf file( which i created )
one more thing i did:
i took a SWF file created its xml(swfml),replaced its jpeg string with jpeg
string data from my swfml file
then created swf from modified swfml ,then the image was getting displayed
my xml
<?xml version="1.0" encoding="iso-8859-1" ?>
<movie width="30" height="20" framerate="2">
<background color="#ffffff"/>
<frame>
<library>
<clip id="picture" width="200" height="50" import="1.jpg"/>
</library>
</frame>
</movie>
|