π’ PlaceMaker | 25% off for February including new Google Earth data imports!
Learn more
My_progress_bar
-
I made the following progress bar. Will it slow down my plugin too much?
#visual counter at bottom of page count_100 = count_100 +1 if count_100 == 100 count_bar = count_bar + "|" if count_bar == "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" count_bar = "" end count_100 = 0 Sketchup.set_status_text "Processing; #{count_bar}", SB_PROMPT end
Can I change the color of the "|"? If so, how do I do red?
-
@honoluludesktop said:
Will it slow down my plugin too much?
String comparisons are slow:
if count_bar == "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||"
instead tryif count_bar.length == 100
@honoluludesktop said:
Can I change the color of the "|"? If so, how do I do red?
Nope - no control over SU's UI.
-
Tom, thanks.
Advertisement