Notifications
Clear all
[Closed] Layout of checkBox on rollOut
Oct 25, 2006 6:07 pm
Can the checkbox be aligned on the right with the text for the checkbox to the left of the checkbox.
checkbox BVHOptionsDlg “BVH with Dialog” align:#Right – just aligns everything to the right with the checkbox on the left of the text. Not a big deal but I would like it there.
Thanks,
Chris
3 Replies
Oct 25, 2006 6:07 pm
You can do it using a label and a checkbox where the label has the text of the checkbox.
Light
Oct 25, 2006 6:07 pm
As light said, a label and checkbox together work well.
rollout rightCheck "right checkbox"
(
label myLabel "check this:" pos:[117,5]
checkbox myCheck pos:[175,5]
)
createDialog rightCheck 200 25
Jon
Oct 25, 2006 6:07 pm
Thanks Light and Jon. Appreciate the help. It worked perfectly.
Chris