I have a web app that allows the user to view a youtube video on laptop/desktop. But it fails on iPhone or iPad. I tried:
YouTubeMovie1.URL=“https://youtu.be/xxxxxxx” - failed
YouTubeMovie1.URL=“YouTube” - failed
Should I try something like this?
YouTubeMovie1.URL=“”
What makes iPad/iPhone so different?
Have you tried to launch the same movies on Safari mobile ?
Try to use an HTMLViewer instead, it will work more or less the same, you will just have to convert the URL from this:
Me.URL = "https://www.youtube.com/watch?v=mWEH0kjXZiA"
To this:
Me.URL = "https://www.youtube.com/embed/mWEH0kjXZiA"
No, not sure why that would help?
Keep an open mind…
On iPhone, all browsers, including HTMLViewer, are based on the Safari Mobile engine.
1 Like