Timeout message


#1

Hi everyone,
I am new to Axure and would like to display a message that will disappear after 10 seconds.
Any suggestion how to do this?
Thanks. Charles


#2

You have to work with Wait event from the Case Editor window.


#3
OnSomeEvent
If true
    Show messageWidget
    Wait 10000
    Hide messageWidget

Place this on whatever event should trigger the display of the message. Bear in mind that a Wait action will delay all actions after it. So if there are other associated actions you might want to place them before.