Advert does not display in Virginmedia Homepage with IE9

Flashplayer is installed and seems to be working but in Virginmedia.com Homepage there is a blank space where there should be an advert using IE9. Using Firefox the advert displays as it should. If I open Ancestry.co.uk in IE9 I get one of those yellow warning bars telling me "Add-on for this web site failed to run" and once again there is a blank space where there should be an advert that again displays as it should in Firefox.
The odd thing is that Flashplayer seems to be working and is enabled in Manage Add-ons. I really don't want to have to use Firefox and all my settings in Internet Options seem to be OK. (My daughter doesn't have any problems with her computer and we compared settings that seem to be the same).
Could this be a Flashplayer problem or does anyone have any suggestions please?

Hi Judesman, I'm late getting on the Forum today. Are you saying that there are that many addons from SpywareBlaster in your browser?
I have researched SpywareBlaster and have a very negative opinion on it. It is very intrusive and would never have it on my system nor recommend it to anyone.
Microsoft Security Essentials is a free Anti-Virus and Anti-Spyware program. It does not install any addons into the browser and is very light on resources and easy to use. It does not contain a Firewall, but Windows Firewall works well.
I would go here and download it but SAVE it to your Desktop.
http://www.microsoft.com/en-us/security_essentials/default.aspx
Then I would go to this website which is very good and follow the procedures to Uninstall SpywareBlaster.
When it is Uninstalled, then Reboot(restart) your computer.
http://www.bleepingcomputer.com/uninstall/2208/SpywareBlaster-v3.5.1.html
Then I would Close all browser windows, Run to Install MSE(Microsoft Security Essentials) when it is finished Installing I think it will update and run a scan. If not, you can do that from the Home page.
This will give you good protection along with your IE browser.
If you have any questions, let me know. Keep in mind that this is just a suggestion on my part. I use MSE and it has been able to prevent malware and also removing it.
Thanks,
eidnolb

