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 ?
None blocking message
5 posts
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
Can you please elaborate?
This is the psaodo code of what i want to do
Thanks
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
Banner::show /NOUNLOAD "Text to show"
...
Banner::destroy
It's in Docs\Banner
Stu
...
Banner::destroy
It's in Docs\Banner
Stu
Thanks