0

I have a flash project that I am trying to convert to Adobe AIR to be compatible with steam. The flash project uses ExternalInterface calls into Javascript that embeds the swf that are essential to the app (PHP logins, Facebook interactions, etc).

What are my options for getting around a lack of ExternalInterface when using Adobe AIR?

Josh Brittain
  • 2,162
  • 7
  • 31
  • 54

1 Answers1

0

You need to re-implement all this features (login, social network integration) without ExternalInterface. I think, you need to use Steam API for much part of this.

Crabar
  • 1,829
  • 1
  • 14
  • 26
  • Hey Crabar, thanks for the response. I am currently looking into HtmlLoader to load the html that also loads my embedded SWF. Not sure if this will be a dead end or not (would be great if adobe air could just be a wrapper that loads my webpage and swf) – Josh Brittain Nov 10 '14 at 11:00
  • In my opinion, it's not very good way. First of all, in this solution may be some restriction problems (in HtmlLoader for example). And second, solution with native steam api support will much more flexible and closer to steam players. But it just my opinion, maybe your way will simpler. – Crabar Nov 10 '14 at 11:43