I’m working on an interactive automation script and want to display a clickable hyperlink in the interface. I noticed the Label
widget has a DebugTag
property, which seems related to rendering raw HTML. Can I use this property (or another approach) to display a clickable hyperlink? If so, how?
Dieter Pappens [SLC] [DevOps Advocate] Selected answer as best 2 days ago
Hi Dieter,
You could try using UIBlockType.Executable or UIBlockType.DownloadButton.
See the following similar questions:
- https://community.dataminer.services/question/how-to-open-a-hyperlink-from-an-ias-via-low-code-app/
- https://community.dataminer.services/question/hyperlink-in-interactive-automation-script/
DebugTag serves a different purpose and is not applicable in this case.
Dieter Pappens [SLC] [DevOps Advocate] Edited comment 2 days ago
Thank you for your help, Tom!
Using the questions you provided, I successfully located the download button in the IAS toolkit. Here's the code snippet I used to set it up:
downloadButton = new DownloadButton()
{
Text = "Title",
RemoteFilePath = "https://skyline.be",
StartDownloadImmediately = false,
DownloadedFileName = string.Empty,
};
This implementation worked perfectly for my needs.