How do I use Adobe Air with HTML DOM?
"<input type="text" class="inputtext" name="myemail" id="email" tabindex="1">"
I tried
- document.getElementById('email').value = "[email protected]";
- document.getElementById('myemail').value = "[email protected]";
It doesn't work
ReferenceError: Error #1069: Property getElementById not found on Main and there is no default value.