Re: cAPITAL lETTER pROBLEM
Posted: Fri Jul 20, 2018 7:59 am
This is interesting. When I do
and then open the Property Inspector of btn 1, the value of both properties seem to appear as "lower".
However, doing:
--> "upper"
--> "lower"
So it looks like the property inspector has a bug and cannot differentiate between x and X.
In fact after deleting the "x" from the property inspector, the displayed value of "X" was immediately updated to "upper"!
Best,
Panos
--
Code: Select all
on mouseUp
set the caseSensitive to "true"
set the "X" of btn 1 to "upper"
set the "x" of btn 1 to "lower"
end mouseUpHowever, doing:
Code: Select all
set the caseSensitive to true;put the X of btn 1Code: Select all
set the caseSensitive to true;put the x of btn 1So it looks like the property inspector has a bug and cannot differentiate between x and X.
In fact after deleting the "x" from the property inspector, the displayed value of "X" was immediately updated to "upper"!
Best,
Panos
--