Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
π« Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
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 endCan 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