Hi jrvh924,
Say that your source field path is form.EmployeeName.txtEmpName
Say that your dest. field path is form.Contacts.txtContactName
Then adding the following code should work:
form.Contacts.txtContactName.rawValue = form.EmployeeName.txtEmpName.rawValue;
Please Note : I'm not sure what is wrong with your following script.. Infact, i don't recognize what style of scripting it is. But u can try changing the = = to = in your following script.
getField("EmployeeName").value = getField("Contacts").valueAsString;
Thanks,
VJ