"RokuKC" wrote:
On firmware 6.1 or later you can use StrI to format hexadecimal.
color = &h404040FF
? "&h" + UCase(StrI(color, 16))
"squirreltown" wrote:
Another case:
varr.red = &h911820FF
? varr.red = -1860689665
color = -1860689665
? "&h" + UCase(StrI(color, 16)) = &h-6EE7DF01
I seem to be missing something important here.