I have a PDF form that I created in LiveCycle Designer(LCD), which has the filename "testform.pdf". It has a HTTP Submit button which I named "submit". Within LCD, I can set the properties of the button, including the target URL. When I populate the PDF Form, I need to be able to pass in the target URL. Here is what I have so far:
<cfpdfform source="#path#testform.pdf"
destination="#path#testform#timeformat(now(),'hhmmss')#.pdf"
action="populate" overwrite="yes">
<cfpdfsubform name="topmostsubform">
<cfpdfformparam name="TextField" value="testing" ></cfpdfformparam>
<cfpdfformparam name="submit.URL" value="http://my.target.url.com"></cfpdfformparam>
</cfpdfsubform>
</cfpdfform>
Any suggestions as to how I could accomplish this?