B4A Question Very strange Error while using PhoneIntents.OpenBrowser(...) (drawer) - Mike1970    Jan 29, 2021 found to handle Intent { act=android.intent.action.VIEW dat= http://www.google.it/ flg=0x20000 }
If... B4A Question PhoneIntents Error (intent://...) - KIM jihoon (first post)    Jul 19, 2021 As PhoneIntents
StartActivity(p.OpenBrowser(Url))'- <-- Error
End If
End Sub
Reference...) As Boolean
Log(Url) '-"intent://pay?srCode=3325365#Intent;scheme=shinhan-sr-ansimclick;package=com... B4A Question problem with phoneIntents.playaudio - 王安邦 (first post)    Jul 31, 2014   (1 reaction) The problem is already solved. PhoneIntents.PlayAudio can't play audio file in File.DirAssets, the audio file must be copied to RootExternal or DefaultExternal or Internal.... B4A Question phoneintents error - Erel (first post)    May 23, 2013 As PackageManager
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "http://")
Return pm.QueryIntentActivities(i).Get(0)
End Sub
... B4A Question WebView don't show "SPID" login form - sirjo66    Apr 28, 2022 Hello :) I'm try to show a web page with WebView but it don't works :( Here is the simplified code for to see the problem (remember to import Phone library) Sub Activity_Create(FirstTime As Boolean) Dim pi As PhoneIntents StartActivity(pi.OpenBrowser("https://www.passaportonline.poliziadistato.it/LogInAction.do?codop=loginCittadino")) Activity.Finish End Sub Please run this code, you will see that a page appeare. Now click on "Entra con SPID" blue... B4J Library [B4X] Xml2Map - Simple way to parse XML documents - Erel    Jul 16, 2023   (51 reactions)   tags: xml, Xml2Map, Erel As Object) Dim pi As PhoneIntents StartActivity(pi.OpenBrowser(Value)) End Sub You can use...:\/\/www.b4x.com\/forum" }, "item": { "title": "Phone library...-libraries-official-updates\/6859-phone-library-updated-v1-10-a.html", "pubDate": "Sun, 12 Dec 2010 09:27:38 GMT", "description": "An Intent object was added. This allows creating custom intents for interacting with external applications and services... B4A Question SMS hyperlink opens application Messages but no new SMS appears. - hatzisn    Nov 15, 2022 Good evening everyone, It's been a long time since I 've done this so I either don't remember correctly or because it is the first time I am doing it in Android 12 something has changed. I tried to send an sms using a hyperlink with PhoneIntents openbrowser command from the default SMS... iRet = xui.DialogResponse_Positive Then Dim p As PhoneIntents StartActivity(p.OpenBrowser($"sms:${txtPhoneMobile.Text}?body=Your credentials are..."$)) End If... B4A Tutorial Open the browser with a specific web page - Erel    Nov 25, 2010   (9 reactions) Opening the browser is very simple. First you need to add a reference to the Phone library. Then: Dim p As PhoneIntents StartActivity(p.OpenBrowser("http://www.b4x.com")) p.OpenBrowser returns an Intent object. Intents are like messages that are sent to the system which then acts based on the information stored in the intent. StartActivity keyword can be used to open other internal activities or to send intents to the system.... B4A Question Crashlytics reports crash Intnet not initialised - tsteward    Feb 3, 2025
#IF b4a
Dim pIntent As PhoneIntents
StartActivity(pIntent.OpenBrowser(url))
Screen shots of the error page attached... so far
then
Fatal Exception: java.lang.RuntimeException
Object should first be initialized (Intent).
You can't initialize and intent....can you?
My code where the intent happens
Case B4XPages... B4A Question How to load a url, with username/password - KingKenny    Oct 5, 2012 Hello, I'd like to load a webpage, that MAY require a username/password (like amazon.com, mail.yahoo.com or any other) from within my application (my app will supply username/pass) either using: WebView.loadurl("www...") or StartActivity(PhoneIntent.OpenBrowser("www...")) or any other way that is possible, please help Cheers... Page: 1   2   3   4   5   6   7   |