B4A Question WhatsAPP - not sending text but asking to push a button - IamTrying (first post)    Feb 28, 2018 WhatsAPP. But they want human operator and refuse the way i needed. So its a fail approach... i have figured out how i will hack this i have few alternatives except WhatsAPP.
- Asterisk (Voice call from... B4i Question Share image in WhatsApp, Telegram, Instagram directly - asales    Nov 11, 2025 .99368/#content And this code, that worked to text but I don't know how make to work with image: https://www.b4x.com/android/forum/threads/share-simple-text-with-whatsapp.96185/#post-606919 Dim txt As String = "Hello%2C%20World!" Dim url As String = "whatsapp://send?text=" &...In B4A I can click in a button and use an intent to share an image only in the WhatsApp, by set the package (com.whatsapp). How can I do this in B4i? I try this DocumentInteraction https://www... 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...("jid",mobile & "@s.whatsapp.net")
sendIntent.Action=sendIntent.ACTION_SEND
sendIntent.SetPackage("com.whatsapp")
sendIntent.SetType("text/plain")
sendIntent.PutExtra("android.intent.extra.TEXT",msg)
StartActivity(sendIntent)
End... B4A Question Sending a string text in whatsapp to a contact directly - Erel (first post)    Mar 15, 2018   (1 reaction) It is not possible. You cannot send key events or touch events to other apps.... B4A Question Using intent to send text to whatsapp, viber, skype, facebook, SMS default app? - AlbertMHaim (first post)    Apr 9, 2014 Try this:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "tel:1231231234")
i.SetComponent(&... 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(i.ACTION_SEND,"") i.SetType("text/plain") i.SetComponent("com.whatsapp...("sms_body", smsText); i.setPackage("com.whatsapp"); startActivity(i); this is website: http://stackoverflow.com/questions/19081654/send-text-to-specific-contact-whatsapp i Try in...(i.ACTION_SEND, numero) i.SetType("text/plain") i.SetComponent("com.whatsapp"... B4A Code Snippet WhatsApp: Send Message to specific phone number - Star-Dust    Nov 25, 2017   (13 reactions)   tags: whatsapp .whatsapp.com/send?phone=${EditTextNumber.Text}&text=${EditTextMessange.Text}"$)
StartActivity...://api.whatsapp.com/send?phone=${EditTextNumber.Text}&text=${EditTextMessange.Text}"...WhatsApp a few years ago had published APIs that allowed to send messages to a specific number. For.... I have seen on sale APIs from third-party distributors that allow you to send messages with WhatsApp... B4A Library [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View - Erel    Mar 22, 2026   (74 reactions)   tags: Label BBCode, text style, RTF component, B4X, ritchtext, rich text setting BBLabel.Text to an empty string didn't remove the text. - v1.71 - New Font tag: https... platform library with several features: - Text drawing engine. - Text layout engine. - BBCode.../android/forum/threads/b4x-bbscrollinglabel-rich-text-scrolling-label.114310/ https://www.b4x.com... related to text. You can for example use it as an alternative to CSBuilder where you have more control over the text drawing. I will explain the main use case of BBCodeView. Our layout is usually made... B4A Question Whatsapp send message charachter problem - tufanv    Mar 17, 2022 Hello, Using the below code to send a message to a whatspp contact: Dim i As Intent i.Initialize(i.ACTION_VIEW, $"https://api.whatsapp.com/send?text=Test%%) i.SetComponent("android/com.android.internal.app.ResolverActivity") Try StartActivity(i) Catch Log("whatsapp yok") End Try The percentage sign shows as question mark which means not recognized by whatsapp. Everything works perfect other than this. What may... B4i Question Share image with text to whatsapp ? - tufanv    Jan 23, 2018 Hello I followed the tutorial here : https://www.b4x.com/android/forum/threads/share-data-from-your-app-with-activityviewcontroller.73159/ I can send a image to a freind with this : avc.Initialize("avc", Array(Null, bmp)) if I type any text instead of null , whatsapp only sends the text without image. Is there any way to send the image with text via whatsapp . ( the problem is only for whatsapp , text & image can be send with email without a problem ) Thanks... Page: 1   2   3   4   5   6   7   |