B4i Question B4X FirebaseNotifications / Push Messages error (Missing Push Notification Entitlement) - ermales (first post)    Nov 24, 2023 Voy a intentarlo B4i Question is there any way to open whatsapp with especific number? - omarruben    Feb 14, 2021   (1 reaction) Is it possible to open Whatsapp with a especific number, I don't want to send or share anything. I just want to click on a button on my app and open Whatsapp ready to send a message or click on call I am achieving this in B4A with Dim i As Intent i.Initialize("android.intent.action.SENDTO", "s B4i Question Send message to some WhatsApp number - Lucas Eduardo    Jun 23, 2020 Hello, i did it in Android, but i could not find how to do it in iOS. Here is the code in B4A: Dim Intent1 As Intent Intent1.Initialize(Intent1.ACTION_VIEW, $"https://api.whatsapp.com/send?phone=55${number}&text=${""}"$) Intent1.SetComponent("android/com.android.internal.app.ResolverActivity") Star B4i Question Return to app after .OpenURL - JackKirk    May 10, 2017   (1 reaction) In B4A I can launch a webpage from an app via: Private wrk_intent As Intent wrk_intent.Initialize(wrk_intent.ACTION_VIEW, "http://... StartActivity(wrk_intent) And when the user closes the browser - there's the app all ready to continue. In B4i I can launch a webpage from an app via: Main.App B4i Question What happens with push, if app is in the background? - schimanski (first post)    Feb 12, 2017 Get("absender") SenderSpeicher = Intent.Get("sender") FilenameSpeicher = Intent.Get("filename") DatenSpeicher = Intent.Get("daten") ZeitstempelSpeicher = Intent.Get("zeitstempel") GroessenSpeicher = Intent.Get("groesse") If SenderSpeicher="Kontakte" Then B4i Question BLE Chat Question - MrKim (first post)    Aug 02, 2020 Connected (Intent) Intent { act=android.bluetooth.device.action.BOND_STATE_CHANGED flg=0x10 (has extras) } Bundle (Intent) Intent { act=android.bluetooth.device.action.BOND_STATE_CHANGED flg=0x10 (has extras) } Bundle Disconnected Disconnected Disconnected ** Activity (main) Pause, UserClosed = fals B4i Library [class] Voice Recognition using api.ai service - John Woodsmall (first post)    Sep 04, 2015 is there a way to state the intent when calling the api.ai web page?
it seems my "intent" is not working remotely with the program above.
i wonder if is because the "intent" is not being called out.
do you know of a way to include the intent name in the call?
my intent works correctly on their sit B4i Question Select photo from library using B4xPages - mcorbeel (first post)    Jan 04, 2021 I didn't realize that the Intent-based sample was also the solution for selecting an image from library, hence the confusion. I tried your suggestion and it works perfectly! B4i Question Launch Google Navigation and StreetView ? - marcick    Jan 04, 2024 I'm using this code on Android to launch, outside the app, Google Navigation and Google StreetView. Is it possible to do the same on IOS ? Dim mapIntent As Intent Dim lla As Double=45.0 Dim llo As Double=8.0 Dim geoURI As String = "google.navigation:q="& lla &"," & llo mapInten Wish PDF Viewer with zoom and scroll - johan vetsuypens    Jan 06, 2015 In B4A you could use the below intent to view a PDF file. Would be nice to have the same functionality in B4i Dim i As Intent 'Requires a reference to the Phone library i.Initialize(i.ACTION_VIEW, "file://" & File.Combine(File.DirRootExternal , "data.pdf")) i.SetType("application/pdf") i.WrapAsInt Page: 1   2   3   4   Powered by ColBERT |