Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to create field users can paste url into which other users can click on to open url

New Here ,
Nov 08, 2016 Nov 08, 2016

I need to create a field where users can paste a URL into. They save the PDF and email it to someone else. The recipient opens the document, clicks on the URL, and the webpage is opened.

Sounds simple, but the standard text field I create on PDF forms do not appear to be hyperlink enabled.

I am completely new to Adobe and have no knowledge of Javascripts if that is relevant.

TOPICS
Edit and convert PDFs
296
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Nov 08, 2016 Nov 08, 2016
LATEST

Add this code to the field's MouseUp event:

if (event.target.valueAsString!="") app.launchURL(event.target.valueAsString);

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 08, 2016 Nov 08, 2016
LATEST

Add this code to the field's MouseUp event:

if (event.target.valueAsString!="") app.launchURL(event.target.valueAsString);

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines