In Internet Explorer 7 a problem occurs when zooming. This can happen when using CTRL - Mousewheel. It resizes the Flex application area itself, even though the application is scaled to 100% x 100% of the browser window.
One solution for this is to edit the index.html file, by adding some javascript.
Within <head>, add:
<script type="text/javascript">
function catchCtrlMouseWheel() {
if (window.event.type == "mousewheel") {
if (window.event && window.event.wheelDelta) {
return window.event.ctrlKey ? false : true;
}
}
return true;
}
</script>
and in <body>, add:
<body onmousewheel="return catchCtrlMouseWheel()">
David