Flash input field...
Flash input field...
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- unfittoprint0
could use an SetFocus event to change the bg color when highlighting:
textBox.onSetFocus = function() {
textBox.background = true;
textBox.backgroundColor = 0xFF00FF;
};and then an onChange listener to rest the changes when there's no highlighted text...