In the Designer Scripts %x and %y refer to the dimensions of the parent view of the layout, not any parent view in the layout !
If you load a layout onto the Activity, 100%x = Activity.Width and 100%y = Activity.Height !
If you load a layout onto Panel2, 100%x = Panel2.Width and 100%y = Panel2.Height !
The attached small program shows it !
For of all three buttons Left = 10%
Button3 is on a seperate layout file loaded onto the red panel.
Did you read my post#2 and look at the attached project ?
You don't say where you load the layout file.
So, I suppose that you load onto the Activity, therefor 100%x is the width of the Activity, 320pixels in your case.
CheckBox1.Left = 20%x = 0.2 * 320 = 64pixels !
CheckBox2.Left = 100%x - 240dip = 320 - 240 = 80 pixels.
That's what I explained in post #2 !