Not able to see legends on Internet Explorer 8

I have a Flex Application that works great in Internet Explorer 9 and Firefox. However with Internet Explorer it does not show the colors for the legends, just the values. Do you guys could give me any ideas what I need to change in my code so that IE 8 shows the legend colors? You can see on the image attached that the colors show correctly on the map but the legend does not show the colors for each values.! Thank you for any help!
Here is the code
<?xml version="1.0" encoding="utf-8"?>
<mx:Application       
                xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx"
                xmlns:esri="http://www.esri.com/2008/ags"
                paddingBottom="8" paddingLeft="8"
                paddingRight="8" paddingTop="8"
                backgroundColor="0xffffff"
                layout="vertical" >
    <!-- Start Declarations -->
<fx:Declarations>
        <esri:SimpleFillSymbol id="mouseOverSymbol" alpha="0.5" color="0x808080">
            <esri:SimpleLineSymbol width="0" color="#000000"/>
        </esri:SimpleFillSymbol>
        <esri:SimpleFillSymbol id="defaultsym" alpha="0.01" color="#E0E0E0"   >
            <esri:SimpleLineSymbol width="1" color="#000000"/>
        </esri:SimpleFillSymbol>
    <!-- End Declarations -->
</fx:Declarations>
    <fx:Script>
        <![CDATA[
            import com.esri.ags.Graphic;
            import com.esri.ags.SpatialReference;
            import com.esri.ags.events.GraphicEvent;
            import com.esri.ags.geometry.Extent;
            import com.esri.ags.layers.*;
            import com.esri.ags.symbols.SimpleFillSymbol;
            import com.esri.ags.symbols.SimpleLineSymbol;
            import mx.collections.ArrayCollection;
            import mx.controls.RadioButton;
            import mx.controls.TextArea;
            import mx.events.DropdownEvent;
            import mx.events.ItemClickEvent;
            private function closeHandler(evt:DropdownEvent):void
            try
                myLabel.text = ComboBox(evt.target).selectedItem.label;
            catch(error:Error){
                trace("Caught Error: "+error);
            private function loadLayerName():void
                myLegend.layers = null;
                layerPanel.removeAllChildren();
                //loop through each layer and add as a radiobutton
                for(var i:uint = 0; i < (dynamicLayer.layerInfos.length); i++)
                    var radioBtn:RadioButton = new RadioButton;
                    radioBtn.groupName = "radioBtnGroup";
                    radioBtn.value = i;
                    radioBtn.label = dynamicLayer.layerInfos[i].name;
                    if (dynamicLayer.layerInfos[i].name == "Direct Impact (Million $)")
                        radioBtn.label = "Direct Impact";
                    else if (dynamicLayer.layerInfos[i].name == "Total Impact (Million $)")
                    {radioBtn.label = "Total Impact";
                    else if (dynamicLayer.layerInfos[i].name == "Total Impact (Jobs)")
                    {radioBtn.label = "Total Impact";
                    else if (dynamicLayer.layerInfos[i].name == "Direct Impact (Jobs)")
                    {radioBtn.label = "Direct Impact";
                    else
                    {radioBtn.visible= false;
                    layerPanel.addChild(radioBtn);
                /*     myDividerBox.getDividerAt(0).visible = false; */
                //set the visible layer the first radio button
                 radioBtnGroup.selectedValue = 0;
                 dynamicLayer.visibleLayers = new ArrayCollection([0]);
                myLegend.layers = [dynamicLayer];
                myLegend.visible = true;
            private function radioClickHandler(event:ItemClickEvent):void
                myLegend.layers = null;
                // update the visible layers to only show the layer selected
                dynamicLayer.visibleLayers = new ArrayCollection([event.index]);
                myLegend.layers = [dynamicLayer];
                myLegend.visible = true;
            private function changeEvt(event:Event):void {
            if (yearcombo.selectedItem.year == "2007")
                measures.filterFunction=filter1
                measures.refresh()
                myURL.dataProvider=measures
                myLegend.visible = true;
            else if (yearcombo.selectedItem.year == "2009")
                measures.filterFunction=filter2
                measures.refresh();
                myLegend.visible = true;
        public function filter1(item:Object):Boolean
            if (item.year=="2007") return true
            else return false
            public function filter2(item:Object):Boolean
                if (item.year=="2009") return true
                else return false
            private function clickEvt(event:Event):void {
                if (yearcombo.selectedItem.year == "2007")
                    measures.filterFunction=filter3
                    measures.refresh()
                    myURL.dataProvider=measures
                else if (yearcombo.selectedItem.year == "2009")
                    measures.filterFunction=filter4
                    measures.refresh();
            public function filter3(item:Object):Boolean
                if (item.year=="2007") return true
                else return false
            public function filter4(item:Object):Boolean
                if (item.year=="2009") return true
                else return false
            private function clickEv2(event:Event):void {
                if (yearcombo.selectedItem.year == "2007")
                    measures.filterFunction=filter5
                    measures.refresh()
                else if (yearcombo.selectedItem.year == "2009")
                    measures.filterFunction=filter6
                    measures.refresh();
                else if (yearcombo.selectedItem.year == 2007 && myURL.selectedIndex==8)
                    myLegend.layers = null;
                    layerPanel.removeAllChildren();
            public function filter5(item:Object):Boolean
                if (item.year=="2007") return true
                else return false
            public function filter6(item:Object):Boolean
                if (item.year=="2009") return true
                else return false
            /* IF YOU WANT TO INCLUDE OTHER VALUES IN THE MAP TOOLTIP LIKE COUNTY NAME AND THE LABEL OF THE SELECTED ITEM
            if (myURL.selectedIndex==0)
            myTextArea.htmlText = "<b>County: </b>" + gr.attributes.NAME + "\n"
            + "<b>Measure: </b>" + myURL.selectedItem.label + gr.attributes.ForDirIndOut.toString()
                public function fLayer_graphicAddHandler(event:GraphicEvent):void
                    event.graphic.addEventListener(MouseEvent.MOUSE_OVER, onMouseOverHandler);
                    event.graphic.addEventListener(MouseEvent.MOUSE_OUT, onMouseOutHandler);
                public function onMouseOverHandler(event:MouseEvent):void
                    //Place the lines of code that don't change based on the selections once.
                    var graphic:Graphic = Graphic(event.currentTarget);
                    graphic.symbol = mouseOverSymbol;
                    var htmlText:String = graphic.attributes.htmlText;
                    var textArea:TextArea = new TextArea();
                    textArea.width= 110
                    textArea.height = 25
                    //The particular year doesn't seem to have an impact on anything but the definetionExpression
                    //so there is no need to evaluate it each time
                /*     if (yearcombo.selectedItem.year == "2007"){
                        fLayer.definitionExpression = "DATA_YEAR_TXT like '2007'";
                    }else if(yearcombo.selectedItem.year == "2009"){
                        fLayer.definitionExpression = "DATA_YEAR_TXT like '2009'";
                    fLayer.definitionExpression = "DATA_YEAR_TXT like '"+ yearcombo.selectedItem.year+"'";
                    //This part is always the same so only do it once
                    textArea.htmlText = myURL.selectedItem.label; */
                    /* for each (var item:object in fLayer.getItemAt(i)
                    if (myURL.selectedItem.namefield == fLayer.tableDetails.fields){ */
                    /* if (myURL.selectedItem.namefield == fLayer.outFields 
                        textArea.htmlText = graphic.attributes.ForDirIndOut.toString();
                    private function locateBoundary(event:Event) : void
                    layerCOUNTIES.definitionExpression = "STATE = '" + (event.currentTarget as TextArea).data.STATEFP + "'";
                    try{
                        if (radioBtnGroup.selectedValue == 0){
                            if(myURL.selectedIndex == 0){
                                textArea.htmlText = graphic.attributes.ForDirIndOut.toString();
                            }else if(myURL.selectedIndex == 1 ){
                                textArea.htmlText = graphic.attributes.ForDirEmp.toString();
                            }else if(myURL.selectedIndex == 2){
                                textArea.htmlText = graphic.attributes.ForDirLabInc.toString();
                            }else if(myURL.selectedIndex == 3){
                                textArea.htmlText = graphic.attributes.ForIndirBusTax.toString();
                            }else if(myURL.selectedIndex == 4){
                                textArea.htmlText = graphic.attributes.LogDirIndOut.toString();
                            }else if(myURL.selectedIndex == 5){
                                textArea.htmlText = graphic.attributes.LogDirEmp.toString();
                            }else if(myURL.selectedIndex == 6){
                                textArea.htmlText = graphic.attributes.LogDirLabInc.toString();
                            }else if(myURL.selectedIndex == 7){
                                textArea.htmlText = graphic.attributes.LogIndirBusTax.toString();}
                            else if(myURL.selectedIndex == 8){
                                textArea.htmlText = graphic.attributes.PrimaryPaperDirIndOut.toString();}
                            else if(myURL.selectedIndex == 9){
                                textArea.htmlText = graphic.attributes.PrimaryPaperDirEmp.toString();}
                            else if(myURL.selectedIndex == 10){
                                textArea.htmlText = graphic.attributes.PrimaryPaperDirLabInc.toString();}
                            else if(myURL.selectedIndex == 11){
                                textArea.htmlText = graphic.attributes.PrimaryPaperIndirBusTax.toString();}
                            else if(myURL.selectedIndex == 12){
                                textArea.htmlText = graphic.attributes.PrimarySolidIndOut.toString();}
                            else if(myURL.selectedIndex == 13){
                                textArea.htmlText = graphic.attributes.PrimarySolidEmp.toString();}
                            else if(myURL.selectedIndex == 14){
                                textArea.htmlText = graphic.attributes.PrimarySolidLabInc.toString();}
                            else if(myURL.selectedIndex == 15){
                                textArea.htmlText = graphic.attributes.PrimarySolidIndBusTax.toString();}
                            else if(myURL.selectedIndex == 16){
                                textArea.htmlText = graphic.attributes.SecondPaperDirIndOut.toString();}
                            else if(myURL.selectedIndex == 17){
                                textArea.htmlText = graphic.attributes.SecondPaperDirEmp.toString();}
                            else if(myURL.selectedIndex == 18){
                                textArea.htmlText = graphic.attributes.SecondPaperDirLabInc.toString();}
                            else if(myURL.selectedIndex == 19){
                                textArea.htmlText = graphic.attributes.SecondPaperIndirBusTax.toString();}
                            else if(myURL.selectedIndex == 20){
                                textArea.htmlText = graphic.attributes.SecondSolidDirIndOut.toString();}
                            else if(myURL.selectedIndex == 21){
                                textArea.htmlText = graphic.attributes.SecondSolidDirEmp.toString();}
                            else if(myURL.selectedIndex == 22){
                                textArea.htmlText = graphic.attributes.SecondSolidDirLabInc.toString();}
                            else if(myURL.selectedIndex == 23){
                                textArea.htmlText = graphic.attributes.SecondSolidBusTax.toString();}
                            myMap.infoWindow.show(myMap.toMapFromStage(event.stageX, event.stageY));
                        else if (radioBtnGroup.selectedValue == 1){
                                if(myURL.selectedIndex == 0){
                                    textArea.htmlText = graphic.attributes.ForTotImpIndOut.toString();
                                }else if(myURL.selectedIndex == 1 ){
                                    textArea.htmlText = graphic.attributes.ForTotImpEmp.toString();
                                }else if(myURL.selectedIndex == 2){
                                    textArea.htmlText = graphic.attributes.ForTotImpLabInc.toString();
                                }else if(myURL.selectedIndex == 4){
                                    textArea.htmlText = graphic.attributes.LogTotImpIndOut.toString();
                                }else if(myURL.selectedIndex == 5){
                                    textArea.htmlText = graphic.attributes.LogTotImpEmp.toString();
                                }else if(myURL.selectedIndex == 6){
                                    textArea.htmlText = graphic.attributes.LogTotImpLabInc.toString();}
                                else if(myURL.selectedIndex == 8){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperTotImpIndOut.toString();}
                                else if(myURL.selectedIndex == 9){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperTotImpEmp.toString();}
                                else if(myURL.selectedIndex == 10){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperTotImpLabInc.toString();}
                                else if(myURL.selectedIndex == 12){
                                    textArea.htmlText = graphic.attributes.PrimarySolidTotImpIndOut.toString();}
                                else if(myURL.selectedIndex == 13){
                                    textArea.htmlText = graphic.attributes.PrimarySolidTotImpEmp.toString();}
                                else if(myURL.selectedIndex == 14){
                                    textArea.htmlText = graphic.attributes.PrimarySolidTotImpLabInc.toString();}
                                else if(myURL.selectedIndex == 16){
                                    textArea.htmlText = graphic.attributes.SecondPaperTotImpIndOut.toString();}
                                else if(myURL.selectedIndex == 17){
                                    textArea.htmlText = graphic.attributes.SecondPaperTotImpEmp.toString();}
                                else if(myURL.selectedIndex == 18){
                                    textArea.htmlText = graphic.attributes.SecondPaperTotImpLabInc.toString();}
                                else if(myURL.selectedIndex == 20){
                                    textArea.htmlText = graphic.attributes.SecondSolidIndOut.toString();}
                                else if(myURL.selectedIndex == 21){
                                    textArea.htmlText = graphic.attributes.SecondSolidEmp.toString();}
                                else if(myURL.selectedIndex == 22){
                                    textArea.htmlText = graphic.attributes.SecondSolidLabInc.toString();}
                            myMap.infoWindow.show(myMap.toMapFromStage(event.stageX, event.stageY));
                        myMap.infoWindow.content=textArea;
                        myMap.infoWindow.label = graphic.attributes.NAME;
                        myMap.infoWindow.closeButtonVisible = false;
                        myMap.infoWindow.width = 120;
                    catch(error:Error){
                        trace("Caught Error: "+error);
                    //Place the lines of code that don't change based on the selections once.
            public function onMouseOutHandler(event:MouseEvent):void
                    var gr:Graphic = Graphic(event.target);
                    gr.symbol = defaultsym;
                    myMap.infoWindow.hide();
        ]]>
    </fx:Script>
    <fx:Style>
        @namespace esri "http://www.esri.com/2008/ags";
        @namespace s "library://ns.adobe.com/flex/spark";
        @namespace mx "library://ns.adobe.com/flex/mx";
        @namespace esri "http://www.esri.com/2008/ags";
        @namespace components "com.esri.ags.components.*";
        components|InfoWindow
            background-alpha : 0.7;
            border-style : solid;
    </fx:Style>
    <mx:HBox   width="930" height="800"  id="mapHbox"  horizontalAlign="center" >   
    <mx:HBox width="80">
    </mx:HBox>
    <mx:HBox id="myHBox" width="800" height="600" backgroundColor="0xffffff"  >
        <mx:VBox  height="590" width="358"  >
        <!--    <mx:Panel
                width="356" height="100%"
                color="0x000000"
                borderAlpha="0.15"
                >
                -->
                <mx:Canvas height="100%" width="100%" backgroundColor="0xffffff" >
                    <esri:Map id="myMap" openHandCursorVisible="false"
                              height="100%" 
                              logoVisible="false"
                              doubleClickZoomEnabled="false"
                              scrollWheelZoomEnabled="false"
                              zoomSliderVisible="false"
                              scaleBarVisible="false" scale="4000000" >
                        <esri:extent>
                            <esri:Extent xmin="-10736651.061900" ymin="4024099.909700" xmax="-10409195.669800" ymax="3440153.831100"      >
                                <esri:SpatialReference wkid="102100"/>
                            </esri:Extent>
                        </esri:extent>
                        <esri:ArcGISDynamicMapServiceLayer id="dynamicLayer2"
                                                           url="http://tfs-24279/ArcGIS/rest/services/RADIO_BUTTONS/counties_layer/MapServer" />
                        <esri:ArcGISDynamicMapServiceLayer id="dynamicLayer" name=" "
                                                           alpha="1"
                                                           load="loadLayerName()"
                                                   url="http://tfs-24279/ArcGIS/rest/services/{myURL.selectedItem.value}/MapServer"   />
                        <esri:FeatureLayer id="fLayer"
                                           graphicAdd="fLayer_graphicAddHandler(event)"
                                           mode="snapshot"
                                           outFields="*"
                                           symbol="{defaultsym}"
                                           url= "http://tfs-24279/ArcGIS/rest/services/RADIO_BUTTONS/feature_layer_0709_five/FeatureServer/ 0" />
                    </esri:Map>
                </mx:Canvas>
        <!--    </mx:Panel>-->
        </mx:VBox>       
        <mx:VBox  height="590" width="20"  >
        </mx:VBox>       
        <mx:Canvas height="500" width="400" backgroundColor="0xffffff"
                   horizontalScrollPolicy="off"
                   verticalScrollPolicy="off" >
            <mx:VBox  width="420" height="50%" paddingLeft="5" paddingTop="10" paddingRight="10" paddingBottom="10"
                     verticalGap="8">
                <mx:Form  >
                    <mx:FormItem label="Year        :"  >
                        <mx:ComboBox   id="yearcombo" selectedIndex="0" labelField="label" width="100%" change="changeEvt(event)"  >
                            <mx:ArrayCollection id="year"  >
                                <fx:Object label="2007"  year="2007" />
                                <fx:Object label="2009"  year="2009" />
                            </mx:ArrayCollection>
                        </mx:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem label="Measure:">
                        <mx:ComboBox   id="myURL" selectedIndex="48" width="80%" mouseOver="clickEv2(event)" close="closeHandler(event)" >
                        <mx:ArrayCollection id="measures"   >
                            <fx:Object id="forindout07"  label="Forestry Industry Output" value="RADIO_BUTTONS/TFEI_07_forest_industry_output" year="2007" labeltext="Industry Output"  />
                            <fx:Object id="foremp07" label="Forestry Employment " value="RADIO_BUTTONS/TFEI_07_forest_employment" year="2007" />
                            <fx:Object id="forlabinc07" label="Forestry Labor Income " value="RADIO_BUTTONS/TFEI_07_forest_labincome" year="2007" />
                            <fx:Object id="forindbustax07" label="Forestry Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_forest_business_tax" year="2007" />
                            <fx:Object id="forindout09" label="Forestry Industry Output " value="RADIO_BUTTONS/TFEI_09_forest_industry_output2" year="2009"  />
                            <fx:Object id="foremp09" label="Forestry Employment " value="RADIO_BUTTONS/TFEI_09_forest_employment" year="2009" />
                            <fx:Object id="forlabinc09" label="Forestry Labor Income " value="RADIO_BUTTONS/TFEI_09_forest_labincome2" year="2009" />
                            <fx:Object id="forindbustax09" label="Forestry Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_forest_business_tax" year="2009" />
                            <fx:Object id="logindout07" label="Logging Industry Output"  value="RADIO_BUTTONS/TFEI_07_logging_industry_output" year="2007"  />
                            <fx:Object id="logemp07" label="Logging Employment " value="RADIO_BUTTONS/TFEI_07_logging_employment" year="2007" />
                            <fx:Object id="loglabinc07" label="Logging Labor Income " value="RADIO_BUTTONS/TFEI_07_logging_labincome" year="2007" />
                            <fx:Object id="logindbustax07" label="Logging Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_logging_business_tax" year="2007" />
                            <fx:Object id="logindout09" label="Logging Industry Output " value="RADIO_BUTTONS/TFEI_09_logging_industry_output" year="2009"  />
                            <fx:Object id="logemp09" label="Logging Employment " value="RADIO_BUTTONS/TFEI_09_logging_employment" year="2009" />
                            <fx:Object id="loglabinc09" label="Logging Labor Income " value="RADIO_BUTTONS/TFEI_09_logging_labincome" year="2009" />
                            <fx:Object id="logindbustax09" label="Logging Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_logging_business_tax" year="2009" />
                            <fx:Object id="ppindout07" label="Primary Paper Industry Output"  value="RADIO_BUTTONS/TFEI_07_primary_paper_industry_output" year="2007"  />
                            <fx:Object id="ppemp07" label="Primary Paper Employment " value="RADIO_BUTTONS/TFEI_07_primary_paper_employment" year="2007" />
                            <fx:Object id="pplabinc07" label="Primary Paper Labor Income " value="RADIO_BUTTONS/TFEI_07_primary_paper_labincome" year="2007" />
                            <fx:Object id="ppindbustax07" label="Primary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_primary_paper_business_tax" year="2007" />
                            <fx:Object id="ppindout09" label="Primary Paper Industry Output " value="RADIO_BUTTONS/TFEI_09_primary_paper_industry_output" year="2009"  />
                            <fx:Object id="ppemp09" label="Primary Paper Employment " value="RADIO_BUTTONS/TFEI_09_primary_paper_employment2" year="2009" />
                            <fx:Object id="pplabinc09" label="Primary Paper Labor Income " value="RADIO_BUTTONS/TFEI_09_primary_paper_labincome2" year="2009" />
                            <fx:Object id="ppindbustax09" label="Primary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_primary_paper_business_tax" year="2009" />
                            <fx:Object id="psindout07" label="Primary Solid Industry Output"  value="RADIO_BUTTONS/TFEI_07_primary_solid_industry_output" year="2007"  />
                            <fx:Object id="psemp07" label="Primary Solid Employment " value="RADIO_BUTTONS/TFEI_07_primary_solid_employment" year="2007" />
                            <fx:Object id="pslabinc07" label="Primary Solid Labor Income " value="RADIO_BUTTONS/TFEI_07_primary_solid_labincome" year="2007" />
                            <fx:Object id="psindbustax07" label="Primary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_primarysolid_business_tax" year="2007" />
                            <fx:Object id="psindout09" label="Primary Solid Industry Output " value="RADIO_BUTTONS/TFEI_09_primary_paper_industry_output" year="2009"  />
                            <fx:Object id="psemp09" label="Primary Solid Employment " value="RADIO_BUTTONS/TFEI_09_primary_solid_employment" year="2009" />
                            <fx:Object id="pslabinc09" label="Primary Solid Labor Income " value="RADIO_BUTTONS/TFEI_09_primary_solid_labincome" year="2009" />
                            <fx:Object id="psindbustax09" label="Primary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_primarysolid_business_tax" year="2009" />
                            <fx:Object id="spindout07" label="Secondary Paper Industry Output"  value="RADIO_BUTTONS/TFEI_07_secondary_paper_output" year="2007"  />
                            <fx:Object id="spemp07" label="Secondary Paper Employment " value="RADIO_BUTTONS/TFEI_07_secondary_paper_employment" year="2007" />
                            <fx:Object id="splabinc07" label="Secondary Paper Labor Income " value="RADIO_BUTTONS/TFEI_07_secondary_paper_labincome" year="2007" />
                            <fx:Object id="spindbustax07" label="Secondary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_secondary_paper_business_tax" year="2007" />
                            <fx:Object id="spindout09" label="Secondary Paper Industry Output " value="RADIO_BUTTONS/TFEI_09_secondary_paper_output2" year="2009"  />
                            <fx:Object id="spemp09" label="Secondary Paper Employment " value="RADIO_BUTTONS/TFEI_09_secondary_paper_employment" year="2009" />
                            <fx:Object id="splabinc09" label="Secondary Paper Labor Income " value="RADIO_BUTTONS/TFEI_09_secondary_paper_labincome" year="2009" />
                            <fx:Object id="spindbustax09" label="Secondary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_secondary_paper_business_tax" year="2009" />
                            <fx:Object id="ssindout07" label="Secondary Solid Industry Output"  value="RADIO_BUTTONS/TFEI_07_secondary_solid_industry_output" year="2007"  />
                            <fx:Object id="ssemp07" label="Secondary Solid Employment " value="RADIO_BUTTONS/TFEI_07_secondary_solid_employment" year="2007" />
                            <fx:Object id="sslabinc07" label="Secondary Solid Labor Income " value="RADIO_BUTTONS/TFEI_07_secondary_solid_labincome" year="2007" />
                            <fx:Object id="ssindbustax07" label="Secondary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_secondary_solid_business_tax" year="2007" />
                            <fx:Object id="ssindout09" label="Secondary Solid Industry Output " value="RADIO_BUTTONS/TFEI_09_secondary_solid_industry_output" year="2009"  />
                            <fx:Object id="ssemp09" label="Secondary Solid Employment " value="RADIO_BUTTONS/TFEI_09_secondary_solid_employment" year="2009" />
                            <fx:Object id="sslabinc09" label="Secondary Solid Labor Income " value="RADIO_BUTTONS/TFEI_09_secondary_solid_labincome" year="2009" />
                            <fx:Object id="ssindbustax09" label="Secondary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_secondary_solid_business_tax" year="2009" />
                            <fx:Object id="blank" label=" "  />
                        </mx:ArrayCollection>
                    </mx:ComboBox>
                    </mx:FormItem>
                </mx:Form>
                <mx:VBox  id="layerPanel" width="50%" height="8%" verticalGap="3" paddingLeft="17">
                    <mx:RadioButtonGroup id="radioBtnGroup" itemClick="radioClickHandler(event)"  />
                </mx:VBox>
                <mx:VBox   height="2%">
                </mx:VBox>
                <mx:VBox paddingLeft="17" height="10%"  >
                <mx:Canvas  id="legendPanel" width="100%"  >
                    <mx:Label id="myLabel" text=" " fontWeight="bold" />
                    <esri:Legend id="myLegend"
                                 layers="{[dynamicLayer]}"
                                 map="{myMap}" visible="false"
                                 respectCurrentMapScale="false" />
                </mx:Canvas>
                </mx:VBox>
                <mx:VBox>
                <mx:TextArea width="275"  borderAlpha="0" height="200"  >
                    <mx:htmlText   >
                        <![CDATA[<font size='11'><b>Note:</b> Counties in white indicate either no data is available for that measure or the data has been supressed due to confidentiality.</font>
                        ]]>
                    </mx:htmlText>
                </mx:TextArea>
                </mx:VBox>   
            </mx:VBox>
        </mx:Canvas>
    </mx:HBox>
    </mx:HBox>   
</mx:Application>

Here is the HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Texas Forestry Economic Impact</title>
<style type="text/css">
<!--
body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background: #42413C;
    margin: 0;
    padding: 0;
    color: #FFF;
p {
    margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 14px;
    padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    font-size: medium;
    color: #333;
    font-family: Calibri;
    text-align: left;
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    color: #FFF;
    text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
a:visited {
    color: #FFF;
    text-decoration: none;
.container table tr td Menu a {
    color: #FFF;
    text-decoration: none;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: underline;
    color: #FFF;
    font-size: small;
/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
    width: 960px;
    background: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
    background: #6f8d5c;
/* ~~ This is the layout information. ~~
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
.content {
    padding: 10px 0;
/* ~~ The footer ~~ */
.footer {
    padding: 10px 0;
    background: #6f8d5c;
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
.container .content table tr td {
    color: #FFF;
    font-weight: bold;
    text-align: center;
.container table tr td {
    text-align: center;
    color: #FFF;
    font-family: Calibri;
    font-size: small;
.container table {
    font-size: xx-small;
table {
    font-size: 9px;
.container table tr td p a {
    text-align: center;
table tr td p a {
    text-align: center;
.container .footer table tr td .footer {
    color: #FFF;
    font-size: small;
    text-align: center;
.container p {
    font-size: medium;
-->
</style>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
<script type="text/javascript">
function updateSwfSize(myHeight, myWidth)
    var flexibleGorillaSwf = document.getElementById("FlashID");
    flexibleGorillaSwf.height = myHeight;
    flexibleGorillaSwf.width = myWidth;
</script>
</head>
<body id="body" >
<div class="container">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
       <tr>
    <td bgcolor="#6f8d5c"><img src="assets/Banner5.jpg" width="960" height="120" alt="banner" /></td>
  </tr>
      <tr>
    <td height="31" bgcolor="#6f8d5c"><a href="Home.html">Home</a>  -  <a href="Highlights.html">Highlights</a>  -  <a href="EcoImpactTX.html" title="Map" target="_self">Summary Tool</a>  -  <a href="maps.html"  style="font-weight: bold; font-size:medium; target="_self">Maps</a>  -  <a href="charts.html" target="_self">Charts</a>  -  <a href="Report.html" target="_self">Download Reports</a>  -   <a href="FAQs.html" target="_self">FAQs</a>  -  <a href="ContactUs.html" target="_self"> Contact Us</a>  -  <a href="http://txforestservice.tamu.edu/main/default.aspx"> TFS Home</a><a href="http://txforestservice.tamu.edu/main/default.aspx"></a></td>
  </tr>
   <tr>
    <td height = "0" bgcolor="#FFFFFF"> </td>
  </tr>
</table>
<p >                                                                                                        <span style="font-size:x-large; color:#000">Thematic Maps</span></p>
<p>
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="930" height="1950" id="FlashID" title="map">
    <param name="movie" value="maps.swf" />
    <param name="quality" value="high" />
    <param name="swfversion" value="6.0.65.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don't want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <param name="SCALE" value="exactfit" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object data="maps.swf" type="application/x-shockwave-flash" width="930" height="1950">
      <!--<![endif]-->
      <param name="quality" value="high" />
      <param name="swfversion" value="6.0.65.0" />
      <param name="expressinstall" value="Scripts/expressInstall.swf" />
      <param name="SCALE" value="exactfit" />
      <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
      <div>
        <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
        <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
      <!--[if !IE]>-->
      </object>
    <!--<![endif]-->
  </object>
</p>
<p><!-- end .content --></p>
<div class="footer">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="0"  bgcolor="#6f8d5c"><p class="footer"><a href="Home.html">Home</a>  -  <a href="Highlights.html">Highlights</a>  -  <a href="EcoImpactTX.html" title="Map" target="_self">Summary Tool</a>  -  <a href="maps.html"><span style="font-weight:bolder"><span style="font-size:medium">Maps</span></span></a></a>  -  <a href="charts.html">Charts</a>  -  <a href="Report.html" target="_self">Download Reports</a>  -  <a href="FAQs.html" target="_self">FAQs</a>  -  <a href="ContactUs.html" target="_self">Contact Us</a>  -  <a href="http://txforestservice.tamu.edu/main/default.aspx">TFS Home</a><a href="http://txforestservice.tamu.edu/main/default.aspx"></a></p></td>
  </tr>
</table>
</div>
</div>
  <!-- end .container --></div>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>

Similar Messages

  • Not able to see form on Internet Explorer......FRM 92050 Pls help

    Hi,
    i just installed the 9ids release 2..
    i started oc4j instance version 1.3.1.8
    i created one fmb in default path forms90 and comiled the same in the
    same directory..
    when i run the browser it is throwing following error:
    FROM 92050 Failed to connect to the server /forms90/190servlet-1
    Details
    Java Exception
    java.io.ioexception: Negative content length from
    http://servername:8888/forms90/
    the following error occured
    (code=dns_no_data) the ip address was not found during the
    Dns lookup
    Please tell me detailed configuration what i have to made in
    regedit or forms90.cfg and environment file..
    No idea how i can proceed now..
    Thanks in advance
    asp

    Hi all,
    HMMM.. i fixed the problem.. but still need some help
    in my url i specified local host instead of servername and i am able to run the form on the web.
    http:localhost:8888/forms90/f90servlet?form=....etc(working fine)
    instead of
    http:itxkjdkk:8888/forms90/f90servlet?form=
    This is throwing error FRM92050
    but the problem is when ever i run the fmb from form builder in the IE browser
    it is taking the http://itxkjdkk:8888/forms90/f90servlet..so throwing error so i have to manually replace the url in browser to localhost:8888
    How can i set this through in formsweb.cfg..i did try to
    http:localhost:8888/forms90/f90servlet?form=....in server_url parameter of the
    formsweb.cfg but still it is taking http://itxkjdkk:8888/forms90/f90servlet when i run the form on web..
    pls help
    asp

  • Not able to doenload reports in Internet Explorer 7

    Hi,
    I am not able to download the report in IE7, where as in mozilla I am able to do that.
    Also in previous version of IE I was able to do the same.
    right now it is showing an error stating: Internet Explorer was not able to open this Internet site.
    Can any one suggest a help in this regard
    Thanks
    Shashank Gupta

    I am getting the below error. And we are getting this prob
    lem on all the systems
    Internet explorer can not download saw.dll from www.xyz.com
    Internet explorer was not able to open this internet site.The requested site is either unavailable or can not be found.

  • Not able to run Java3d on internet explorer

    Hi there,
    I have made an application using Java3D api (1.3.1). And, i have deployed it on WebLogic server. When i run this application with installed java3d environment(java3d-1_3_1-windows-i586-opengl-sdk.exe) on Internet Explorer 6.0, it works fine. But when i uninstall the Java3D environment & try to run the application i get this error ::
    java.lang.ExceptionInInitializerError
         at com.aramco.wellplot.view.multilateral.TopView.createCanvas3D(TopView.java:1054)at com.aramco.wellplot.view.multilateral.TopView.<init>(TopView.java:223)
         at com.aramco.wellplot.view.WellPlotViewer.openFile(WellPlotViewer.java:1140)
         at com.aramco.wellplot.view.WellPlotViewer.access$6000371(WellPlotViewer.java:27)
         at com.aramco.wellplot.view.WellPlotViewer$2.mouseClicked(WellPlotViewer.java:339)
         at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:208)
         at java.awt.Component.processMouseEvent(Component.java:5024)
         at java.awt.Component.processEvent(Component.java:4818)
         at java.awt.Container.processEvent(Container.java:1380)
         at java.awt.Component.dispatchEventImpl(Component.java:3526)
         at java.awt.Container.dispatchEventImpl(Container.java:1437)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3214)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2938)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2859)
         at java.awt.Container.dispatchEventImpl(Container.java:1423)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:190)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.awt)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:270)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
         at java.lang.SecurityManager.checkPackageAccess(SecurityManager.java:1513)
         at sun.applet.AppletSecurity.checkPackageAccess(AppletSecurity.java:166)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:109)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:322)
         at javax.media.j3d.GraphicsConfigTemplate3D.<clinit>(GraphicsConfigTemplate3D.java:55)
         ... 23 more
    I have included the required Java3D JAR files with my JSP page. I have also provided the DLL files but still getting the same error. The following code is written in JSP page ::
    <HTML>
    <HEAD>
         <TITLE>Application</TITLE>
    </HEAD>
    <BODY LEFTMARGIN="0" RIGHTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0" BGCOLOR="#C0C0C0">
    <APPLET WIDTH="100%" HEIGHT="100%"
              CODE="wellplot.view.Viewer.class"
              ARCHIVE="wp.jar,clib.jar,j3dutils.jar,j3dcore.jar,vecmath.jar, j3d.dll, j3dutils.dll, j3daudio.dll"
              CODEBASE=".">
    <PARAM NAME = "DEBUG" VALUE = 'TRUE'>
    <PARAM NAME = "USERNAME" VALUE = 'WP'>
    <PARAM NAME = "PASSWORD" VALUE = 'WP'>
    <PARAM NAME = "DB_URL" VALUE = 'ABC:1521:ORION'>
    <PARAM NAME = "RUN_ID" VALUE = '1'>
    <PARAM NAME = "PLOT_TYPE" VALUE = '<%= plotType %>'>
    </APPLET>
    </BODY>
    </HTML>
    Please help me out to resolve this exception. thx in advance.
    Regards,
    Prashant

    Prashant,
    what you are doing with the HTML-code above is to use the IE inbuilt Java VM. This VM is very old and corresponds to the Java 1.1 Specification. Java 3D requires a Java2 Platform.
    To run Java 2 Applets in IE you must use the Java Plugin JPI. I think, there is also a JPI Forum.
    In a few words: If you have installed the actual Java 2 SDK from SUN (JPI is included) you can replace the Java VM in the IEs Options Menue (there is a checkbox in the advanced options)
    To run Java 2 Applets in your customers IE you must change the applet tag in your HTML code into a Plugin-Tag. This is different for Mozilla and IE and therefore a complex task. You will find a tool named HTML-Converter within your Java home directory, which will help you to convert an applet tag into correct Plugin-Code.
    Regards,
    Oliver

  • NOT ABLE TO SEE SQL EXPRESSION FIELDS IN CR2008

    Hi,
    I am not able to see the SQL EXPRESSION FIELDS in the FIELD EXPLORER of CR 2008.Can
    you please help me
    BABASHARI

    Hi,
    I would suggest you open the question in the Crystal Reports forum.
    Ingo

  • ITunes musical library located on a WD 2TB, ext. drv. Computer destroyed by virus; ED survived. Bought new laptop, connected ED. Not able to see library. ED shows as 'G:' 95% full. How can I reconnect my old library to new laptop?

    I had my iTunes musical library on an ext. drv. WD 2TB, ‘MY BOOK ESSENTIAL'. Three weeks ago, my computer was infected by a virus that fried it. It did not affect the external drive. I bought a new computer: a laptop, Dell XPS, Intel Core i7-2630QM CPU, Windows 7 Home Premium. I have been able to connect the WD external drive; however, I am not able to see the musical library in my iTunes or Explorer. ‘My Computer’ shows the external drive as ‘G:’ 95% full. It reads, 32.1 GB free of 1.36 TB. When I click on the drive to see its contents, it shows nothing. The library in iTunes also shows nothing. Can anyone help, please? How can I reconnect my old musical library to my new laptop and iTunes? Many thanks.

    Hmm, viruses don't generally "fry" drives. They can make bootable operating systems not bootable, hide data, and corrupt executable files. Software can potentially wipe all the data from the drive but it shouldn't be able to physically damage the drive. Bah! What's done is done.
    As to unhiding your files assuming they are just hidden....
    Hit Start > Run, type in CMD and press enter. Type the following at the prompt and then press enter:
    attrib -h -s -r g:\*.* /d /s
    This tells windows to clear the hidden, read-only, and system flags from all files on the drive, assuming of course your profile has the power to "see" the files and change them.
    If that doesn't work then you may need to take ownership of the drive first. The drive may have security settings that make it "belong" to an account on your old system. Right-click on the drive in Windows Explorer and click Properties. Click the Security tab, the Advanced button, the Owner tab, then the Edit tab. Make yourself the owner, then you can make any other changes to the security settings you want to back on the Permissions tab. (If you can't change the owner log out and log back in as Administrator). For iTunes your account (or everyone) and SYSTEM need full access to all files. Any changes you make should be applied to "This folder, subfolders and files", should be inheritable and you should also replace the permissions on all child objects.
    tt2

  • How can I prevent firefox from displaying an overall black page after I request a topic search in the google/firefox search box? Not able to see results

    I loaded Mozilla v31 on my PC laptop which uses Windows XP operating system with all current updates. When I click on my internet icon, it leads me to the Mozilla page with a Google search bar. Once I type a topic in and click for the search to begin, the Firefox page turns all black and I am not able to see any results or action being taken. I click on the back arrow and enter a new topic, and click on search button, it repeats the same behavior and the Firefox page turns black. Essentially Mozilla Firefox is not a usable browser unless I can fix it. Help!

    When this happens, has the address bar changed to a google.com address or is it still blank?
    Some graphical glitches are caused by an incompatibility between Firefox and your graphics card drivers. The standard workaround for bypassing this is to disable Firefox from using hardware acceleration. You can make that change here:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    That will take effect the next time you exit Firefox and start it up again.
    More generally:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Not able to see the generated chart image

    I'm using Oracle 6i Reports and Oracle 9i dtabase to generate a report with graphs embedded. I'm able to view the tables populated with exact values but cannot see the graph. The chart image and html generated are placed correctly in the directory pointed to cahedir, but yet I'm not able to see the image. Can you tell me how to congifure the Html output from the server. The server is introducing a base tag pointing to a different location. Can I change the location.

    HI
    It is still not showing image. Messsage coming is "Right Click Here to Download Pictures. To help protect your privacy. Outlook prevented automatic download to this picture from the internet."
    Thanks & Regards,
    Ravi Grover

  • Not able to see Enterprise Service hosted at SDN

    Dear All
    I want to access the Enterprise Service that are available at SDN and for that I created two proxies in Visual Admin.
    I am trying to call those services in my Visual Composer. I am able to see the services in the Group.
    But not able to see the required Enterprise Service.
    When I click the + sign nothing comes under that group.
    I am using VC 7.0
    Can any body help me.
    Thanks
    Vivek
    Hello Everybody
    The ES available at SDN cannot be accessed outside SAP network because if we see the XML of the service available, the URLs within the XML are pointing to the internal hostname iwdf1030.dmzwdf.sap.corp of the system and not to the external hostname erp.esworkplace.sap.com. Unfortunately the internal hostname is not accessible or known to the internet and that is why we are not able to connect and retrieve the interface definition.
    May be it will take some time to resolve this issuse, till then have a great time.
    Regards
    Vivek
    Edited by: Vivek Kumar Mishra on Feb 28, 2008 11:26 AM

    Hello Everybody
    The ES available at SDN cannot be accessed outside SAP network because if we see the XML of the service available, the URLs within the XML are pointing to the internal hostname iwdf1030.dmzwdf.sap.corp of the system and not to the external hostname erp.esworkplace.sap.com. Unfortunately the internal hostname is not accessible or known to the internet and that is why we are not able to connect and retrieve the interface definition.
    May be it will take some time to resolve this issuse, till then have a great time.
    Regards
    Vivek

  • Not able to see the Person who posts reply and asked the question.

    Hi,
    I am facing issue with Posts in MSDN forum. I am not getting the name of Person who replied and asked the question which earlier used to come below the Post.
    Are all facing the same issue? I am using IE 8 and Google Chrome 33.0.1750.117 m.
    Can anyone please help.
    One good question is equivalent to ten best answers.

    I am using Google Chrome Version 33.0.1750.146 m (updated today). I am seeing names fine.
    It may be also your connection speed and some extra add-on you have.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles
    My Google Chrome is also updated to 33.0.1750.146 m, and I am using high speed internet connection in my organization, but still I am not able to
    see poster details. Even there is no data coming below 
    "Asked by:" section at Top left corner of MSDN Forum.
    One good question is equivalent to ten best answers.

  • Not able to see list of Plan applications when click on Navigate- Applica

    Hi,
    Somehow I am not able to see list of Planning applications when clicking on on Navigate->Applications->Planning from Workspace within Planning 9.3.1. Is there an Internet settings that I would need to change in order to see the list of applications. It seems like there are something disabled within my internet options or within my preferences.
    Could someone please help?
    Thanks.

    Hi,
    Is it just yourself that is experiencing this issue.
    Are you using IE7, If so
    Tools -> Internet Options -> Security -> Custom Level -> Allow script-initiated windows without size or position constraints
    Otherwise it could be that you have not been given access.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Not able to see specific tags for FSCM Credit Management on BP master data screen

    Hi All,
    I have already set up Collections & Dispute Management,
    I am now on my way to start FSCM Credit Management setting up. I have already created the BP role (UKM000) and assigned it for direction customer to BP, but I am not able to see any specific tag on BP Master data related to Credit management, (just as I can see "Collections profile" tag, in reference to Coll. Mngmt).
    So, I am not able to see these tags yet: "Credit profile", "Credit worthiness", "Cresit limit and control".....under Credit Management BP role!
    What am I missing there? Have I got to activate BAdi UKM_R3_ACTIVATE in order to be able to "see" those BP tags???
    ....Or what else?
    I will reward with points if someone can provide me any hint about this issue.
    Thanks a lot.

    Hi Pallavi,
    Many thanks for your quick response. However, I have not succeeded in seeing that tab.
    Let me tell you, I may be confused by a document I downloaded from internet about the BP master data views (as for the FSCM Credit Management role, of course) . Please find below the commented tag. It is an imaged I copy to you from that document I told you, for you to see which tag I am talking about:
    I don´t know the content of that tab...but I would like to see it in place....you know..
    Now, I checked you last answer and I saw that everything was already set by factory, please find below:
    BUS4 view:
    BUS5 view:
    However, I´m still not able to see the tab I told you at the beginning (first image). Am I confused about something here? Many thanks for your patience (these things happens when you set FSCM Credit Management for the first time).
    Is that tag accesible?
    Many thanks!
    Wilson

  • Not able to see any of the application,system windows in jdev

    Hi everyone,
    I am facing a strange problem in jdev 10.1.3.1.I am not able to see any of the application,system and other window.I tried clicking the view button in the toolbar and clicking on the application and system navigator to show off in the window,but there was no luck.I continue to see a blue screen.Even i deleted the jdev10.1.3.1 and installed again the new jdev10.1.3.1 but still then its not showing me the windows.When i tried to explore more clicking Tool->Preferences it gave me the following exception:
    java.lang.NullPointerException
         at oracle.tip.tools.ide.tx.addin.MapperOptionsPanel.load(MapperOptionsPanel.java:412)
         at oracle.tip.tools.ide.tx.addin.MapperOptionsPanel.onEntry(MapperOptionsPanel.java:400)
         at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:926)
         at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:899)
         at oracle.ide.panels.MDDPanel.mav$enterTraversable(MDDPanel.java:106)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1348)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:597)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:391)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:259)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:541)
         at oracle.ide.controller.IdeAction$1.run(IdeAction.java:772)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:789)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:498)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    I dont have any clue on this.
    Please help me in resolving the problem and finding some solution to this.
    Thanks & regards

    Try and see if this helps:
    http://blogs.oracle.com/shay/2006/11/10
    Although it seems that just removing JDeveloper and reinstalling from scratch should have done this.

  • Always facing the "Not Responding" issue while launching the internet explorer 11. I have tried reset in advanced, deleting all cookies, history and all. But no result.

    Always facing the "Not Responding" issue while launching the internet explorer 11. I have tried reset in advanced, deleting all cookies, history and all. Also I did change the default site to https://www.google.com. But no result.
    Some times after some time, able click on new tab and did open any urls. But it is rare. Please help me on this issue. Because of this unable to work with QTP/UFT tool.
    I am getting on top of the screen the below error -
    Error on top the ie screen :
    res:/ieframe.dll/acr_error.htm#google.com,https://www.google.com/ - Internet Explorer (Not Responding)
    I am getting at the bottom of the screen the below error -
    Error at the bottom of the ie screen :
    A problem with this webpage caused Internet Explorer to close and reopen the tab.

    Hi,
    Please refer to the following link to troubleshoot this issue:
    http://msdn.microsoft.com/en-us/library/dn338138.aspx
    Check the browser add-ons
    Check the browser rendering mode
    Then, please also make sure to install latest Windows Updates which might address this issue.
    Update your anti-virus program and perform a security scan incase some virus cause this issue.
    Yolanda Zhu
    TechNet Community Support

  • Hi, i am not able to connect to the internet. wifi not working.

    hi, i am not able to connect to the internet. wifi not working. not able to find proper drivers for 32 bit win.7 os. need urgent help..
    This question was solved.
    View Solution.

    Hi:
    I can give you the link to the wifi driver, if you do the following steps to post the hardware ID for the wireless card, so I can figure out what model wireless card the notebook has...
    To find the hardware ID, go to the device manager and click on the device labeled Network Controller.
    Then click on the Details tab at the top of the Network Controller window.
    Now you see a Property drop down list and it is defaulted to Device Description.
    Drop down on that list and select the second item (Hardware ID's).
    Post the top string of characters you see in the window.

Maybe you are looking for

  • Error while creating a process chain

    Hello BI Gurus, I have activated the Business Content Scenario in Plant Maintenance for Infocube 0PM_C08(Measurement Results). It provides a datasource -> infocube flow,through DSO with transfer and update rules.(3.X scenario) I have two questions -

  • Error while installing ECL viewer 6.0

    Dear Gurus, I tried installing the ECL viewer 6.0 with followin steps... 1. un installed the previous version by deselecting the viewer in "general add-ons" of the gui setup. 2. Checked for the Webviewer2d.dll..... no trace 3. installed the ECL Viewe

  • Lion recovery didn't erase harddrive

    Hey I have a MacBook Pro, it's 6 months old and has since the beginning been slow but has progressively turned slower and slower. It is necessary to restart a lot as it chrashes down and stops working. Programmes that are especially difficult to work

  • Regarding attachment of  file

    hello, i have a requirement to attach a file to our own ztransactions for a particular field.kindly help me regarding this issue. thanks and regards, siri.

  • The new Hyperion driver from VIA

    has anyone used the new Hyperion Drivers from VIA: http://www.viaarena.com/ and is it usable for most VIA motherboards? (seems like a silly question, but I wanna make sure it does not ruin my KT3 Ultra MS-6380E M.B.)