I'm very new to Flex 4.6 and am trying this link http://designwithoutdesign.blogspot.com/2010/07/working-with-epub-files-in-flash-and.html
But i can display textflow format into plain text,
Html conversion
var entry:ZipEntry = event.currentTarget.selectedItem as Zip Entry;
xhtml2 =new XML(_zipFile.getInput(entry)); TextFlow conversion
var body:XML = xhtml2..*::body[0]
XhtmlToTextFlow.flattenElements(body, flatPage); // Translate
textFlow = XhtmlToTextFlow.convert(flatPage);
RichText View
<s:RichText id="source" width="350" paddingLeft="5" paddingRight="5" paddingTop="5"/>
source.textFlow=textFlow;
Using this swc
1) walflower-library.swc , 2)nochump-zip-library.swc.
I want to display the following link epub format in web application and mobile application project.
http://wir35.com/teaser/walflowerv02.html?bookUrl=stevenson.epub
I tried this format also in mobile app using stage webview,
UrlStringurl= "assets/kipling-captains-courageous.epub";
UrlString= "http://wir35.com/teaser/walflowerv02.html?bookUrl="+UrlStringurl;
webView.loadURL(UrlString);
webView.addEventListener(Event.COMPLETE, comPleteHandler);
But looking like same 100% loading is completed but cannot display the text content.
Please can anybody help me?