radioButtonGrps can only have a single column adjustable, so you'll have to use individual radiobuttons.
When you want to have multiple ui elements in-line, be evenly spaced, and scale with the window there are a few things you need to do: - Attach the outside edges of the outer widgets to the form (or other controls). - Do not attach the widgets to each other (you had the inner RB attachControl'd to the inner edges of the outer ones) - Control the inside edges (of the outer widgets, and both edges of any interior widgets) using attachPosition. Also you aren't going to get the exact behavior you want because of the fact that radioButtons are always left-aligned, and thus the RB on the right side won't stick to the edge of the form. Adjusted code: http://pastebin.com/HeHE4Mxj On Monday, December 17, 2012 8:53:58 PM UTC-8, Bradon Webb wrote: > trying a slightly different way. > > by specifically calling the buttons individually. > > I can get 2 buttons to work well, but not 3. > > attached is the latest code -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected].
