Skip to main content
Participant
May 19, 2015
해결됨

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

  • May 19, 2015
  • 1 답변
  • 457 조회

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");
이 주제는 답변이 닫혔습니다.
최고의 답변: kglad

at the top of your lines of code add:

import flash.filesystem.File;

1 답변

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 Expert답변
Community Expert
May 19, 2015

at the top of your lines of code add:

import flash.filesystem.File;