problems if (Contains) & removeChild

If I want to do it every time evilShadow touches charShadow, dark is added. the entire function is a function of frame of entry.  and whenever evilshadow is not charShadow is not all black.

If (evilShadow.hitTestObject (charShadow))

{

if(fadePresent == false)

{

Black = new DarkFade;

dark.scaleX = 4;

dark.scaleY = 4;

addChild (dark);

fadePresent = true;

}

}

If ((evilShadow.hitTestObject (charShadow) == false) & & (contains (dark)))

{

fadePresent = false;

removeChild (dark);

}

everything works fine, but this error pops up

TypeError: Error #2007: child parameter must be non-null.

at flash.display::DisplayObjectContainer/contains()

to HorrorGame / checkforHits)

I have corrected errors with another variable

I pulled if(darkhere == true) if (contains (dark))

darkhere boolean indicates if dark is present on the screen.  idk why does not work tho

Tags: Adobe Animate

Similar Questions

  • Problem with container

    If I adjust my browser window size mobile, why tell the footer sitting in the middle of the div "maindiv"? I have a request, height: auto; to the container by using media queries but I still have the same problem?

    I fixed it, I had to add overflow: scroll; the div

  • problem of container Center

    Hello

    I wanted to rebuild an existing site, I did a few years ago, but I can't find where I'm wrong.

    The www.tandzorgbelfort.nl site was made with tables, and now I did of the div.

    The page with the div that goes wrong is http://www.tandzorgbelfort.nl/aften_alg.html

    As you can see it the container is 1200px. Headers of you, menu, content, footer, info div should be placed to the left. This must focus.

    I already tried some changes in the css, but I don't see it anymore.

    See the rest of the site how it must look finally. http://www.tandzorgbelfort.nl/behandelingen.html

    Can someone help me?

    Thank you!

    Carla

    Hi again,

    Try adding the following just above the tag

    
    

    GRAMPS

  • CONTAINS function problem

    Hi all!!

    I had a problem with contains the function. I am running oracle 11g.

    If I run this query:


    SELECT x.lid as id,  x.sztitular as titular, e.szname as proName, x.szresumen  as resumen, b.sztitle  as catName, 
    f.szname  as secName, d.szname  as cliName, x.datecreation as datecreation 
    
    FROM CPR_PRACTICAL_CASE x,ctg_category b, CPR_CLIENT d, pro_product e, CAT_SECTOR f, CPR_PCASE_PRODUCT g, CPR_PCASE_SECTOR h, 
    
    PRO_PRODUCTCATEGORY i WHERE  x.lid = g.lpcaseid and e.lid = g.lproductid and x.lid = h.lpcaseid 
    and f.lid = h.lsectorid and x.lclientid = d.lid and i.lproductid = e.lid and  b.lid = i.lcategoryid 
    AND x.szlocale = 'es-ES' AND  x.bavailable = '1'
    I get 1 row as a result with the column sztitular = 'rollers of measures. "

    If I add only a sentece more to this query:
    AND CONTAINS( x.sztitular, 'rodillos',1) >0
    the query returns an empty set... really, I don't understand why because the term "rollers" is present in the column of the line called "sztitular"...

    I put an index on that column:
    create index ITXT_TITULAR on CPR_PRACTICAL_CASE(sztitular) INDEXTYPE IS CTXSYS.CONTEXT;
    any help?

    Thank you very much!!!

    Hello

    the line was before creating the index or have you added the line after you have created? You created the index without the sync option, so a new line is not reflected in the index, after a sync.
    A quick synchronization goes hand in hand with

    begin
      ctx_ddl.sync_index('ITXT_TITULAR' );
    end;
    

    In addition, you could add a synchronization to creating indexes, after that, each commit will also synchronize the index:

       create index ITXT_TITULAR on CPR_PRACTICAL_CASE(sztitular) INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS ('SYNC ( ON COMMIT)') ;
    

    Herald tiomela
    http://htendam.WordPress.com

  • Problem child removal

    I have problems to remove some preloader movieclips that I inserted via AS3. The message I get is:

    ArgumentError: Error #2025: the supplied DisplayObject must be a child of the caller.

    at flash.display::DisplayObjectContainer/removeChild()

    to btn5_fla::MainTimeline/thumbLoaded()

    for each preloader a charge, except the last.

    My code is:

    Caurina.transitions import. *;

    var indexXML:XML;

    columns: number var;

    var thumbWidth:Number;

    var thumbHeight:Number;

    var myThumbs:XMLList;

    var totalThumbs:Number;

    var preloader: LoaderAnim;

    var container: MovieClip;

    var xCounter:Number = 0;

    var yCounter:Number = 0;

    var xmlReq:URLRequest = new URLRequest ("clientes.xml");

    var xmlLoader:URLLoader = new URLLoader();

    Scrollbox.ch.client_info. AutoSize = TextFieldAutoSize.LEFT;

    Scrollbox.ch.client_info.htmlText = "";

    Scrollbox.SB.Visible = false;

    Scrollbox.SB.alpha = 0;

    function urlLoaded(e:Event):void {}

    indexXML = new XML (e.target.data);

    columns = indexXML.logos.@columns;

    thumbWidth = indexXML.logos.@width;

    thumbHeight = indexXML.logos.@height;

    myThumbs = indexXML.logos. *;

    totalThumbs = myThumbs.length ();

    scrollbox.ch.client_info.htmlText += indexXML.intro;

    createContainer();

    callThumbs();

    }

    function createContainer (): void {}

    container = new MovieClip();

    scrollbox.ch.addChild (container);

    container.y = scrollbox.ch.client_info.height + scrollbox.ch.client_info.y + 20;

    }

    function callThumbs (): void {}

    for (var i: Number = 0; i < totalThumbs; i ++) {}

    var thumbURL = myThumbs[i].@thumb;

    trace ("loading" + thumbURL);

    var thumbLoader = new Loader();

    thumbLoader.load (new URLRequest ("thumbURL"));

    thumbLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, thumbLoaded);

    = (thumbWidth + 40) thumbLoader.x * xCounter.

    (+ 40 thumbHeight) = thumbLoader.y * yCounter;

    if (xCounter + 1 < columns) { }

    xCounter ++;

    } else {}

    xCounter = 0;

    yCounter ++;

    }

    preloader = new LoaderAnim();

    preloader.name = "preloader" + i;

    trace (preloader.name);

    preloader.x = thumbLoader.x + 30;

    preloader.y = thumbLoader.y + 30;

    container.addChild (preloader);

    }

    }

    function thumbLoaded(e:Event):void {}

    var thb:Loader = Loader (e.target.loader);

    container.addChild (thb).

    if(scrollbox.ch.height<scrollbox.masker.height) {}

    scrollbox.sb.visible = false;

    { } else {}

    scrollbox.sb.visible = true;

    Tweener.addTween (scrollbox.sb, {alpha: 1, time: 1});

    }

    container.removeChild (preloader);

    }

    xmlLoader.addEventListener (Event.COMPLETE, urlLoaded);

    xmlLoader.load (xmlReq);

    Caurina.transitions import. *;

    var indexXML:XML;

    columns: number var;

    var thumbWidth:Number;

    var thumbHeight:Number;

    var myThumbs:XMLList;

    var totalThumbs:Number;

    var i: uint = 0;

    var preloader: LoaderAnim;

    var container: MovieClip;

    var xCounter:Number = 0;

    var yCounter:Number = 0;

    var xmlReq:URLRequest = new URLRequest ("clientes.xml");

    var xmlLoader:URLLoader = new URLLoader();

    Scrollbox.ch.client_info. AutoSize = TextFieldAutoSize.LEFT;

    Scrollbox.ch.client_info.htmlText = "";

    Scrollbox.SB.Visible = false;

    Scrollbox.SB.alpha = 0;

    function urlLoaded(e:Event):void {}

    indexXML = new XML (e.target.data);

    columns = indexXML.logos.@columns;

    thumbWidth = indexXML.logos.@width;

    thumbHeight = indexXML.logos.@height;

    myThumbs = indexXML.logos. *;

    totalThumbs = myThumbs.length ();

    Scrollbox.ch.client_info.htmlText += indexXML.intro;

    createContainer();

    callThumbs();

    }

    function createContainer (): void {}

    container = new MovieClip();

    scrollbox.ch.addChild (container);

    Container.y = scrollbox.ch.client_info.height + scrollbox.ch.client_info.y + 20;

    }

    function callThumbs (): void {}

    for (var i: Number = 0; i

    var thumbURL = myThumbs[i].@thumb;

    trace ("loading" + thumbURL);

    var thumbLoader = new Loader();

    thumbLoader.load (new URLRequest ("thumbURL"));

    thumbLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, thumbLoaded);

    thumbLoader.x = (thumbWidth + 40) * xCounter.

    thumbLoader.y = (thumbHeight + 40) * yCounter;

    If (xCounter + 1<>

    xCounter ++;

    } else {}

    xCounter = 0;

    yCounter ++;

    }

    Preloader = new LoaderAnim();

    Preloader.Name = "preloader" + i;

    trace (preloader. (Name)

    Preloader.x = thumbLoader.x + 30;

    Preloader.y = thumbLoader.y + 30;

    container.addChild (preloader);

    //}

    }

    function thumbLoaded(e:Event):void {}

    var thb:Loader = Loader (e.target.loader);

    container.addChild (thb);

    If (scrollbox.ch.height<>

    Scrollbox.SB.Visible = false;

    } else {}

    Scrollbox.SB.Visible = true;

    Tweener.addTween (scrollbox.sb, {alpha: 1, time: 1});

    }

    container.removeChild (preloader);

    i ++ ;


    If (i<>


    callThumbs();

    }

    }

    xmlLoader.addEventListener (Event.COMPLETE, urlLoaded);

    xmlLoader.load (xmlReq);

  • The Movie Clip RemoveChild removal help

    Hi, im new to this forum and new to actionscript 3.


    I wonder, how can you remove the movieclip so that it is not the battery when you click another button.


    SH1.PNG


    1 BTN opens the movieclip by addchild


    S2.PNG


    2 BTN opens the 2nd movieclip but batteries in the front and the first movieclip is not removed


    S3.PNG

    LIKE my movieclip link so that i can bring to the stage.


    My code



    Thumbnail1.addEventListener (MouseEvent.CLICK, myThumb1);


    function myThumb1(evt:MouseEvent):void

    {

    var myMC:hover1 = new hover1();

    container.addChild (myMC);


    If (Contains (myMc))

    {

    container.removeChild (myMC)

    }

    }


    thumbnail2.addEventListener (MouseEvent.CLICK, myThumb2);

    function myThumb2(evt:MouseEvent):void

    {

    var myMC2:hover2 = new hover2();

    container.addChild (myMC2);

    }

    Here is your code rehabilitated using the second approach I described...

    Thumbnail1.addEventListener (MouseEvent.CLICK, myThumb1);

    function myThumb1(evt:MouseEvent):void
    {

    While (container.numChildren > 0) {}
    container.removeChildAt (0);
    }

    var myMC:hover1 = new hover1();
    container.addChild (myMC);
    }

    thumbnail2.addEventListener (MouseEvent.CLICK, myThumb2);

    function myThumb2(evt:MouseEvent):void
    {
    While (container.numChildren > 0) {}
    container.removeChildAt (0);
    }

    var myMC2:hover2 = new hover2();
    container.addChild (myMC2);
    }

  • Cannot change the containment of the entity at the global level

    Hello

    I have a problem with containment relationships entity and I wonder if anyone can help. Briefly, I can't come back "Entity containing" Global once I have chosen this entity must be included by another entity (other than the overall). In other words, I need a way to Cancel the decision to an entity in another entity.

    For example, assuming that I have two entities, A and B, which are initially contained by the Global.

    Step 1. Be a B, which is a 'child' b entity.
    Step 2. Do contained by Global again (i.e. reverse step 1).

    When I try to accomplish step 2, I:

    -Click on the button «...» "next"containing entity.
    -Click on Global
    -Click OK
    -Container entity is not change, as if the choice of overall was not recognized.

    Any ideas?

    Thank you
    -Patrick

    Patrick,

    Yes, looks like I can't move no more. I'm not sure if it's a regression or if it has been broken since the containment has been added - I'm going to need to do a deeper analysis.

    If you are convinced of XML editing with a text editor, then it is relatively simple to fix directly.

    Open your properties file in a text editor such as Notepad (taking a backup of the file in case you bumble).

    First, you need to change the declaration of has.

    It will look like:

    You must change the value of the attribute id-parent-containment to the 'global '.

    Download

    You also need to change change the containment relationship declaration (near the bottom of the file):

    For this line, you must change the attribute of the source to be as 'global '.

    Download

    Save your changes, open Studio and everything should be good.

    Or alternatively (or if you are not confident the changes), feel free to send the property file of for me to: andrew DOT barry AT oracle DOT com and I'll be happy to fix it for you.

    Concerning

    Andrew

  • Problem with first decoding or preview files using Canon DSLR on PC

    Use: First CS5.5

    Problems on laptops and desktop

    Laptop: 12 GB RAM

    Intel: i7

    1.5 GB of Nvidia

    Office: 16 GB of RAM

    Intel: i7

    SSD: 256

    GTX 470

    Is not all clips, but probably 1/5th clips will have 3 or 4 frames of the clamp of the screen randomly corrupt pixels.  See this gif (ignore the interlaced effect), on the lower part. http://i.imgur.com/Kx5Yb.gif

    It is with DSLR no transcoding to 1080 p, 23.976

    If I go into the source file, it plays fine on VLC and Quicktime.  If I delete and re-import the clip, it does the same thing.  If I delete, rename, import the clip, it does the same thing.

    Need help please, it is a puzzle to me.  Transcoding is not an ideal solution.

    Your file is broken. Despite having said that it plays in QuickTime, it does not work:

    It's a little more difficult to notice in QT Player, but it is there; It is easier to notice if you move through levels, frame-by-frame in the clip with the arrow keys left and right.

    So, it's not a matter of Premiere Pro; There is something causing your clips corrupted. My first guess would be a bad CF card, but it could be something as Benin as a copy process borked (CF on hard disk) to something as serious a problem with your digital SLR. I don't think there is anyway to fix these files; My usual stuff did not work, which suggests that it is not a problem of container, but a problem with the video stream itself real.

    Bad luck.

  • Flickering MovieClips

    I programmed an animation with a background that change when the mouse is moved on stage, two elements of movieclip must appear and one of them acts as a button for the other. Unfortunately, the departure of flicker like crazy when the mouse passes over them. I have this problem on a similar project and just may not know what I am doing wrong.

    The code is pretty simple:

    var container: MovieClip;
    var HAL: MovieClip;
    var glow: MovieClip;
    Knopf var: MovieClip;

    container = new MovieClip();
    HAL = new HalEye();
    lit = new GlowKnopf();
    Knopf = new OpenKnopf();

    container.addChild (HAL);

    Glow.x = container.width / 2;
    Glow.y = 50;
    Knopf.x = container.width / 2;
    Knopf.y = 330;

    addChild (container);

    container.addEventListener (MouseEvent.MOUSE_OVER, anima);
    container.addEventListener (MouseEvent.MOUSE_OUT, restoration);

    function anima(event:MouseEvent):void {}
    HAL.blendMode = BlendMode.SCREEN;
    HAL.alpha = 80;
    container.addChild (glow);
    container.addChild (knopf);
    }

    function restore(event:MouseEvent):void {}
    HAL.blendMode = BlendMode.NORMAL;
    HAL.alpha = 100;
    container.removeChild (glow);
    container.removeChild (knopf);
    }

    I hope that everyone is ready to help. THX

    I think the problem is that in AS3 Mouse triggers all kinds of mouse over events when he passes on various display objects. I would like to spend your (OUT) MouseEvent.MOUSE_OVER to MouseEvent.ROLL_OVER (OUT) that will trigger once after you mouse over/out of the container. Either that or set container.mouseChildren = false to prevent his children from cause of mouse over events.

    WL

  • Pavilion dv4: CD/DVD drive recognized but don't read do not

    My DVD RW drive has suddenly stopped reading my CD.  It is recognized, the software is updated, and in the Device Manager, it indicates that the drive works properly, but is obviously not. The Cd has been used the week before with no problems (it contains the files of articles and reviews) but since then has not worked and I never even pulled out of the car so I don't think it's anything wrong with the CD itself.  I recently inserted a music CD and it worked fine.  When I insert the other CD that seems not read at all and funny noises come from the drive and sometimes the compueter will be the way I want to use the player. either as a CD or USB drive.

    The CD works on other computers?

  • Best OS for 2010 upgrade 2.4 core duo?

    So I got my my mini 2010 since then and it has been relegated to a platform of film glorified since 2012 when I got a high-end MacBook.

    I have now the need for a desktop computer handle some heavy windows based like HCSS and AutoCAD programs, but rather than spend $1,000 on a good windows based machine, I decided to upgrade my mini. I'll be it bumping 4 g to 16g of RAM and replace my drive dead optical with an OWC data Doubler and 2 TB hard drive. Once I got to the top and do work in that I'll migrate the HD existing more to the datadoubler drive in order to install an OWC Mercury Extreme Pro 6 G SSD as my main HD. I use boot camp and a play windows 7 copy but also have a copy of parallels 11. I am running Yosemite with boot camp on my MacBook for the same programs.

    I'm running Mavericks on the mini and have no problem it contains at the moment, I can still go to Yosemite.

    My question is which OS, including El Capitan, give me the faster and more stable platform on this configuration?

    Did someone of another similar configurations running?

    I found no later versions of the OSX (10: 9 - 10.11) make much difference in the slowness with adequate memory. If you do not want the new features in OS x versions later and apps yo want to run for only requires is not a superior OSX version, I see no reason to update

  • use file Spreadhseet read 1 extra row each iteration of the loop

    Hello

    I wrote a program that uses number of data points according to the specified user to the settings. For each data point, I use a Spreadhseet VI reading to correct each data point according to the calibration spreadsheets I've already saved. For each data point, so I need to multiply/divide it by corresponding values in each spreadhseet of calibration. This corrected number is then displayed in a XY chart as recorded in another worksheet in the corrected values file. I placed indicators at the output of each worksheet VI reading to see what value is read. The program reads the first data in each worksheet correctly point but then to each successive iteration, the number is completely wrong, and I don't know what is happening.

    Essentially, I need to know how to read successive lines a spreadhseet file where the number of line that is read is consistent for the number of the iteration of the enclosing loop. I think that the problem lies in my inexperience with this VI because I don't know if I'm seizes my desired correctly parameters.

    I joined my program as well as two of the three calibration spreadsheet files related (the third is the same size and the same format as the worksheet example diode). The program is large enough, but the problem is contained in the case of IPCE. Spreadhseets in calibration are taken in the case of IPCE calibration.

    Thanks in advance,

    Kai

    Hello Kai,

    You should watch the context-sensitive help from and use the two ReadPosition inputs and output!

    You must provide a postion of file line-by-line reading and if you have to remember the position of reading of your last call to read. "Taking into account" can translate to LabVIEW speek by "shift register! BTW. reading a file once and using the data in the table afterwards generally are much easier for these small tables...

    But before tackle you this problem, you must get rid of at least 95% of all local variables. LabVIEW is all about the stream, it is not used (or even have) variables to process the data. Your "Overlord" VI is a bunch of (possible) race conditions mixed with a huge amount of RubeGoldberg...

    Kennst das deutschsprachige Forum LabVIEW?

  • Windows 7 - cannot install several updates

    After an update of Windows by the end of June, my computer started acting weird. I noticed that in the PC to solve problems, it contained a message saying that I had no antivirus, despite the fact, I have McAfee installed on it and it was working fine before the update. And when I tried to open McAfee to see what appeared to be the problem, it was just a plain white window empty I had to close it using the Task Manager.

    In addition, some pages on the internet to not load correctly seemedd. For example, I opened the Yahoo home page, and on the latest news, they show 4 at a time and has arrows to move to the next 4, now these arrows is never presented. You also can't connect to the e-mail address. Even on the Microsoft Support Web site. After selecting that I wanted to find something specific about it, he sent me to the page where it is supposed to say I call a number or seek answers in Microsoft Answers (which I now) only the page was empty except for the logos and stuff at the top of the page. I've since done a factory restore and chose not to install updates until I can be assured that this problem is solved. I don't know what is the cause, but everything happened just after the update. I would be very happy to help. These are the updates that are on the list:

    IMPORTANT:

    A security update cumulative for the stop bits ActiveX for Windows 7 for x 64-based systems (KB980195)

    Cumulative Security Update for Internet Explorer 8 for Windows 7 for x 64-based systems (KB982381)

    Cumulative update for Media Center for Windows 7 x 64-based Systems (KB981078)

    Microsoft .NET Framework 3.5 SP1 Security Update for Windows 7 and Windows Server 2008 R2 for x 64 systems (KB979916)

    Update Microsoft .NET Framework 3.5 SP1 for Windows 7 and Windows Server 2008 R2 for x 64 systems (KB982526)

    Microsoft .NET Framework 4 Client Profile for Windows 7 x 64-based Systems (KB982670)

    Update security for Windows 7 for x 64-based systems (KB2032276)

    Update security for Windows 7 for x 64-based systems (KB978542)

    Update security for Windows 7 for x 64-based systems (KB979482)

    Update security for Windows 7 for x 64-based systems (KB979559)

    Update security for Windows 7 for x 64-based systems (KB980218)

    Update for Internet Explorer 8 Compatibility View List for Windows 7 for x 64-based Systems (KB982632)

    Update for Windows 7 for x 64-based systems (KB971033)

    Update for Windows 7 for x 64-based systems (KB975496)

    Update for Windows 7 for x 64-based systems (KB980408)

    Update for Windows 7 for x 64-based systems (KB980846)

    Update for Windows 7 for x 64-based systems (KB981793)

    Update for Windows 7 for x 64-based systems (KB982519)

    X 64-July Windows malicious software removal tool (KB890830) 2010

    OPTIONAL:

    Intel Corporation - display - Intel HD Graphics

    Realtek - network - Realtek PCIe GBE Family Controller

    Update for Windows 7 for x 64-based systems (KB976422)

    1. run this triple McAfee fix: http://service.mcafee.com/FAQDocument.aspx?id=TS100507

    2. manually & repeatedly updating the McAfee application until you get a invite "no update more".

    3. now to reset Windows Update by...

    How to reset the Windows Update components?
    [Skip the section is APPLIED to.] KB971058 access via IE8 32 bit only. Run the difficulty in DEFAULT and AGGRESSIVE mode]
    http://support.Microsoft.com/kb/971058

    4. restart & test.

    It is perfectly safe to hide these optional, non security-related updates. I'm sure that they had nothing to do with your problem.

    HOW to hide an update or restore a hidden update
    http://www.SevenForums.com/tutorials/24376-Windows-Update-hide-restore-hidden-updates.html

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • color laserjet cp1025nw print streaky

    I get entrelardé & dirty my HP Laserjet CP1025nw color printing.

    Have executed the impression several times cleaning process without success.

    This just happened. He perfectly managed so far.

    Hello newoboz,

    Welcome to the Forums of HP Support!

    After reading your post, I see that you have the LaserJet CP1025nw and it is poor quality printing. Run the cleaning of the printer will usually clear up problems.

    I was able to locate this HP document: print quality problems, it contains 11 steps to help solve this problem for you.

    I hope this helps, let me know if it does not work.

    Kind regards

  • Network adapter 802.11n keeps stalling in Message' no. get error Windows 7 drivers are installed for this device. »

    Original title: 802.11n network adapter keeps dropping out

    My network card, Ralink 802.11n for Windows 7 Professional 64-bit, continues to stall as I have no connection to any network.  When I check the network card, he said, "no drivers are installed for this device."  If I try to update the driver, it indicates that the drivers are up to date.  The only way to get the device working properly is to shut down the laptop and restart.  When I do this the device manager says that the network card is working properly.  I looked at other solutions, but none of them seem quite fit.  I use a HP probook 4320 s laptop and I recently installed a I have to drive with the Windows 7 software pre-installed on the drive.

    Hello

    According to the description, I understand in your computer continues network to drop out of school and gives the error that "no drivers are installed for this device. I imagine the inconvenience that you are experiencing and will certainly help you in the right direction to solve the problem.

    This problem may occur because of corruption in the network driver or the network driver is not properly installed in your computer.

    Please follow the troubleshooting mentioned method below to check if his help.

    Method 1: run the network troubleshooter utility.

    The problem report contains one or more event logs. Administrators Network and technical support staff can use the information in the event logs to analyze connectivity problems or help interpret the findings. You can find this information by clicking on display of detailed information on the last page of the troubleshooting tool, or by following these steps:

    1. Open troubleshooting by clicking the Start button, on Panel configuration, and then, under system and security, clicking on find and fix problems.
    2. In the left pane, click View history.
    3. Right click on the troubleshooting report, and then click details.

    If the problem persists, follow the next method.

    Method 2: uninstall and reinstall the network driver.

    Please follow the steps below.

    1. Open Device Manager by clicking the Start button, click on the Control Panel, clicking system and Maintenance, and then clicking Device Manager.  If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
    2. In Device Manager, look for the network adapter.
    3. Right-click on the adapter and select uninstall.
    4. After uninstalling the network driver restart the driver.

    After the computer restarts, Windows will automatically try to install the driver real network. If not, I recommend you download the latest driver available from the manufacturer's Web site and check if its help.

    Please follow the below link to download the driver from the manufacturer websites (HP) network.

    http://h20565.www2.HP.com/hpsc/SWD/public/readIndex?sp4ts.Oid=4145372&swLangOid=8&swEnvOid=4059

    Hope this information is useful, if the problem persists please write us back with the quick information so that we can help you further.

