B4A Question [SOLVED] Embedding clickable sub-string in label text - rabbitBUSH    Jan 3, 2020 a label can be done, but, whether that can be "embedded" into a string of text, or not, is debateable/ fantasy.
PROPOSITION
I have code that fills a label with text based on a user's input... B4A Question Clickable text label - Erel (first post)    Feb 6, 2013 See these search results: Basic4android Search: Clickable text label... B4A Question Clickable text in Label - Blue.Sky (first post)    Dec 14, 2015 I think your answer is @warwound 's lib
https://www.b4x.com/android/forum/threads/labelextras-advanced-click-handling.25834/#con... B4A Library [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View - Erel    Dec 31, 2024   (72 reactions)   tags: Label BBCode, text style, RTF component, B4X, ritchtext, rich text for embedded views. BBLabel - lightweight label. - NEW: BBScrollingLabel: https://www.b4x.com/android/forum/threads/b4x-bbscrollinglabel-rich-text-scrolling-label.114310/ https://www.b4x.com... issue where setting BBLabel.Text to an empty string didn't remove the text. - v1.71 - New Font tag... platform library with several features: - Text drawing engine. - Text layout engine. - BBCode... related to text. You can for example use it as an alternative to CSBuilder where you have more... B4A Library [B4X] BBScrollingLabel - rich text scrolling label - Erel    Oct 17, 2023   (30 reactions) BBScrollingLabel1 As BBScrollingLabel Private TextEngine As BCTextEngine End Sub Sub Activity_Create... to Form.RootPane in B4J or Page.RootPanel in B4i BBScrollingLabel1.TextEngine = TextEngine BBScrollingLabel1.Text = $"BBScrollingLabel: Red Green Blue. More information: https://www....Text = BBScrollingLabel1.Text End Sub Updates v1.05 - mBase is public. v1.04 - Fixes an issue where... smoother in real usage) BBScrollingLabel is similar to XUI Views ScrollingLabel, however it is based... B4A Question [B4X] Clickable text - LucaMs    Dec 27, 2023 Is it possible to write clickable text that triggers an event in a label-b4xview?
I mean in a normal Label, declared as B4XView, not some custom view (BBLabel or BBCodeView).
... B4A Tutorial CharSequence / CSBuilder Tutorial - Erel    Jul 25, 2019   (69 reactions)   tags: CSBuilder, text ).PopAll Label1.Text = cs cs.EnableClickEvents(Label1) End Sub Sub CreateClickableWord(Text... make parts of the text clickable. Starting from B4A v6.80 many methods accept CharSequence instead... instead of String. This will allow developers to format the text. There are two ways to create.... 'example of explicitly popping an attribute: Label1.Text = cs.Initialize.Color(Colors.Red).Append... color and the second removes the bold style cs.Append("World!").PopAll Label1.Text = cs... B4A Question Clickable MsgBox - Emme Developer    Jul 18, 2017 Hi everybody! Is possibile to put a clickable text in MsgBox in b4a using CharSequence? I know there is a MakeClickable method in csbuilder, but it expects a label. Thanks!... B4A Question Button inside Edittext - toby (first post)    Jul 31, 2023 Use csbuilder. The following code is to make a label text clickable. Adapt to your need for hint text
Dim cs As CSBuilder
cs.Initialize.Size(30).Append("Some ").Append(CreateClickableWord("words"))
cs.Append(" are ").Append(CreateClickableWord("clickable")).Append(".").PopAll
Label1.Text = cs
cs.EnableClickEvents(Label1)... B4A Question Charsequence Click interception - epiCode (first post)    Oct 21, 2024 Found a solution!
Sharing for others:
set Sleep(0) in beginning of label_click event
It will trigger the charsequence clickable text and then return to process label_click later ( which you can skip if you set a flag in cs_clicked )... Page: 1   2   3   4   5   6   7   |