Hi,
I'm using a dropdown box with assigned values to build an evaluation form for our company.
I've been using the custom keystroke script to switch fields within the documents based on which item you select in the dropdown box.
Unfortunately it appears that theres a limit of characters in the custom keystrok script window.
Does anyone know if that limit is increased in adobe pro 10? i'm using pro 9.
this is an example of the script ive developed. It repeats about 30 times...
(function () {
if (!event.willCommit) {
var aAddr = [];
aAddr[0] = "Choose eval type";
aAddr[1] = "1.Hires, interviews, trains, supervises, evaluates, disciplines and motivates agency personnel";
aAddr[2] = "1.Visits clients in their homes and/or community settings";
aAddr[3] = "1.Hires, interviews, trains, supervises, evaluates, disciplines and motivates agency personnel";
aAddr[4] = "Case Management Section Manager 1";
aAddr[5] = "Chief Financial Officer";
aAddr[6] = "1.Visits consumers in their homes, schools, and/or day programs";
aAddr[7] = "1.Visits consumers in their homes, schools, and/or day programs if necessary";
aAddr[8] = "Community Services Supervisor 1";
aAddr[9] = "Consumer Advocate 1";
aAddr[10] = "1.Maintains current workload with accurate and complete documentation";
aAddr[11] = "Director of Administrative Services 1";
aAddr[12] = "Director Of Client Services 1";
aAddr[13] = "Early Intervention Specialist 1";
aAddr[14] = "Executive Secretary 1";
aAddr[15] = "1.Maintains a current workload with accurate and complete documentation.";
aAddr[16] = "Fiscal Monitor 1";
aAddr[17] = "Fiscal Supervisor 1";
aAddr[18] = "HR Coordinator duties 1";
aAddr[19] = "Information Technology Manager";
aAddr[20] = "Information Technology Technician Duties 1";
aAddr[21] = "Nurse 1";
aAddr[22] = "Office Aide 1";
aAddr[23] = "Paralegal";
aAddr[24] = "Payroll Coordinator 1";
aAddr[25] = "Personal Assistant 1";
aAddr[26] = "Psychologist 1";
aAddr[27] = "Physician 1";
aAddr[28] = "Revenue Coordinator 1";
aAddr[29] = "Sir Coordinator 1";
aAddr[30] = "Transfer Coordinator 1";
aAddr[31] = "Training and Information Project Manager 1";
aAddr[32] = "1.Visits consumers in their homes, schools, and/or day programs. Conducts meetings, interviews and evaluations";
aAddr[33] = "Unassigned2-1";
aAddr[34] = "Unassigned3-1";
aAddr[35] = "Unassigned4-1";
aAddr[36] = "Unassigned5-1";
var ex_val = event.changeEx;
var addr = aAddr[ex_val];
getField("Duties1").value = addr;
}
})();
(function () {
if (!event.willCommit) {
var aAddr2 = [];
aAddr2[0] = "Choose eval type";
aAddr2[1] = "2.Conducts meetings in a productive and open manner";
aAddr2[2] = "2.Conducts meetings, interviews and social assessments";
aAddr2[3] = "2.Conducts meetings in a productive and open manner";
aAddr2[4] = "Case Management Section Manager 2";
aAddr2[5] = "Chief Financial Officer 2";
aAddr2[6] = "2.Conducts meetings, interviews and evaluations";
aAddr2[7] = "2.Effectively conducts meetings, interviews, evaluations, and investigations";
aAddr2[8] = "Community Services Supervisor 2";
aAddr2[9] = "Consumer Advocate 2";
aAddr2[10] = "2.Organizes and maintains accurate office files; completes filing accurately and in a timely manner";
aAddr2[11] = "Director of Administrative Services 2";
aAddr2[12] = "Director Of Client Services 2";
aAddr2[13] = "Early Intervention Specialist 2";
aAddr2[14] = "Executive Secretary 2";
aAddr2[15] = "2.Performs work using basic accounting principles and integration with a computer system.";
aAddr2[16] = "Fiscal Monitor 2";
aAddr2[17] = "Fiscal Supervisor 2";
aAddr2[18] = "HR Coordinator duties 2";
aAddr2[19] = "Information Technology Manager 2";
aAddr2[20] = "Information Technology Technician Duties 2";
aAddr2[21] = "Nurse 2";
aAddr2[22] = "Office Aide 2";
aAddr2[23] = "Paralegal 2";
aAddr2[24] = "Payroll Coordinator 2";
aAddr2[25] = "Personal Assistant 2";
aAddr2[26] = "Psychologist 2";
aAddr2[27] = "Physician 2";
aAddr2[28] = "Revenue Coordinator 2";
aAddr2[29] = "Sir Coordinator 2";
aAddr2[30] = "Transfer Coordinator 2";
aAddr2[31] = "Training and Information Project Manager 2";
aAddr2[32] = "2.Attends meetings in and out of the office with punctuality";
aAddr2[33] = "Unassigned2-2";
aAddr2[34] = "Unassigned3-2";
aAddr2[35] = "Unassigned4-2";
aAddr2[36] = "Unassigned5-2";
var ex_val = event.changeEx;
var addr = aAddr2[ex_val];
getField("Duties2").value = addr;
}