air cover Member Licensed User Longtime User Jan 5, 2014 #1 OK, I can press a Submit button on a web page with my phone app by using: B4X: Javascript="document.forms.searchForm.q.value='"&EditText1.Text&"';document.forms.searchForm.submit()" WebViewExtras1.executeJavascript(WebView1, Javascript) ...but how do I click the SEND button on Android's default MMS app from my own phone app?! Any help is appreciated.
OK, I can press a Submit button on a web page with my phone app by using: B4X: Javascript="document.forms.searchForm.q.value='"&EditText1.Text&"';document.forms.searchForm.submit()" WebViewExtras1.executeJavascript(WebView1, Javascript) ...but how do I click the SEND button on Android's default MMS app from my own phone app?! Any help is appreciated.
NJDude Expert Licensed User Longtime User Jan 5, 2014 #2 You cannot send keystrokes to other apps. Upvote 0
air cover Member Licensed User Longtime User Jan 5, 2014 #3 NJDude said: You cannot send keystrokes to other apps. Click to expand... Thanks. Can I call code routines in other apps? Upvote 0
NJDude said: You cannot send keystrokes to other apps. Click to expand... Thanks. Can I call code routines in other apps?
NJDude Expert Licensed User Longtime User Jan 5, 2014 #4 To do that you need to use Intents. Upvote 0