TextColor glitch
Posted: Sun Mar 02, 2014 1:47 pm
Why does the textcolor of a field return empty when no textcolor has been set?
I set the textcolor of the first line of text in field 1 to "255,0,0"
I have left the textcolor of line 2 unchanged from the default.
I have this script in a button
This is the result

I set the textcolor of the first line of text in field 1 to "255,0,0"
I have left the textcolor of line 2 unchanged from the default.
I have this script in a button
Code: Select all
on mouseUp
repeat with a = 1 to 2
put "/" & the textcolor of line a of field 1 & "/" into line a of field 2
end repeat
end mouseUp
