How to open another page after 2 minutes?

0
When a user opens a certain page, another page should open automatically after two minutes. What is the best way to implement this?
asked
3 answers
3

Hi Maxim,

 

I would probably use the Microflow Timer widget for this, place this widget on the first "certain" page that opens and execute a microflow that opens another page.

 

With kind regards,

Stephan

answered
2

Another option would be:

Events widget

 

"""

The Events widget allows you to execute an action when a component loads or when the context changed. For example, you can show a welcome message on page load, execute custom JavaScript (using a NF) when your data grid finished loading, or trigger a validation Microflow when an attribute changed. It also supports triggering an action with a delay or executing repeatedly with an interval timer.

"""

answered
1

Hi Maxim,

you can use a nanoflow ,in the nanoflow first you show your first page then use wait activity in the wait activity pass your time(1000 for 1 sec) then show your second page

answered