Hey dojo,
I have a Visio diagram on an element that includes a button to launch an LCA.
When linking the Visio to the LCA, I pass the element name in the URL, as it will be needed later.
Within the LCA, when a button triggers an automation script, the script must use the element name from the URL as an input parameter.
Like this:
The URL is something like this:
The yellow part is working, it's selecting a element on a dropdown, but the green that is used for the button, is not able to do the link.
When the final script is executed, I'm logging the input parameter and it's empty.
Any clue what I'm doing wrong?
Thank you
Hi Ana,
The syntax you are currently using to pass the string value is the syntax used to 'feed' a value to a certain component. In the action however you are using the URL Query Param. The documentation for how the text value should be passed can be found here.
Kind regards,
Robin


problem solved 🙂 Thank you!
An example with the correct syntax when using URL data:
&data={"feed":{"strings": ["YOUR STRING VALUE"]}}
Also a small note here, in 10.5.4 there is an issue where this will not work correctly for 'On open' events.