Hi,
I am thinking of bold-ing some particular words in a sentence, just like this -
This is a sample sentence.
You see, I bold-ed some words in a sentence up there - now is it possible to do it through blocks? I tried doing <b>text</b>
& <strong>text</strong>
, but it didn’t seem to work…
Do you have any other methods/ideas I can use? Thanks!
1 Like
I created a workaround but seems too much for too little.
Make the text bold
Try it. Maybe you can build on the idea.
3 Likes
Interesting! Do you know of a way to make certain parts of a label bold/italic? I want to highlight a certain word in my text.
1 Like
You can use the same idea I used but use the join text block to mix the normal with the bold.
If you want to change the typed text then you can make use of tags or place holders
just like html codes. You will need to create a parsing function.
2 Likes
That’s a really interesting solution!
1 Like
Hi, @muneer!
Love your idea, but when I tested it, the bold text compared & placed side-by-side to normal text looks kind of different on iOS - it looks like there are two words with different fonts -
Rather than looking like 2 different fonts, It should be like this - ‘This is a sample sentence.’
Anyways, I have unfortunately dropped my idea of doing the ‘bold-out specific words in a sentence’ thing for now - so I wouldn’t need it this time
Thanks for your help!
2 Likes
Even I had the same idea… @muneer responded here.
2 Likes
@kartik14
@codeswept
@catsarisky
I just added another label
in the screen with mixed (normal and bold) using the same function designed earlier.
2 Likes
@jared I am not sure if I got that - please elaborate
It’s possible to bold individual words using https://yaytext.com/bold-italic and then copy and paste them into a non-bold sentence. But it doesn’t let you format text as bold dynamically using blocks.
1 Like
This is basically what I did @tatiang
I took all the alphabet from a unicode table and use them to make a Thunkable list. This way I can map the characters one to one to convert to bold.
1 Like
Yes, I liked your solution. It just depends on whether or not someone wants to programmatically do this or just copy and paste text into a label.
2 Likes