Hello,

Just wondering if this is a known Firefox plugin issue or I'm doing
something wrong. When running this with firefox in full screen mode, the
second menuitem does not display the label when the menu pops up;
sometimes even the first one behaves the same. On Firefox but normal
mode, everything is fine. On IE (both normal and full screen modes)
everything is fine.

Any ideas? Thanks in advance. Here's the code:

                 // menu-specific variables
             private var point1:Point = new Point();
             private var myMenu:Menu;

             // Create and display the Menu control.
             private function showSaveMenu():void
             {
                 myMenu = Menu.createMenu(this, saveMenu, false);
                 myMenu.labelField ="@label"
                 myMenu.addEventListener("itemClick", menuHandler);

                 // Calculate position of Menu in Application's
coordinates.
                 point1.x=saveBttn.x;
                 point1.y=saveBttn.y;
                 point1=saveBttn.localToGlobal(point1);

                myMenu.show(point1.x - 115, point1.y + 25);
             }


  <mx:XML id="saveMenu">
         <root>
             <menuitem label="Save" eventName="copy"
enabled="{saveMenuBttn}" data="0"/>
             <menuitem label="Save As..." eventName="paste"
enabled="{saveAsMenuBttn}" data="1"/>
         </root>
     </mx:XML>






Reply via email to