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

Changing currency symbol from dropdown choice.

New Here ,
Mar 22, 2021 Mar 22, 2021

I am having issues figuring out how to change the currency symbol on a form based on the conversion choice the user makes.

I have created a dropdown list of a few countries. and I would like my currency symbols to change automatically once the user picks a country.

Preferably I would want it to be defaulted to US dallars, and then the user has the option to switch it thru the drop down selection.

TOPICS
Edit and convert PDFs , How to , JavaScript , PDF forms
1.6K
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 ,
Mar 22, 2021 Mar 22, 2021

You may need to employ Custom Format script with some conditional statements and using the util.printf() method.

 

The JavaScript for Acrobat API 

Reference have somescript  examples with that method that you may employ in your PDF:

 

https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/js_api_reference.pdf

 

 

 

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 ,
Mar 22, 2021 Mar 22, 2021

It's possible, but will require using a custom-made script, as was mentioned.

Also, you need to take into account that it won't convert the values, just the symbol. For example, if you change $10 to €10 the value is not the same...

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
New Here ,
Mar 22, 2021 Mar 22, 2021

I have the actual conversion working. Its just the symbol that still says "$"

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 ,
Mar 22, 2021 Mar 22, 2021

How do you know what the current exchange rate is?

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
New Here ,
Mar 22, 2021 Mar 22, 2021
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 ,
Mar 22, 2021 Mar 22, 2021

But a PDF file is static, and exchange rates change every day (if not more frequently)...

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
New Here ,
Mar 22, 2021 Mar 22, 2021

correct. but for the time being i just need it for rough estimation. currently I  need to change the currency symbol.

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 ,
Mar 22, 2021 Mar 22, 2021
LATEST

Follow the advice given above. You will need to write your own custom Format script to achieve it.

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