Hi everyone, How can i display HTML content in WebStageWeb in my flex mobile application
I have used this code to display simple HTML content, but now i want to display some files via same method. var htmlString:String = "<!DOCTYPE HTML>" + "<html><body>" + "<p>King Philip could order five good steaks.</p>" + "</body></html>"; stageWebView = new StageWebView(); stageWebView.stage = this.stage; stageWebView.viewPort = new Rectangle(305, 87, 715, 606); stageWebView.loadString(htmlString); How can i display -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Displaying-HTML-content-in-Flex-Mobile-Application-tp6363.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
