I want the checkbox to be ticked automatically when I input something in the text field. If I delete the content of the text field, the checkbox is unticked.
I wrote the script as below. But it doesn't work. Could you help me out? Thanks.
if(text1.value==""){
checkbox1.rawValue = false;
}
else {
checkbox1.rawValue = true;
}
mouse up - runs when the mouse button is released over the field (I'll have to check, but I believe this only runs if the mouse was originally pressed while over the field, and not when pressed elsewhere and moved over the field to release)
mouse down - runs when the mouse button is pressed over the field
mouse enter - runs when the mouse is moved over the field
mouse exit - runs when the mouse is moved off of the field
on focus - runs when the field becomes active
on blur - runs when the user exits the field
North America
Europe, Middle East and Africa
Asia Pacific