New Forum | Previous | Next | (P-PDF) Beginners
Topic: What's wrong with this code.
Conf: (P-PDF) Beginners, Msg: 128900
From: peter11
Date: 3/7/2005 04:03 AM
I have 2 pdfs A & B. Each has 1 txt field named "res".
Using global method I've tried to display A values in B.
Doc level js in A
var f = getField("res").value
f = global.result
2 doc level js in B:
#1
function ResultChanged(newResult)
{
var flres = getField("res").value
flres = newResult
}
global.subscribe("result", ResultChanged)
#2
var f = getField("res").value
f = global.result
TIA