TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: dubb on January 20, 2017, 03:49:02 PM

Title: modemacro status bar stylization
Post by: dubb on January 20, 2017, 03:49:02 PM
Is there a way to add colors or change the way things look within the modemacro status bar? It looks very plain at the moment.

This is all I got so far.
Code: [Select]
(setvar "modemacro" (strcase(strcat "Textstyle:" (getvar "textstyle")"  Dimstyle:"(getvar "dimstyle"))))
Title: Re: modemacro status bar stylization
Post by: roy_043 on January 20, 2017, 04:10:43 PM
You can look at special Unicode characters liven things up.
Code: [Select]
(setvar 'modemacro "\U+25A0 \U+25BA")
Title: Re: modemacro status bar stylization
Post by: dubb on January 20, 2017, 06:24:20 PM
HAHA, Ok will try. There are a zillion of unicode chars! Thanks.