public void setZoomRect(int left, int top, int right, int bottom) {
if (!created)
return;
Variant[] args = new Variant[4];
args[0] = new Variant(left);
args[1] = new Variant(top);
args[2] = new Variant(right);
args[3] = new Variant(bottom);
flashObject.invokeNoReply(DISPID_SETZOOMRECT, args);
}