focus/blur
On buton field I use focus/blur to show/hide text field1, on my field2 I set up code if field1 is visible ,field2 show some text, but "on focus" doesn't count field1 as visible. Is there way to fix that?
On buton field I use focus/blur to show/hide text field1, on my field2 I set up code if field1 is visible ,field2 show some text, but "on focus" doesn't count field1 as visible. Is there way to fix that?
I do use mouse enter/exit you can see it in button field action tab.
But you're not using a script... Use this code:
// Mouse Enter
this.getField("Text2").display = display.visible;
this.getField("Text3").value = "Text";
// Mouse Exit
this.getField("Text2").display = display.hidden;
this.getField("Text3").value = "";
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.