P
Pyrite
I've seen this script for java and wondered if anyone knows how to do this
with a macro in word? It's an Auto(form field) script - It auto tabs a form
field once its value has exceeded a certain length. For web use it looks like
this -
function autotab(original,destination){
if
(original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
destination.focus()
I just want to automatically span or jump to the next form field when I
reach the max characters in the current form field so that I can continue to
type uninterupted.
Thanks.
with a macro in word? It's an Auto(form field) script - It auto tabs a form
field once its value has exceeded a certain length. For web use it looks like
this -
function autotab(original,destination){
if
(original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
destination.focus()
I just want to automatically span or jump to the next form field when I
reach the max characters in the current form field so that I can continue to
type uninterupted.
Thanks.