参照例:
tes1= pm.intField("tes1", v = 100)の数字を参照する場合
tes1.getValue()
もしくは
pm.intField("tes1", edit=True).getValue()でも可能

textFieldの場合はgetText()
radioButtonはgetSelect() #選択されている数字が返ってくる
checkBoxはgetValue() #True or Falseで返ってくる

編集例:
tes1= pm.intField("tes1", v = 100)の数字を編集する場合
testes = tes1.getValue()
pm.intField("tes1", edit=True, v = testes )