Close popup page after clicking Open Link button

0
I have a microflow which takes some parameters from the database, and uses them to build an external URL. e.g. https://destination.com/destination?param1=xxx&param2=yyy The microflow takes this URL and passes it as a page parameter to a popup page. On the popup page I have a link button that opens the link:   Is it possible to run a microflow, or nanoflow or something that can also close this popup page? I feel like I’m missing a key step in just opening a new page in a new tab with this custom URL and closing the calling page.
asked
1 answers
1

Why not open the link directly from a nanoflow without opening the popup window? Use the open Url activity from a nanoflow to accomplish this. You can also close the page from the nanoflow (do this before opening the Url to prevent the nanoflow from being killed). 

answered