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 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 Open third-party application - Alberto SN    Feb 03, 2016 Hi! I need to open inside my app other app. For example, in B4A I called him with this code: Dim Intent1 As Intent Dim pm As PackageManager Intent1 = pm.GetApplicationIntent ("com.package.example") StartActivity (Intent1) On iPhone exist any alternative? 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 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 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 b4a download manager in b4i - kozbot    Aug 27, 2015 DOWNLOAD_FILENAME)) intent1.SetType("application/pdf") intent1.WrapAsIntentChooser("Choose PDF Viewer") StartActivity(intent1) End If Else ' always check that the Cursor returned from the DownloadManager Query method is not empty B4i Question Register Url Scheme - tucano2000 (first post)    Sep 25, 2015 Android you must use Intent. Search this in the Android forum. B4i Question Dial some number to call - 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: rp.CheckAndRequest(rp.PERMISSION_CALL_PHONE) Wait For Activity_PermissionResult (Permission As String, Result As Boolean) If Result Then Dim number As String = Regex.Replace("",lbl.Text,"") Dim I 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 Page: 1   2   3   Powered by ColBERT |