Ok, in a compontent they have 3 choices ...

Blank, 0%, and 100%

and I have

if (startingText == "Blank") {

message_txt.text = "";
} else {
message_txt.text = startingText;
}

in the beginningpart of the script.

How can I have the component see when the property has been changed and then change something in the component.

Is that even possible?