B4A Question WhatsApp Intent - MarcoRome    Oct 7, 2014 Hi all.
If you send message with intent / WhatsApp write this code:
Dim i As Intent
i.Initialize... As Object("com.whatsapp"))
i.PutExtra("android.intent.extra.TEXT","HELLO... B4A Question How to make whatsapp call with intent - syerif    Feb 23, 2021 is it possible to make whatsapp call with intent? please help me...
Best Regards... B4A Question How to set the whatsapp intent in b4a ? - kalmen (first post)    Dec 5, 2015 yes , it works , thanks JonPM!... B4A Question Intent & Whatsapp - luke2012    Mar 9, 2014 How to send intent directly to Whatsapp ?
I'm trying to write the code :
Dim i As Intent...")
i.SetType("image/png")
i.SetComponent("com.whatsapp"... B4A Question Whatsapp Intent - DonManfred (first post)    Oct 19, 2015 if is there a porting of whatsapi library
A port can be written when an official SDK is released. Whatsapp does not provide any official SDK. so there are no ports possible for it.... B4A Question Intent, image sharing to WhatsApp - Erel (first post)    Mar 15, 2023 Code with File.DirDefaultExternal = broken code.
Code with Activity = almost broken code.
Search for FileProvider.... B4A Code Snippet Whatsapp Send Function - Hamied Abou Hulaikah    Sep 22, 2020   (13 reactions) I hope this help someone:
Sub whatsappSend(mobile as string,msg as string)
Dim sendIntent As Intent
sendIntent.Initialize(sendIntent.ACTION_MAIN,"")
sendIntent.PutExtra("jid",mobile & "@s.whatsapp.net")
sendIntent.Action=sendIntent.ACTION_SEND
sendIntent.SetPackage("com.whatsapp")
sendIntent.SetType("text/plain"... B4A Question Whatsapp & Whatsapp W4B problem - Zeev Goldstein    Aug 28, 2024 whatsapp W4B ? bellow is the code i'm using thanks Try Intent1.Initialize(Intent1.ACTION_VIEW, $"https://api.whatsapp.com/send?phone=${PhoneNumber}&text... Intent1.SetPackage("com.whatsapp") Case "WHATSAPP.W4B" Intent1.SetPackage("com.whatsapp.w4b...hi i want to be able to send messages using both whatsapp or whatsapp W4B both apps are installed... B4A Question [SOLVED] Alternative to check if WhatsApp is installed without using PackageManager - QUERY_ALL_PACKAGES on + SDK30 - scsjc    Nov 8, 2021 Until now I used PackageManager to check which applications were installed (for example WhatsApp) Currently google requires QUERY_ALL_PACKAGES in Manifest in order to have a list of Installed Packages. Is it possible to know if WhatsApp is installed, via tried through some kind of Try-Catch error? Sub APKinstalada(packagename As String) As Boolean Try Dim PM As PackageManager... Dim in As Intent in = pm.GetApplicationIntent("com.somewhat.package") If in... B4A Question whatsapp - attach a file to message - Zeev Goldstein    Mar 17, 2023 hi,
I'm using this code to send WhatsApp messages
Intent1.Initialize(Intent1...")
StartActivity(Intent1)
how can i add a file?
and - how do i send using WhatsApp... Page: 1   2   3   4   5   6   7   |