Answered
I have a form that I would like to use a specific value from a JSON response (URL). I can make all the data show up in my textfield, but I'd like to only show one value of a specific name/value pair. Thanks in advance for the help!
1. I created two fields (Lat and Long).
2. I have a simple REST HTTP that is something like "http://sampleserver...=json"
3. I use the Concat (FormCalc) to create a new text string with the User Supplied Lats and Longs.
4. I use Get(Formcalc) to return the JSON string into a TextField
5. Finally, I used Javascript to extract the data of interest:
var myJSON = TextField.rawValue
var val = eval("(" + myJSON + ")");
val.results[0].attributes.value
(The last line depends on the structure of the JSON response)
I love when answers are simple and easy to find. That's why I answered my own question.