Guest User

Untitled

a guest
Jan 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <s:BorderContainer borderWeight="4"
  2. cornerRadius="4"
  3. width="150" height="150">
  4.  
  5. <s:VGroup top="10">
  6. <components:ColorSegment id="redSegment"
  7. color="red"
  8. text="R"/>
  9. <components:ColorSegment id="greenSegment"
  10. color="green"
  11. text="G"/>
  12. <components:ColorSegment id="blueSegment"
  13. color="blue"
  14. text="B"/>
  15. </s:VGroup>
  16. <s:SkinnableContainer id="colorBar"
  17. left="75" top="10" right="10" bottom="39"
  18. backgroundColor="black"
  19. />
  20. <s:Label id="colorHex"
  21. bottom="10" right="75"
  22. fontSize="12"
  23. fontWeight="bold"
  24. text="#{redSegment.value+greenSegment.value+blueSegment.value}"/>
  25.  
  26. <s:Button label="Apply"
  27. left="75"
  28. right="10"
  29. bottom="10"
  30. click="onApply()"/>
  31.  
  32. </s:BorderContainer>
Add Comment
Please, Sign In to add comment