Hi,
The thing about a UDim is that it really needs some point of reference in order to figure out the scale component. Though I think it's likely most people might expect these comparison operators to work - I'll consider this as a feature request
Currently you have a choice of either converting the UDims to common base values yourself - by way of the UDim::asAbsolute and/or UDim::asRelative functions, passing in some pixel size as the 'base' for the conversion. Since that's too much like work, you can use the precalculated pixel areas from Window instead, for 0.7.x these are:
Window::getUnclippedOuterRect
Window::getUnclippedInnerRect
Window::getOuterRectClipper
Window::getInnerRectClipper
Window::getHitTestRect
or for 0.6.x:
Window::getUnclippedPixelRect
Window::getUnclippedInnerRect
Window::getPixelRect
Window::getInnerRect
I imagine the 'Unclipped' versions will be of most use to you, and you'll have to look them up in the API reference for the details
HTH
CE.