Accessing an HTTPS site using a Flex / AIR HTML component?

Is it possible to access remote pages over https when using an HTML component inside a Flex AIR application?

I want to build a credit card payment integration in an AIR application, and the easy way is to send the user to a payment service in the browser built into the application.

+1


source to share


1 answer


Yes, according to the doc, you can: http://livedocs.adobe.com/flex/3/html/help.html?content=ProgrammingHTMLAndJavaScript_05.html

Try any website https:



<mx:HTML id="content">
    <mx:location><![CDATA[https://www.fldemo.nsf.gov/]></mx:location>
</mx:HTML>

      

0


source







All Articles