HP Pavilion DV7t-2000 Mic and Webcam Error

I have an HP Dv7t-2000 laptop that is running Windows 7. Recently, my mic and wecam both stop working whenever my screen is raised up. If I tilt my screen down to below 45 degrees (to where the screen is hardly visible) the mic and webcam work fine. But when I tilt the screen up the rest of the way it no longer works. I have made no changes to my system prior to the error and there are no error messages. I know that the mic and webcam are becoming disconnected though because as I tilt the screen, the sound for a device being unplugged/plugged in will sound off at the respective screen positions. 

Yes

Similar Messages

  • How to stream audio and video captured from mic and webcam in sync.

    I am working on a video chat project. I need to capture audio and video from mic and webcam and create rtp stream for them. How can I proceed for this. Any source code help will be highly appreciated. Otherwise just guide me how to do this and point to any good resource which is directly related to my need.
    Thanx.

    t.b.m
    As mentioned by you, i am doing exactly like that . I have coded transmitter class. But at the receiver side it is unable to play the stream. I am posting my code . Can you please help with me with any mistake i m making in my code ?? Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67.
    package heyram;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.InetAddress;
    import java.awt.*;
    import java.io.*;
    import java.net.InetAddress;
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    import java.lang.Thread.*;
    public class HEYRAM{
    Format[] format=new Format[2];
    Vector[] devices=new Vector[2];
    CaptureDeviceInfo[] di=new CaptureDeviceInfo[2];
       SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
    Processor p=null;
    Processor p1=null;
    boolean result;
    public HEYRAM(String address,int port,int ttl){
        try{
                InetAddress destaddr = InetAddress.getByName(address);
                SessionAddress sessaddr = new SessionAddress(destaddr,
                                                             port,
                                                             destaddr,
                                                             port + 1);
                String cname = rtpsm.generateCNAME();
                    String username = null;
                try {
                username = System.getProperty("user.name");
            } catch (SecurityException e){
                username = "jmf-user";
            // create our local Session Address
            SessionAddress localaddr = new SessionAddress();
                SourceDescription[] userdesclist= new SourceDescription[]
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_EMAIL,
                                          "[email protected]",
                                                                     1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_CNAME,
                                          cname,
                                          1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_TOOL,
                                          "JMF RTP Player v2.0",
                                          1,
                                          false)
                rtpsm.initSession(localaddr,
                                userdesclist,
                                0.05,
                                0.25);
                rtpsm.startSession(sessaddr,ttl,null);
            } catch (Exception e) {
                System.err.println(e.getMessage());
                //return null;
        // rtpsm.initSession(localAddress, defaultUserDesc, rtcp_bw_fraction, rtcp_sender_bw_fraction);
            // rtpsm.startSession(...);
    public void createVideoSession()
        format[1] = new VideoFormat(VideoFormat.YUV);
        devices[1]= CaptureDeviceManager.getDeviceList( format[1]);
         di[1]= null;
            if (devices[1].size() > 0) {
                 di[1] = (CaptureDeviceInfo)devices[1].elementAt(0);
                  System.out.println(di[1].toString());
            else {
                // exit if we could not find the relevant capture device.
             System.out.println("1234jjfjsajfjasf1");
                System.exit(-1);
            // Create a processor for this capture device & exit if we
            // cannot create it
            try {
                p1 = Manager.createProcessor(di[1].getLocator());
            } catch (IOException e) {
                System.out.println("1234jjfjsajfjasf2");
                System.exit(-1);
            } catch (NoProcessorException e) {
                System.out.println("1234jjfjsajfjasf3");
                System.exit(-1);
            // at this point, we have succesfully created the processor.
            // Realize it and block until it is configured.
           // p1.configure();
         result = waitForState(p1, Processor.Configured);
         if (result == false)
         System.out.println("Couldn't realize processor");
            p1.setContentDescriptor(new ContentDescriptor( ContentDescriptor.RAW_RTP));
            // block until it has been configured
            TrackControl track[] = p1.getTrackControls();
            boolean encodingOk = false;
            // Go through the tracks and try to program one of them to
            // output ULAW_RTP data.
            for (int i = 0; i < track.length; i++) {
                if (!encodingOk && track[i] instanceof FormatControl) {
                    if (((FormatControl)track).
    setFormat( new VideoFormat(VideoFormat.YUV)) == null) {
    track[i].setEnabled(false);
    else {
    encodingOk = true;
    else {
    // we could not set this track to gsm, so disable it
    track[i].setEnabled(false);
    // Realize it and block until it is realized.
    p1.realize();
    result = waitForState(p1, Processor.Realized);
         if (result == false)
         System.out.println("Couldn't realize processor");
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    DataSource ds = null;
    try {
    ds = p1.getDataOutput();
    } catch (NotRealizedError e){
    //System.exit(-1);
    System.out.println("1234jjfjsajfjasf4");
    // Create a SessionManager and hand over the
    // datasource for SendStream creation.
    // The session manager then needs to be initialized and started:
    // rtpsm.initSession(...);
    // rtpsm.startSession(...);
    try {
    (rtpsm.createSendStream(ds, 0)).start();
    } catch (IOException e){
    System.out.println("1234jjfjsajfjasf6");
    e.printStackTrace();
    } catch( UnsupportedFormatException e) {
    System.out.println("1234jjfjsajfjasf7");
    e.printStackTrace();
    public void createAudioSession(){
    format[0] = new AudioFormat("linear",8000,8,1);
    devices[0]= CaptureDeviceManager.getDeviceList( format[0]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Can I replace the HDD in my Pavilion Dv7t-2000?

    Ok so I bought my laptop a little over a year ago with a 320gb HDD. Now I know that's a good bit of space but I've nearly maxed it out a few time so I want to upgrade it.  I already have the new hard drive, 750gb and have it set up but I can't for the life of me figure out how to get the old hard drive out.  I easily found where it is but I can't figure out how to lift it out.  Can I just push the data cable off and then it can rotate up?  If asked I can post a picture of it but for now I just want to know if any one has any guesses.

    http://h20574.www2.hp.com/results.htm?SID=3884606&MEID=B3F9837B-7043-4761-A36E-A0D4FD1CED63
    This is the official HP Services Media Library for your dv7-2000 Intel system.
    Select the "Primary hard disk drive ( CSR) " at the left-handed side menu, it should pop up both video and text to guide you to remove the hard drive.
    However, I am not sure the Operating System can support the hard drive size upto 750GB or not.
    Anyway, good luck.

  • What is the difference between the HP Pavilion dv7t models NQ339AV and NZ584AV ?

    My dv7t 3000 CTO just arrived this morning. The order summary said I was getting a model NZ584AV. The delivery invoice and product says what was delivered is a NQ339AV.
    How do I find out the difference between these models?
    By the way, it shipped two days early, and even though it didn't leave Shanghai until Tuesday, it still arrived in New Jersey Friday morning.    Amazing!!!
    David
    David

    Configure-to-order (CTO)
    It's the same computer, just different nomenclature.
    Carey Frisch
    Microsoft MVP
    Windows Expert - Consumer

  • I have a HP Pavilion dv 2000 laptop and an HP Photosmart C7280 wireless printer.

    I have an HP Pavilllion dv2000 laptop and an HP Photosmart C7280 wireless printer. They have worked well together until I reformatted and added Windows 7 on the laptop. I went online and downloaded the Windows 7 Printer Wizard. It recognizes my printer and says it has been installed. I have followed their directions and plugged USB cable into printer from laptop.  It prints that way. How can I get this to print wirelessly?

    You can phone HP to order a set.Choose your country here> Contact HP
    Or they are here>>http://www.computersurgeons.com/SearchProducts.aspx?sbt=dv9260nr&bkm=Results#Results
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Mic and cam

    this may be a dumb question,  but how do I know if there is a built in mic and webcam on my computer.  My husbands says it is here like his laptop but I do not see how to turn on the cam or know if the mic is working
      I have a new hp pavillion, 24 in monitor,,,  I do know my way around a computer but vista is very new to me

    If you tell us the exact model number for your PC and Monitor, I can tell you for sure....I'm betting you won't have a mic or cam built into the Desktop PC, but you might in the monitor.
    "A riot is the language of the unheard." - Dr. Martin Luther King Jr.

  • HP Pavilion DV7T‐4100 CTO USB 3

    I have a 
    HP Pavilion
    DV7T‐4100 CTO 
    and it appears that is does not have any usb3 ports.
    I just bought a usb3/sata hd caddy.
    Now my questions is will the usb 2 ports put out enought "juice" to run the usb 3 caddy which has only one usb connections and no external power supply?
    I know that my HP Pavilion DV7T‐4100 CTO has a combo usb2/firewire port and I'm wondering if I pug my usb3 caddy into it will it power up the HD?
    I belive that usb3 is downwardly compatable with usb2.  So if the connection has enought "juice" will it run the HD?
    Thanks
    rafalovich

    Hi rafalovich,
    You are correct, that USB 3.0 is backwards compatible with USB 2.0. There are plenty of USB 2.0 SATA Docks, so it should provide enough power, but the transfer rates would be at 2.0 USB speeds.
    Hope this helps.
    I worked on behalf of HP

  • HP Pavilion dv7t-7000 Under Warranty and Support won't help

    Hello,
    I have my pavilion laptop suddenly have power outages.  Verified that the product is under warranty and submitted a case.  The helpful support responded.  Closed my case.  Then proceeded to tell me that I had to go to another site to submit.  The link led me to exactly where they just closed the case and I could see my case I just opened marked as closed.  Thanks for the help.  In an email, this very helpful support person told me to navigate to chat and their directions didn't lead me to any chat.  So I'm left with a product under warranty that HP has cleverly hidden all means of support and actually fulfilling the warranty.
    ========================================================================================
    So throwing out the case notes and hoping anyone within HP or the community can lend guidance.
    roduct: HP Pavilion dv7t-7000 CTO Quad Edition Entertainment Notebook PC
    Problem description: Getting multiple eventid 41 associated with sudden shutdown of computer ("The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly."). I initially thought it was disk crash so replaced the hard drives and problem continues. I checked the power supply cord which was facing a recall and that appeared fine (not covered by the recall). Seems this is under warranty and this is freezing me up from doing work. 
    Case history
    *** NOTES 1/29/2015 (M/D/Y) 12:05 AM MST7MDT US [UTC -7:00] WES_SWF Action Type: DEFAULT
    Troubleshooting steps.
    Ran disk check, even after doing putting in new hard drive. No issues. Ran memory check. No issues. So memory and disk appear fine. Could be PSU based upon error code supplied. Odd w/ laptop. Forums suggested possible motherboard issue.
    *** NOTES 1/29/2015 (M/D/Y) 6:45 AM MST7MDT US [UTC -7:00] WES_SWF Action Type: Snic
    ********** And they ever helpful response that closes the case and directs me to the same place where I submitted the case in the first place.  Thanks for the help HP! ************************************************
    Hello Steve,
    Thank you for contacting HP’s Support Case Manager.
    Support Case Manager is not available at this time for HP Pavilion dv7t-7000 CTO Quad Edition Entertainment Notebook PC. HP’s support options on your specific product can be located at www.hp.com/contacthp . From this site you can visit the HP Support Forum, link to “Chat with an online Support technician. Options are free for in-warranty customers. Support for out-of-warranty customers may require a fee. To Check warranty status, please refer the below link:
    http://h10025.www1.hp.com/ewfrf/wc/weInput?cc=us&dlc=en&lc=en&product=3964065&task
    Thank you for contacting HP Support.
    Regards,
    [edited name by moderator]
    Technical Support Engineer,
    PPS Desktop/Portable Support

    Hi @SteveKo ,
    I sent a follow up message to the attention of an appropriate team within HP. It is possible that they may request more information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publically post ( serial numbers and case details).
    If you are unfamiliar with how the Forum's private message capability works, you can learn about that here.
    Regards,
    George
    I work for HP

  • I have a hp pavilion dv7 notebook pc and i'm get and error message that my integrated camara is off

    i have a hp pavilion dv7 notebook pc and i'm get and error message that my integrated camara is off, and when I go into skype or cyberlink i can not see me

    Hey Sam55555,
    I see that you're having an issue with the webcam. 
    Could you provide me with a model and product number of your notebook.
    So that I may look into this further to try and provide you with more helpful instructions.
    Also, this Document should help you out. If it doesn't let me know the full model name and i will find a document for your notebook.
    What i consider doing is the section that says "Reinstalling the original webcam program that came with your computer".
    THX sam

  • I Want To Transmit Audio from Mic and Video from WebCam.....???????????????

    I Want To Transmit Audio from Mic and Video from WebCam on Another Computer. I have used AVTransmit2.java file and AVReceive2.java file for Transmission and Receiving but They Transmit Only Video On Another Computer on a network without any error. Any One Help me How Can i Transmit both Audio & Video at the Same time ????????
    i m using This Command for Transmittion
    java AVTransmit2 vfw://0 192.168.0.1 192.168.0.2 10000
    and this Command For Receiving
    java AVReceive2 192.168.0.1/10000 192.168.0.2/ 10002

    Excuse me foro my bad English but I speak English like Tarzan.
    To trasmit both video and audio I created a MergingDataSource wich incorporates video and audio data sources. Then I created a Processor with this DataSource and a RTPManager for each track of the processor. It works.
    Stupendoman

  • New Hard Disc Drive for HP Pavilion dv6 because of 303 and 305 error messages

    Hello
    My laptop was getting slower and slower so I did a default restore via the recovery partition and when it rebooted to start the reformat and reinstall to factory condition I got a message on the screen telling me to run the hard disc drive test. Did this and got the 303 and 305 error messages. The restore to default setting worked however after doing research in the error codes I realise I'm up for a new hard disc drive.
    My laptop is  a HP Pavilion dvd6-3203TU with WIndows 7 Home Premium installed. It currently has a 320GB TOSHIBA MK3265GSXX hard disc drive in it.
    After reading through the forums I'm happy to find that my Recovery Discs will reinstall everything to a new hard drive and partition it into a C: drive and also the recovery partition. The main question I have is does my new hard drive have to be 320GB in size like the original or can I buy something like a 500GB+ drive for the laptop. If I have to replace the hard drive I may as will increase the size while at it, if possible that is.
    Also does it have to be a Toshiba or can I buy a different brand?
    Looking forward to some help in regards to this so thank you in advance also
    This question was solved.
    View Solution.

    Hi,
    Your notebook is listed as coming with a 320Gb Hard Drive, but you can just as easily install a 500Gb or 750Gb HDD if you want more space - the drives on the following links are examples that would be fine for your notebook - you're in no way restricted to a particular manufacturer.
    500Gb Hard Drive
    750Gb Hard Drive.
    The procedure to replace the Hard Drive starts on Page 65 of your Maintenance & Service Guide.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • HP Pavilion Laptop: Unable to open files, error message and "Recovery" drive appeared

    My fairly new HP Pavilion AR5B1425 laptop suddenly displays a big red x and an error message "documents.library-ms (or whatever file I'm trying to access) is no longer working" and is displaying a "recovery" drive listed as "D."  My kids were using my computer, and hubby thinks they inadvertently reset my hard drive or something.  Any ideas?

    Hey reedmiarecki,
    Welcome to the HP Support Forums!
    With the error message that you are getting, your only option would be to do a factory reset of your computer. If you do need assistance on how to complete a factory reset of your computer, please provide me with the full model number. This will allow me to provide you with specific steps. If you need assistance in finding the model number, please take a look at the following document Guide to finding your product number.
    Good Luck!
    I worked on behalf of HP

  • I have an HP Pavilion zv6000 laptop with which I have used iTunes for years. I downloaded iTunes version 11.1.4.62 and rcvd error msgs (Apple Mobile Device failed to start. Verify sufficient privileges to start system svc. Then a MSVCR80.dll not found.???

    I have an HP Pavilion zv6000 laptop with which I have used iTunes for years. I downloaded iTunes version 11.1.4.62 and rcvd error msgs (Apple Mobile Device failed to start. Verify sufficient privileges to start system svc. Then a MSVCR80.dll not found.???

    Hello Don,
    Thank you for the details of the issue you are experiencing with iTunes.  I suggest removing iTunes and all related components and reinstalling iTunes for the issue you described.  The following article has steps to do this(it is important to remove all components in the order listed):
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    I recommend continuing with these articles if you continue to experience issues with iTunes:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Pavilion dv7t-4100 CTO Select Edition Entertainment Notebook PC hard disk failure imminent.

    Lately this laptop has been running slow and hot. Just yesterday,  I recieved an error message on my laptop (HP Pavilion dv7t-4100 CTO), saying "SMART Hard Disk Error" followed by a message telling me that the SMART hard disk check has detected an imminent failure. It told me to backup my files and then press F2 and run a hard disk test. The Quick Test Passed. The complete test gave this error.:"Hard Disk reporting failure 301 Disk Name: Toshiba MK7559GSXP Volume C:/D:/F:/)". I am sure I will have to replace the hard disk. Right now it is a Toshiba 750GB SATA hard disk drive, 5400 RPM, 2.5 inch small form factor (SFF). Can this hard drive be replaced with a Hybrid SSHD like the following:
    Seagate Hybrid Drives ST1000LM014 1TB MLC/8GB 64MB Cache SATA 6.0Gb/s NCQ 2.5" Laptop SSHD 
    or
    TOSHIBA Hybrid Drives MQ01ABD100H 1TB+8GB(NAND Flash) 32MB Cache SATA 6.0Gb/s 2.5" Laptop SSHD
    If not, what would be the best replacement hard drive that you reccommend?

    Hi,
    You can put the second HDD on the second bay, existing BIOS can handle this BUT you need more hardware namely a caddy set (caddy & cables). You can buy from:
        http://www.newmodeus.com/shop/index.php?main_page=product_info&products_id=345
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HP Pavilion dv7t-4100 CTO Entertainment Notebook PC Hard Drive Replacement

    Hello,
    I have HP Pavilion dv7t-4100 CTO Entertainment Notebook PC and I had had hard drive issues from within warranty period. i.e. I purchase in 2010 and had a hard drive replaced in 2011 and again in 2012. Next time it failed in 2013 (almost 11 months apart on an average).
    Last time when it failed, the warranty had expired so I thought of giving it a few try e.g. running thru bad sector fixing/writing-off softwares from seagate, Toshiba....this got me out of Smart Drive Error.
    I have been using the HDD for sometime now but want to be prepared for the next round and I'm sure it'll be gone for good the next time.
    Current HDD is 640GB, 7200 RPM Hardrive (replaced in 2012). HP Part# 621046-001.
    When replacing, can I use ANY 640GB hard drive? Can I use a hard drive that is larger than 640 GB? Different RPM?
    Any suggestions about hard drive?
    The recovery discs I had received with the replacement drive did not work correctly. I had to use the first set I had created right after I purchased the laptop. 
    Thank you.
    --Pratik Patel
    This question was solved.
    View Solution.

    Hi Pratik Patel
    According to product manual:
    Your system supports SATA 9.5mm or 12.5mm , 2.5" HDDs
    supports upto 2 hard drives
    supports SSD too.
    Single hard drive configurations supported:
    250GB, 320GB, 500GB @7200RPM @9.5mm
    640GB @5400RPM @9.5mm
    750GB, 1TB @5400RPM @12.5mm
    160GB SSD
    If you want dual hard drive configurations, please click following link (user manual):
    http://h10032.www1.hp.com/ctg/Manual/c02666747.pdf
    But, there is not hard fast rules that only 5400rpm can be used instead of 7200rpm, which was used to replace your earlier hdd.
    hope this has helped you.
    thanks
    Visruth
    **CLICK 'ACCEPT AS SOLUTION' TO HELP OTHERS WITH SAME PROBLEM**
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

Maybe you are looking for

  • Problem with return table(adding extra record)

    Hi,gurus,   I am facing a probelm with return table, i.e it is adding body record and workarea record also to the data target. so, it is adding the actual record to data target including the workarea record to with the key figure and year values as z

  • NW2004s Sneak Preview Java install never starts up

    I've installed NW2004s Sneak Preview Java on Windows XP Media Centre Edition with 2Gb RAM and 8Gb swapfile but the server never finished starting up properly. I've tried with JSDK 1.4.2_09, _11, _12 and with the recommended Sun JDK parameters but alw

  • WEBI Database ranking problem

    Hi, I have a problem with Add Database ranking feature in query filter in WEBI rich client. I have 100 products and would like to pull only top 10 products onto my report based on number of sales (measure). I am using SQL server 2008. But when I use

  • Reflections Under a Moving Graphic

    Greetings, Can someone help me? I need to make a reflection under a moving graphic in AE CS4. I see it all the time but it has me stumped. I have a graphic that will start at an angle on the right side , come to the center as it gets larger and then

  • Brand New Satelite c55 b5353 wont boot Windows 8.1

    hello guys, im a little bit in shambles at the moment due to this problem i have, yesterday im on facebook, browzing my page and put the laptop to sleep mode to move to another room and when i turned it back on it froze on me, i waited for an hour be