Progress bar question
Is there a way to make the nxs plugin progress bar not satic, but a looping 0 to 100, while searching for something?
16 posts
-Stu; Init progress bar
NXS::Show /NOUNLOAD ...
RestartProgressBar:
StrCpy $R0 0
Loop:
IntOp $R0 $R0 + 2
; Update progress bar
NXS::Update /NOUNLOAD ...
; Do your stuff here
StrCmp $R0 100 RestartProgressBar Loop
End:
; Destroy progress bar
NXS:😁estroy