• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

WEB PAGE'S LOADING INTO AN AIR FOR iOS PROJECT

New Here ,
Jun 15, 2012 Jun 15, 2012

Copy link to clipboard

Copied

Hi!

I have a complicated problem. I try to find a solution everywhere but I didn’t find anything.

I’m creating a project Air for iOS with Flash CS5 and Flash CS6. I need to find somebody that know how to upload a web page inside an app.

I try to explain better. There is yet a task for upload an html link, but it just work in a new browser window. In this way, every time I want to see a web page, the app will be close. Is it possible to import all the web page inside the Air for ios project, and not in an external window?

I'd like the result is like this:

forumADOBE.jpg

Thanks a lot.


TOPICS
ActionScript

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Jun 18, 2012 Jun 18, 2012

When you change to another frame

webView.stage = null;

if you back tho the first frame

webView.stage = this.stage;;

Votes

Translate

Translate
Enthusiast ,
Jun 15, 2012 Jun 15, 2012

Copy link to clipboard

Copied

You can create a web browse with air

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Jun 15, 2012 Jun 15, 2012

Copy link to clipboard

Copied

Hi

you can develop this by using HTMLLoader class or stageWebView class

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 18, 2012 Jun 18, 2012

Copy link to clipboard

Copied

hi....

i used StageWebView class and i wrote this code:

var webView:StageWebView = new StageWebView();

webView.viewPort = new Rectangle( 0, 0, this.stage.stageWidth, this .stage.stageHeight);

webView.stage = this.stage;

webView.loadURL( "http://www.adobe.com" );

The web page opens correctly without using the browser but it opens into all project's frames.

Is it possible to open the web page only in the frame one (for example) ????

Thanks a lot!!!!!!!!!!!!!!!!!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 18, 2012 Jun 18, 2012

Copy link to clipboard

Copied

Set stage to null to hide this StageWebView object.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 18, 2012 Jun 18, 2012

Copy link to clipboard

Copied

where? in the others frames????? excuse me but i'm a beginner with flash..

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 18, 2012 Jun 18, 2012

Copy link to clipboard

Copied

LATEST

When you change to another frame

webView.stage = null;

if you back tho the first frame

webView.stage = this.stage;;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines