Archive: None blocking message


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 ?


Check out the included banner plugin.


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

Banner::show /NOUNLOAD "Text to show"
...
Banner::destroy

It's in Docs\Banner

Stu


Thanks