Similar Messages

  • StageWebView does not display a https website with captive runtime library on Android

    Hi,
    I'm working on a flex app for tablets (both iOS and Android) and it does not display a particular https website in a StageWebView. The strange thing is, that this issue happens only with this url (required for Google OAuth) and if I deploy the app with a captive air runtime library.
    I see the below stack trace in the system logs:
    W/System.err(26027): java.lang.NullPointerException
    W/System.err(26027):    at java.io.File.fixSlashes(File.java:185)
    W/System.err(26027):    at java.io.File.<init>(File.java:134)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManagerFactory(JavaTrustStoreHelper.java:8 1)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManager(JavaTrustStoreHelper.java:110)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.enumerateRootCAs(JavaTrustStoreHelper.java:195)
    W/System.err(26027):    at dalvik.system.NativeStart.run(Native Method)
    If I deploy the same app with a shared air runtime library and no code change at all, there's no issue at all. Also no problems while debugging or executing from Flash Builder on the device.
    The issue happens only with this Google URL, it's all okay with Facebook's auth url (https://www.facebook.com/dialog/oauth).
    The device is a Samsung Galaxy Tab2 10.1 with Ice Cream Sandwich (Android 4.0) on it.
    I would appreciate any idea with this issue.
    Thanks,
    Gabor

    Updating the AIR SDK from 3.1 to 3.4 has resolved the issue.
    Too bad that this needs to be done manually as described here: http://www.flashdeveloper.co/post/10985842021/overlay-adobe-air-32-in-flash-builder-46
    Many thanks for the hint, Pata.
    Regards,
    Gabor

  • Item does not display in correct position with TileLayout

    Please take a look at below coding. If I choose Frank and click button “age<5", the damn Frank stays still rather than the first column.
    What else should I do after refreshing the data list?
    Best Regards,
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.Sort;
                                  protected function button1_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f1;
                                            list.refresh();
                                  protected function button2_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f2;
                                            list.refresh();
                                  private function f1(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i<20;
                                  private function f2(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i>5;
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
                        <s:ArrayCollection id="list">
                                  <fx:Object name="April" age="1"  sex="male" />
                                  <fx:Object name="Brown" age="2"  sex="male" />
                                  <fx:Object name="Cindy" age="3"  sex="male" />
                                  <fx:Object name="Daren" age="4"  sex="male" />
                                  <fx:Object name="Emily" age="5"  sex="male" />
                                  <fx:Object name="Frank" age="6"  sex="male" />
                                  <fx:Object name="Green" age="7"  sex="male" />
                                  <fx:Object name="Helen" age="8"  sex="male" />
                                  <fx:Object name="Ice" age="9"  sex="male" />
                                  <fx:Object name="Jack" age="10"  sex="male" />
                                  <fx:Object name="Lance" age="11"  sex="male" />
                                  <fx:Object name="Mary" age="12"  sex="male" />
                                  <fx:Object name="Nancy" age="13"  sex="male" />
                                  <fx:Object name="Opera" age="14"  sex="male" />
                                  <fx:Object name="Quntas" age="15"  sex="male" />
                                  <fx:Object name="Ray" age="16"  sex="male" />
                                  <fx:Object name="Stone" age="17"  sex="male" />
                                  <fx:Object name="Tom" age="18"  sex="male" />
                        </s:ArrayCollection>
              </fx:Declarations>
              <s:List x="69" y="57" width="320" height="320" dataProvider="{list}" itemRenderer="spark.components.LabelItemRenderer"
                                                      labelField="name">
                        <s:layout>
                                  <s:TileLayout columnWidth="100" orientation="rows" requestedColumnCount="3"
                                                                                                        requestedRowCount="3" rowHeight="100"/>
                        </s:layout>
              </s:List>
              <s:Button x="63" y="9" label="age &lt; 20" click="button1_clickHandler(event)"/>
              <s:Button x="157" y="9" label="age &gt; 05" click="button2_clickHandler(event)"/>
    </s:View>

    Hi,
    It seems that is a problem with selectedIndex.
    Try:
    protected function button1_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f1;
        callLater(applySort);
    protected function button2_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f2;
        callLater(applySort);
    private function applySort():void
        list.refresh();
    <s:List id="myList" x="69" y="57"...
    Philippe

  • Air does not display on Panasonic VIera with VGS and mini adaptor

    I have the mini vga adaptor and my air works on our Dell monitor, however when plugging it into our TV - Panasonic Viera around 4 years old LCD, nothing happens - ie you select PC and the screen is black. Our old powerbook used to work.
    Do I need to hit a button or set something up?

    If you mean the mirror icon it is because you need OS X 10.8 Mountain Lion so you will need to purchase it from the app store.  There is also a third party app called airparrot, www.airparrot.com.
    Jules

  • My IPhone 4's mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. What is wrong with it?

    My work recently decided to buy every full time employee an IPhone 4 to be used for work purposes. (I do suspect these are refurbished, but I don't think that matters) I have had no trouble with it, except for on occasion the mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. You know what I'm talking about...that bar at the bottom of the mailbox when you open an email that you use to delete, respond, forward, move, etc. It just goes away for no reason, and then reappears for a day or two, and goes away again. It is quite annoying since I can't respond to any of my emails without getting on my work computer. If you have any suggestions, please help!

    Hi there,
    You may need to force close the Mail application when this happens. The next time this happens, use the steps in the article below to coles out of the mail application.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Hope that helps,
    - Griff W.

  • Reader X does not display drawing in PDF generated with LaTeX

    I have a quite large PDF generated by pdfTeX, Version 3.1415926-1.40.11 which contains also XY-pic drawings rendered with Xy-pic version 3.8.2, PDF driver v.1.4.
    One drawing does not display correctly in Adobe Reader X. Neither on Windows, neither on Mac. It does display correctly with following programs:
    Preview on Mac OS X 10.5 and 10.6
    Adobe Reader 9.x
    Skim (skim-app.sf.net).
    When I open this document with Adobe Reader X I get following error message when I hit page 58:
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem".
    Where does one report rendering problems?
    Damjan

    See [https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • I have yahoo mail, since your newest upgrade, when I open an email with a picture in it. The picture does not display

    I have windows7/8 and use att.yahoo mail. when I receive an email with a picture in the body, the picture does not display, this started happening after fire fox latest upgrade

    If images are missing then check that you do not block images from some domains.
    *Tap the Alt key or press F10 to show the Menu bar.
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    There are extensions like Adblock Plus (Firefox/Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/Websites_look_wrong

  • After Mozilla upgraded (5 I think) my igoogle homepage does not display when I sign in.

    I upgraded to Mozilla 5, (I think, as there does not seem to be any previous versions when I check), now my personalized igoogle homepage does not display when I sign in. I need to go to options then select igoogle. All was well before. How do I reset without having to completely redo my igoogle page. I do not believe I have the 6.0 version as that is what it says I can upgrade to. I am retired and am only learning.

    Unless you have a version of iPhoto that was 9.0 or later you will not be able to download iPhoto 9.6.1 from the App Store.  To get 9.6.1 you'll need to purchase a copy of the iLife 11 disk from an online retailer like Amazon.com and then go the App Store and download 9.6.1.  Those who had an iPhoto 9.0 or later already installed have been able to get 9.6.1.  But there's been no reports from anyone who bought iLife 11 and went that route so you're at your own risk. 

  • When my Firefox language settings are fr_fr or fr_ca Firefox does not display the e with acute accent character correctly when it is displayed in a javascript alert box. However, it does display it correctly when my language settings are just fr. Please t

    Firefox does not display the e with acute accent character correctly from a javascript alert box when my browser language settings are fr_ca or fr_fr. However, it does it correctly when my browser language setting is fr. How do i get it to display e with acute accent and other iso8859 characters correctly in a javascript alert box when my browser language settings are fr_fr and fr_ca?
    == This happened ==
    Every time Firefox opened

    Use Unicode (UTF-8) for those characters.
    Then you will always be sure that they are displayed correctly.

  • IPhoto6 - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored from time machine, rebuilt the library and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline.

    iPhoto6 on iMac running SL - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored the library from time machine, rebuilt the library from iPhoto and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline instead of the thumbnails. Does anyone have any other ideas on how to restore the thumbnails?

    Try the following:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Take picture with iPhone but it does not display it

    I take pictures with iPhone but it does not display it

    Take a picture. Tap on the thumbnail at the bottom left (portrait) or bottom right (landscape) of the screen to display it and access the rest of the camera roll.  Why is everybody complicating this?

  • JavaScript does not display in Design view

    Hi,
    I am just starting to learn JavaScript so excuse my, maybe stupid, questions.
    Why the following code does not display Hello world! in Split view on the "design" side? When I upload the file onto the server and try to view it in the browser everything displays normally.
    <!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>Homepage</title>
    </head>
    <body>
    <script type="text/javascript">
    document.write("Hello World!");
    </script>
    </body>
    </html>

    Hi,
    This is normal, design view is simply a way of either creating your website using the wysiwyg method or if you code the website it is a way of getting an idea what the site will look like static.  Design view doesn't run any scripts, which is why in the more recent versions of dreamweaver we have LiveView which does run the scripts and allow you to interact with drop down menus and the like, which you can't do in DesignView.
    Richard

  • DataGrid does not display XML data

    Hello, and thanks for reading this...
    I am having a problem displaying XMLList data in a DataGrid.
    The data is coming from a Tree control, which is receiving it
    from a database using HTTPService.
    The data is a list of "Job Orders" from a MySQL database,
    being formatted as XML by a PHP page.
    If it would be helpful to see the actual XML, a sample is
    here:
    http://www.anaheimwib.com/_login/get_all_orders_test2.php
    All is going well until I get to the DataGrid, which doesn't
    display the data, although I know it is there as I can see it in
    debug mode. I've checked the dataField property of the appropriate
    DataGrid column, and it appears correct.
    Following is a summary of the relevant code.
    ...An HTTPService named "get_all_job_orders" retrieves
    records from a MySQL database via PHP...
    ...Results are formatted as E4X:
    HTTPService resultFormat="e4x"
    ...An XMLListCollection's source property is set to the
    returned E4X XML results:
    ...The "order" node is what is being used as the top-level of
    the XML data.
    <mx:XMLListCollection id="jobOrdersReviewXMLList"
    source="{get_all_job_orders.lastResult.order}"/>
    ...The "jobOrdersReviewXMLList" collection is assigned to be
    the dataProvider property of a Tree list, using the @name syntax to
    display the nodes correctly, and a change event function is defined
    to add the records to a DataGrid on a separate Component for
    viewing the XML records:
    <mx:Tree dataProvider="{jobOrdersReviewXMLList}"
    labelField="@name"
    change="jobPosForm.addTreePositionsToDG(event)"/>
    ...Here is the relevant "jobPosForm" code (the Job Positions
    Form, a separate Component based on a Form) :
    ...A variable is declared:
    [Bindable]
    public var positionsArray:XMLList;
    ...The variable is initialized on CreationComplete event of
    the Form:
    positionsArray = new XMLList;
    ...The Tree's change event function is defined within the
    "jobPosForm" Component.
    ...Clicking on a Tree node fires the Change event.
    ...This passes an event object to the function.
    ...This event object contains the XML from the selected Tree
    node.
    ...The Tree node's XML data is passed into the positionsArray
    XMLList.
    ...This array is the dataProvider for the DataGrid, as you
    will see in the following block.
    public function addTreePositionsToDG(event:Event):void{
    this.positionsArray = selectedNode.positions.position;
    ...A datagrid has its dataProvider is bound to
    positionsArray.
    ...(I will only show one column defined here for brevity.)
    ...This column has its dataField property set to "POS_TITLE",
    a field in the returned XML record:
    <mx:DataGrid width="100%" variableRowHeight="true"
    height="75%" id="dgPositions"
    dataProvider="{positionsArray}" editable="false">
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Position Title"
    dataField="POS_TITLE"/>
    </mx:columns>
    </mx:DataGrid>
    In debug mode, I can examine the datagrid's dataProvider
    property, and see that the correct XML data from the Tree control
    is present. However, The datagrid does not display the data in any
    of its 6 columns.
    Does anyone have any advice?
    Thanks for your time.

    Hello again,
    I came up with a method of populating the DataGrid from the
    selected Item of a Tree Control which displays complex XML data and
    XML attributes. After the user clicks on a Tree branch, I call this
    function:
    public function addTreePositionsToDG(event:Event):void{
    //Retrieve all "position" nodes from tree.
    //Loop thru each Position.
    //Add Position data to the positionsArray Array Collection.
    //The DataGrid dataprovider is bound to this array, and will
    be updated.
    positionsArray = new ArrayCollection();
    var selectedNode:Object=event.target.selectedItem;//Contains
    entire branch.
    for each (var position:XML in
    selectedNode.positions.position){
    var posArray:Array = new Array();
    posArray.PK_POSITIONID = position.@PK_POSITIONID;
    posArray.FK_ORDERID = position.@FK_ORDERID;
    posArray.POS_TITLE = position.@POS_TITLE;
    posArray.NUM_YOUTH = position.@NUM_YOUTH;
    posArray.AGE_1617 = position.@AGE_1617;
    posArray.AGE_1821 = position.@AGE_1821;
    posArray.HOURS_WK = position.@HOURS_WK;
    posArray.WAGE_RANGE_FROM = position.@WAGE_RANGE_FROM;
    posArray.WAGE_RANGE_TO = position.@WAGE_RANGE_TO;
    posArray.JOB_DESCR = position.@JOB_DESCR;
    posArray.DES_SKILLS = position.@DES_SKILLS;
    positionsArray.addItem(posArray);
    So, I just had to manually go through the selected Tree node,
    copy each XML attribute into a simple Array, then ADD this Array to
    an ArrayCollection being used as the DataProvider for the DataGrid.
    It's not elegant, but it works and I don't have to use a Label
    Function, which was getting way too complicated. I still think that
    Flex should have an easier way of doing this. There probably is an
    easier way, but the Flex documentation doesn't provide an easy path
    to it.
    I want to thank you, Tracy, for the all the help. I checked
    out the examples you have at www.cflex.net and they are very
    helpful. I bookmarked the site and will be using it as a resource
    from now on.

  • MENU item selection does not display drop down in ITS enabled transaction

    Hello,
    We are experiencing a strange behavior between two portal env.
    1. DEV.
    For example we have transaction MM01 display in the Portal via ITS (integrated). The end user can select the Menu Tab and the System Tab and the drop downs appear as expected.
    2. Prod
    Same  scenario as above. Only this time, end user is unable to select the button. The Menu and System Tab dont appear greyed out but selecting it does not display the drop down.
    Material, Edit GoTo Defaults are some of the links under the Menu tab for MM01.
    Very confusing. And this is the behavior in Prod for all transactions. Any ideas on why this is happening would be greatly appreciated.
    The architectural difference is that DEV has no Web Dispatcher versus Prod has the Web Dispatcher.
    We are on EP 7.0
    Many thanks.
    Regards,
    Sunil

    Thanks. Now, I realise this may cause dismay to some, but I have now solved the problem, and just wanted to share my experience with those even less savvy than myself. In Dreamweaver, the Spry css styles are arranged with little or no hint as to which style controls what. I found that there is a rule in the sub-menu styles that controls the little graphic arrows which indicate that there are dropdown subs under the tabs. I had removed these arrows to make way for my background images. However, the rules that control their positioning by percentage were still there, causing my images to display incorrectly. Of course, there was no way anyone could have spotted this and helped me as the fault was in the external spry css file, not the page code. So many thanks to vw2ureg for looking anyway. Regarding the page code, which you have flagged up, would you mind elaborating on what you see wrong here? I'm none the wiser. Many thanks again.

Maybe you are looking for