Charles,

Not sure I totally understand what you need, a custom property is just a 
container so you can't set it's text style to anything, but to store text 
styles alongside the text data you could store the data as an array, maybe 
something like;

To store the data…

   set the cPropA["label"] of btn "CheckBox1" to the label of btn "CheckBox1"
   set the cPropA["textStyle"] of btn "CheckBox1" to the textStyle of btn 
"CheckBox1"

To modify the text style…

   set the cPropA["textStyle"] of btn "CheckBox1" to "bold,italic"

Then just reverse to apply the data…

   set the label of btn "CheckBox1" to the cPropA["label"] of btn "CheckBox1"
   set the textStyle of btn "CheckBox1" to the cPropA["textStyle"] of btn 
"CheckBox1"

Just a suggestion, maybe somebody else has a better idea.

Paul

On 2013-03-30, at 10:20 AM, Charles Szasz wrote:

> I am using custom properties with check boxes. How do you set the text style 
> of a custom property field?  I want to set the text style of a custom 
> property to bold.
> 
> Charles Szasz
> csz...@mac.com
> 
> 
> 
> 
> 
> _______________________________________________
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to