0
Yellow or Orange Bullet
Hi, I am looking for an orange bullet in text similar to the red and blue I have in code below. Thanks
let xBar := "";let xRepeat := 'Strategy $ Structure Score';if xRepeat <= 24 then xRepeat := 'Strategy $ Structure Score'else xRepeat := 24end;for i from 0 to xRepeat + 3 do if i <= 8 then xBar := xBar + "" else if i > 8 and i <= 16 then xBar := xBar + "0" else if i > 16 and i <= 24 then xBar := xBar + "" end end endend;xBar
2 replies
-
let xBar := "";
let xRepeat := 'Strategy $ Structure Score';
if xRepeat <= 24 then
xRepeat := 'Strategy $ Structure Score'
else
xRepeat := 24
end;
for i from 0 to xRepeat + 3 do
if i <= 8 then
xBar := xBar + ""
else
if i > 8 and i <= 16 then
xBar := xBar + "0"
else
if i > 16 and i <= 24 then xBar := xBar + "" end
end
end
end;
xBar -
Answered myself - just search the color bullet you want in google 🟢🟠etc
Content aside
- 2 yrs agoLast active
- 2Replies
- 28Views
-
1
Following