cancel
Showing results for 
Search instead for 
Did you mean: 

Display default value in Form with true link behind (to see by mouseover)

franko_paci
Discoverer
0 Kudos

Hi all,

I am trying to solve the following issue:

Customer wants to have a represantative link in the form (Adobe) (example: https:absdrfgh.ghj.de ). Behind this link there is a dynamic one, referenced to the starting point of the form call. The real one should be seen by mouseover function. By clicking the real one should be called. In the form always the representative one should be displayed. Has anybody an idea ?

Thanks and best regards,

Franko

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Franko,

If you want something to appear when mouseover, you can make use of tool tip.

Open Accessibility Palettes > Tool Tip: <<your URL>>

Or if you want to generate the URL dynamically based using code, use this

txtCondition.assist.toolTip.value = "Conditions of purchase." 

// FormCalc

    txtCondition.assist.toolTip.value = "Conditions of purchase.";

// JavaScript

References: http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?content=000795.html

Hope this helps.

regards,

Xiang Li

franko_paci
Discoverer
0 Kudos

Hi Xiangli,

thanks for your reply !

But what I exactly mean is the following:

In the Adobe there is a textfield. The textfield gets dynamically a link to an external address by the interface. The form can be called by different departments within one company. Each department has its own link to the external address (payment link for credit cards).

Target is to have an alias in the form (for example : 'PAYMENT LINK' ) and if you click you will follow the link coming from the interface.

Do you have an idea ?

Thanks,

Franko

Former Member
0 Kudos

Hi Franko,

Sorry i understand your issue wrongly.

Can you try to put code below in click* event?

Javascript

xfa.host.gotoURL("<< your URL>>");

You can replace <<your URL>> with variable, and pass in various department's URL through interface in your print program.

Thanks.

In case click* event for text field does not work properly, please try to use button instead.

regards,

Xiang Li