Skip to main content
Known Participant
January 26, 2014
Answered

What's the difference on StageWebview in Mobile and Desktop AIR apps?

  • January 26, 2014
  • 1 reply
  • 1411 views

Hi,

What's the difference between StageWebView in an AIR mobile and

AIR desktop app? (AIR 3.9 SDK)

I have the problem that in a StageWebView related feature is working and on mobile but not on desktop AIR apps.

The feature lets users login into a website and post to the forum - on mobile it seems that the cookie/session is not found.

What could be the reason for that?

Any ideas welcome!

This topic has been closed for replies.
Correct answer User Unknow

Parameters

    useNative:Boolean (default = false) — When useNative is false, a version of WebKit embedded within AIR is used as the source of the StageWebView created. When useNative is true, then AIR will use the the system's default web engine. Mobile platforms only support using the system web engine, so useNative is ignored on mobile platforms.

P.S. You mean no WebGL but WebKit ;) If you need IE - put useNative = true and false if you need Air WebKit

1 reply

User Unknow
Legend
January 28, 2014

Using Adobe Air sdk 4 you can use Native StageWebView that will use IE ActiveX.

blogtomAuthor
Known Participant
January 29, 2014

How to choose if the StageWebView uses IE or the WebGL browser?

User Unknow
User UnknowCorrect answer
Legend
January 29, 2014

Parameters

    useNative:Boolean (default = false) — When useNative is false, a version of WebKit embedded within AIR is used as the source of the StageWebView created. When useNative is true, then AIR will use the the system's default web engine. Mobile platforms only support using the system web engine, so useNative is ignored on mobile platforms.

P.S. You mean no WebGL but WebKit ;) If you need IE - put useNative = true and false if you need Air WebKit