Skip to main content
Participant
May 19, 2015
Answered

How to display StageWebView page in .ipa app from Flash Professional

  • May 19, 2015
  • 1 reply
  • 457 views

I need to display a .mp4 file in a small app that I am building for the iPad with Flash Professional CC. The best way looks to be StageWebView, but I cant get this to work. I found some code that is supposed to do the trick but I keep getting errors: 1180: Call to a possibly undefined method File.

Can anyone please give me some help with this?


var webView = new StageWebView(); webView.stage = this.stage; webView.viewPort = new Rectangle( 0, 0, stage.stageWidth, stage.stageHeight); var path:String = new File(new File("app:/path/file.html").nativePath).url; webView.loadURL("app:/path/file.html");
This topic has been closed for replies.
Correct answer kglad

at the top of your lines of code add:

import flash.filesystem.File;

1 reply

kglad
Community Expert
Community Expert
May 19, 2015

did you import the File class?

Participant
May 19, 2015

What I have done is in the code I posted. I am sorry, but I am new to this and need help in figuring out what is wrong.

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
May 19, 2015

at the top of your lines of code add:

import flash.filesystem.File;