Skip to main content
Inspiring
April 4, 2014
Answered

Webview Video Playing and IOS

  • April 4, 2014
  • 1 reply
  • 1012 views

I am trying to play a video through a webview.  I feed it a specific url (https link provided by the client that validates the device) that then loads an mp4.  If I run in ADT, I get a "Error #2044: Unhandled ErrorEvent:. text=Plug-in handled load" but loads the video.  With AOT (release build), it simply doesn't continue and I get nothing showing up.  Is there a framework that I need to add to allow for this plug in to exist and work in AOT?

thanks

This topic has been closed for replies.
Correct answer BDanis

Turns out the issue was related to my connection type code (had to send 3g wifi or broadband to the service)

The application was using network info instead of the required ANE. Therefore in ADL mode, the app was bypassing the error and loading a plugin

But in AOT, was crashing

Thanks for the input though

1 reply

Participant
April 8, 2014

Have you looked at the server mime settings? This helped me with similar...

http://fdiv.net/2013/05/17/getting-html5-video-work-ios-mobile-safari

BDanisAuthorCorrect answer
Inspiring
April 8, 2014

Turns out the issue was related to my connection type code (had to send 3g wifi or broadband to the service)

The application was using network info instead of the required ANE. Therefore in ADL mode, the app was bypassing the error and loading a plugin

But in AOT, was crashing

Thanks for the input though