Re: HTMLtext in Label?

2014-05-11 Thread Richmond
On 11/05/14 07:18, Peter W A Wood wrote: Hi Scott This works for me in LiveCode 7 dp3: set the Label of Button Button to numToCodepoint(0x1D122) ;; bass clef Also pasting the correct character into the label field in the property inspector works under OS X (and may work on other

Re: HTMLtext in Label?

2014-05-11 Thread Peter W A Wood
Richmond I mistakenly typed 03A9 as 0349. A trip to the optician is in order. Regards Peter On Sunday, 11 May 2014, Peter W A Wood peterwaw...@gmail.com wrote: On Sunday, 11 May 2014, Richmond richmondmathew...@gmail.com wrote: On 11/05/14 07:18, Peter W A Wood wrote: Hi Scott This

Re: HTMLtext in Label?

2014-05-11 Thread Mark Wieder
Peter- Saturday, May 10, 2014, 9:18:18 PM, you wrote: set the Label of Button Button to numToCodepoint(0x1D122) ;; bass clef I CAN HAZ BASS CLEF! -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected and stored by the National Security Agency (NSA)

Re: HTMLtext in Label?

2014-05-11 Thread Richmond
On 11/05/14 19:19, Mark Wieder wrote: Peter- Saturday, May 10, 2014, 9:18:18 PM, you wrote: set the Label of Button Button to numToCodepoint(0x1D122) ;; bass clef I CAN HAZ BASS CLEF! I think that should come with a rider that that is, presumably, for Livecode 7, and not for

Re: HTMLtext in Label?

2014-05-10 Thread Richmond
On 10/05/14 20:38, Scott Rossi wrote: Is there some way to the the label of a button to HTMLtext? Thanks Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design Well I just tried this: set the htmlText of the label of btn targe to biClick here!/i/b and that didn't work. I

Re: HTMLtext in Label?

2014-05-10 Thread Scott Rossi
On 5/10/14 10:49 AM, Richmond richmondmathew...@gmail.com wrote: I can only assume that 'htmlText' is not a property of a label. It's not. It's a field property. But I'm hoping someone may have found a way to pull this off. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design

Re: HTMLtext in Label?

2014-05-10 Thread Richmond
On 10/05/14 21:17, Scott Rossi wrote: On 5/10/14 10:49 AM, Richmond richmondmathew...@gmail.com wrote: I can only assume that 'htmlText' is not a property of a label. It's not. It's a field property. But I'm hoping someone may have found a way to pull this off. Regards, Scott Rossi

Re: HTMLtext in Label?

2014-05-10 Thread Richmond
On 10/05/14 21:17, Scott Rossi wrote: On 5/10/14 10:49 AM, Richmond richmondmathew...@gmail.com wrote: I can only assume that 'htmlText' is not a property of a label. It's not. It's a field property. But I'm hoping someone may have found a way to pull this off. Regards, Scott Rossi

Re: HTMLtext in Label?

2014-05-10 Thread Scott Rossi
Actually, I see there's a unicodeLabel property, which could work. So if the Unicode number of the character in a font is U+03A9, how does one get this to render properly in a label? I've tried various string combinations and uni-prefixed properties, but I continue to get Asian characters as the

Re: HTMLtext in Label?

2014-05-10 Thread J. Landman Gay
On 5/10/14, 1:42 PM, Richmond wrote: Making new objects out of compounded existing objects is, to my mind at least, less urgent than how to add props to existing ones. I believe this is the goal of the Open Language initiative, which is scheduled to happen after the engine rewrite is done.

Re: HTMLtext in Label?

2014-05-10 Thread J. Landman Gay
On 5/10/14, 2:31 PM, J. Landman Gay wrote: On 5/10/14, 1:42 PM, Richmond wrote: Making new objects out of compounded existing objects is, to my mind at least, less urgent than how to add props to existing ones. I believe this is the goal of the Open Language initiative, which is scheduled to

Re: HTMLtext in Label?

2014-05-10 Thread Scott Rossi
OK, went through some deleted mail and found the answer. I was missing: set the useUnicode to true Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 5/10/14 12:26 PM, Scott Rossi sc...@tactilemedia.com wrote: Actually, I see there's a unicodeLabel property, which could

Re: HTMLtext in Label?

2014-05-10 Thread Richmond
On 10/05/14 22:26, Scott Rossi wrote: Actually, I see there's a unicodeLabel property, which could work. So if the Unicode number of the character in a font is U+03A9, how does one get this to render properly in a label? I've tried various string combinations and uni-prefixed properties, but I

Re: HTMLtext in Label?

2014-05-10 Thread Peter W A Wood
Hi Scott This works for me in LiveCode 7 dp3: set the Label of Button Button to numToCodepoint(0x1D122) ;; bass clef Also pasting the correct character into the label field in the property inspector works under OS X (and may work on other systems too.) I suspect the problem that you