Maybe someone knows what’s up. I’ve got an input textbox and a dynamic textbox, and I’ve got a key listener so that whenever you type in the input appears in the output. I’ve embedded numbers and cap letters in both. This works locally, but when I put it live, you can’t type anything into it? - If you paste any content into it, it works fine, but, typing it doesn’t. The weird part is it works when previewed in flash but not on a server.
Here’s the link to the live version
914 visualizer
If you check the ‘Custom plate’ at the bottom of the 2nd column of options, it sets focus to the input box, and there the trouble happens.
I’m thinking it’s something with the key listener? I’ll try to put the code here for your scrutiny. Weird that it’s putting in a space in ‘function’ of the onrelease, that’s not how it is, but also I don’t think that part is the problem, but just something with the forum here.
licensePlateSet_mc.checkBoxLicense3_mc.onRelease=function(){
nine14_mc.nine14Body_mc.license_mc.plateText.text=licensePlateSet_mc.licenseTextBox_mc.plateInputText.text;
Selection.setFocus(licensePlateSet_mc.licenseTextBox_mc.plateInputText);
licensePlateSet_mc.checkBoxLicense3_mc.checked_mc._alpha=100;
licensePlateSet_mc.checkBoxLicense4_mc.checked_mc._alpha=0;
KeyListener = new Object();
KeyListener.onKeyUp = function() {
nine14_mc.nine14Body_mc.license_mc.plateText.text=licensePlateSet_mc.licenseTextBox_mc.plateInputText.text;
}
Key.addListener(KeyListener);
}
Any idea?