Re: Text style is hit or miss for me

2017-07-07 Thread Devin Asay via use-livecode
Roger, The advantage of the array notation for textStyle is that you can explicitly set each style for a given run of text. The disadvantage of the array notation for textStyle is that you have to explicitly un-set each style for a given run of text. ;) set the textStyle[“bold”] of the

Re: Text style is hit or miss for me

2017-07-07 Thread Roger Eller via use-livecode
That worked perfectly for all but plain. In my plain button, I had to write it as: set the textStyle of the selectedChunk to "plain". Thank you, Mark! ~Roger On Fri, Jul 7, 2017 at 10:40 AM, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Roger, > > On

Re: Text style is hit or miss for me

2017-07-07 Thread Mark Waddingham via use-livecode
Hi Roger, On 2017-07-07 16:36, Roger Eller via use-livecode wrote: How do you guys do formatting buttons? Try set the textStyle["bold"] of the selectedChunk to true set the textStyle["italic"] of the selectedChunk to true Warmest Regards, Mark. -- Mark Waddingham ~ m...@livecode.com

Text style is hit or miss for me

2017-07-07 Thread Roger Eller via use-livecode
I am attempting to add formatting buttons above a field. If the text is typed into the field, my formatting buttons work as expected. When a user pastes text from another application, my formatting works sometimes, but not always. Below is what I use in my Bold button, and Italic button. I