Nevermind, I figured it out. I used FormCalc to get the url, and I
assigned the content to a hidden field. I then used Javascript to pull
the value from the hidden field. Here is the FormCalc script I used in
case others have the same question://Get the content from a sitevar
test=Get("http://www.adobe.com")//Assign the value to the hidden
fieldxfa.resolveNode("form1.#subform.Text1").rawValue=testor the even
shorter version://Get and Assign value in one
stepxfa.resolveNode("form1.#subform.Text1"...