Well, I guess it's like I tell my daughter..."you're resourceful, you'll
figure it out". I learned that javascript doesn't recognize the standard
0-255 color codes and that you have to divide the numbers...So my new
script worked perfectly. I'm so proud of myself! . Now on to more
challenges!color.new_blue = ["RGB", 0, 100/255, 200/255];color.new_green
= ["RGB", 0, 176/255, 80/255]if (event.value=="Exceeds")
event.target.fillColor = color.new_blue;else if (event.value=="Meets")
event.target.fill...