Can I make a web link or something that will work like a web link in LiveCycle Designer so when a user clicks on it the browser will open to a certain web site.
StevenD
Create a Button, and on the Click event, in JavaScript, this script will open a new browser window:
app.launchURL("address", true);
e.g.: app.launchURL("http://www.acrobatusers.com/", true);