Resize groups and controls within
Posted: Thu Mar 28, 2013 4:23 am
				
				Hello!
Is there an efficient way to resize a group and automatically scale the controls inside it?
or, do I really have to do the resizing on each controls individually?
I do:
But the things inside NavBar do not resize... 
 So, I have to:
Thanks all!
Regards,
Genie
			Is there an efficient way to resize a group and automatically scale the controls inside it?
or, do I really have to do the resizing on each controls individually?
I do:
Code: Select all
   set the width of group "NavBar" to tStackWidth
   set the height of group "NavBar" to 158*tHeightPerc
   set the topleft of group "NavBar" to 0,0
Code: Select all
   set the width of graphic "background" of group "NavBar" to tStackWidth
   set the height of graphic "background" of group "NavBar" to 158*tHeightPerc
Regards,
Genie