Maybe you are looking for

  • What is the part number of motherboard for Satellite L300D-23Z?

    Hello I need to know the reference number of the motherboard for my computer.I have been damaged the video chip. Would you be kind enough to give me the part number, as I need to buy a new one. Thank you + The message was edited: assignment has been

  • Printer shows offline?

    I have an Officejet Pro L7680 printer, and I have two new laptops Windows 7 who share the same problem through the wireless home network.  The printer status offline, but when I restart the laptop, it prints documents that are waiting in the print qu

  • PMB for camcorder - DCR-SR46 software?

    HI - I have a Handycam DCR-SR46 with PMB on my XP computer. I recently bought a laptop with Windows 7 above. I can't find the software for the PMB for Windows 7 online. It shows only the updates online. The dvd I have is not working/install. It is no

  • Software of HP missing after installing Windows 7

    I have a HP Pavilion dv7-1245dx which had Vista 64 bit OS installed.  When I upgraded to Windows 7 64 bit OS I ended up having to do a clean installation of the operating system due to errors during the upgrade process.  Now it works correctly but I

  • Windows Update fails on three PCs for three weeks.

    There must be something wrong with the MS Update servers. Three Windows 7 computers all with the same question. Even after hours of "search for updates", nothing happens. But the CPU usage is at 100%, and the cooling fan works overtime. What is going