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.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better π
Register LoginAdvertisement