Skip to content
⌘ NSIS Forum Archive

None blocking message

5 posts

aviadlich#

None blocking message

Hi there
i want to show a message to the user while something else is happening.
when the loop stops i want to close the message.

How can i do that ?
aviadlich#
Thanks for the quick reply

Can you please elaborate?
This is the psaodo code of what i want to do

Function Example
loop:
;DO SOME LOGIC
; THE USE OF BANNER
Sleep 2000
;CHECK THAT LOGIC PASSED
pop $0
StrCmp $0 "stopped" end
goto loop
end:
; CLOSE BANNER
FunctionEnd
Thanks