I can play flash movies on the regular browser after installing the adobe flash app. However, this doesn't work for the Webview. A response on another discussion group said this could be enabled with the following code in Java:
Sub Globals
Dim wv As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
wv.Initialize("wv")
Dim r As Reflector
r.Target = wv
r.Target = r.RunMethod("getSettings")
r.RunMethod2("setPluginsEnabled", True, "java.lang.boolean")
End Sub
What do you mean with enabling the YouTube player?
Found this thread after encountering the same problem. Will future versions of the webview handle this without Reflector? To agraham: no disrespect intended. :sign0089:
I am running Ver 1.50. Without Reflector the webview shows nothing but an "Get Adobe Flash Player" icon. With reflector (and Flash Player 10.3) this page comes up just fine: Live NASA TV
In Webview auto-complete I can see JavaScriptEnabled (by default), though.