Here is the related actionscript (called upon load and resize):
[AS]
left_object1._x = Stage.width / 2 - left_object1._width;
left_object1._y = Stage.height / 2 - (left_object1._height / 2);
right_object2._width = Stage.width / 2;
right_object2._x = Stage.width / 2;
right_object2._y = Stage.height / 2 - (right_object2._height / 2);
[/AS]
Object 1 is: 109px x 255px
Object 2 is: 1/2 stage width x 253px



Does anyone know how to fix this silly problem? I was thinking something to do with rounding down? But I don't know really. I would really appreciate the help!