Can someone please help me fix this!?!?!?

Ok I pressed a lot of random buttons by accident I ended up with this black screen, can someone help me!

Seriously, readthe help. If you don't know what a layer window is and why it may look black, then you are in over your head....
Getting started with After Effects
Mylenium

Similar Messages

  • My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    You have the Flashback trojan.
    Check out the replies in this thread for what to do;
    https://discussions.apple.com/message/18114958#18114958

  • My husband and I both have iPhones on the same account. When he did his update yesterday, he chose both his number and my number during set up. Now he is getting my messages, too. Can someone please help me fix this?

    My husband and I both have iPhones on the same account. When he did his update yesterday, he chose both his number and my number during set up. Now he is getting my messages, too. Can someone please help me fix this?

    What do you mean he chose his and your number during setup. Chose them for what? Is you number showing up in the Settings>Messages>"You can be reached by imessage at" section? If it is he needs to remove it.
    Cheers,
    GB

  • When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    Same problem here since latest update.  As usual poor support from Apple with no answer or fix for this bug.

  • HT1338 evr since i put a child lock on my Mac its never been the same .. now i cant even open my yahoo mail without it wanting me to reinstall this can someone please help me work this out

    ever since i put a child lock on my Mac its never been the same .. now i cant even open my yahoo mail without it wanting me to reinstall this, can someone please help me work this out

    What "child lock" are you talking about?
    Do you mean you set up a Managed account (Parental Controls), or some other software?
    For Parental Controls, select the account in Users & Groups and uncheck the "Enable parental controls" checkbox.

  • Im trying to download apps from itunes but it cannot push through. It happened after i update my software to ios 6. Can someone please help me resolve this in my ipad? Thanks!

    Hi im trying to download apps in my ipad but it cannot push through and remained waiting. This happened after i updated my software to ios 6. Can someone please help me?

    You may not get a response as you are shouting at everyone.
    All caps indicates shouting, is considered rude, and is difficult to read.
    Many will not read such posts.
    Try turning off you caps lock and asking again.

  • There is a window that pops up saying "the ipod cannot be synced. An unknown error has occured (13019).....someone please help me fix this

    i get an error message when i try to sync my ipod that says it cannot sync because an unknown error has occured and then it gives a number like this "(13019) someone please help me!!!

    @ Jolly and IIIaass
    Nothing like being on the same wave length at the same time.  

  • I am missing all emails two weeks old or older in my mac mail. This happens on a continuous basis. I cannot find them by search or any archived method. Can someone please help me stop this from happening?

    Missing emails of two weeks old and older in mac mail.

    Im really good at programming but really suck at algorithms
    >If your are 'really good' at programming, you will be able to solve this problem. Because, it has nothing to do with algorithm.
    >>can someone please please write in a algorithm form for me , i need it by friday i would greatly be thankful for u
    >Wrong person, in the wrong place.

  • Can someone please help me understand this? About Apple Repairs

    Hello everyone,
    I bought my macbook in Nov. 2009 in USA. I just moved to India and I've noticed the rubber base coming off and the infamous apple hairline crack. When I first took it to the India center, they kept insisting I had to pay for repair, I have a 1 year limited warranty.
    Upon my insisting that they check with Apple USA first, they decided to call them and then asked me to send them pictures. I've sent the pictures, my repairs have been approved.
    Now they tell me that I need to bring in the laptop and they need to run some software test for the crack, then they will submit this test and get the screen in about 4-5 days and then return the mac to me.
    I need to understand this from people that have gone through this sort of repair. Why do they need to do a software test for a hardware issue?
    Even if they have to do this software test, why can't they wait till the screen arrives (as this is the only way they claim to fix the crack) and then do the test all at once in one single day, rather than making me run back and forth with my macbook?
    I also requested for them to forward Apple's response to me, they refused and said its internal.
    I would really appreciate it if someone can please explain this to me, as the logic is just not making sense in my head. Maybe this is the way they do repairs and I'm not aware of them.. don't know..
    Thanks everyone!!

    ok running it through a debugger DID NOT HELP at all, please somebody help me, im very desparate now. i have spent 15 hours on this problem alone. i see absolutley nothing wrong with my code and have tried about 10 doifferent ways of trying this.,....i cannot get it to work, somebody please help me, ...in addition i was hoping someone could clear up an issue i have with enums...i do not understand how i can access the variable of the enum, the only access to it my text book provides is how to acess the string associated with enums....but i need to access the variable itself...how would i design such a get method....ive tried that a bunch of different ways as well, and right now im so lost that i want to cry, somebody please help, im begging on my knees...i really need someone to explain this to me....

  • Can someone please help me understand this

    I am a new poster here and was hoping someone might be able to help me...
    I am writing a program that is supposed to generate a non applet (IE text) version of a 4-way intersection....however i have run into a problem that i simply cannot see a solution....please tell me why this code does not do what it is supposed to:
    in i meant to call the car arrives method which is supposed to enqueue based on some randomly determined parameters, known as direction and bound....it is supposed to loop through and do that for every car created.. what i think is happnening is that everything is getting overwritten rather than enqueued...what i dont understand is why...the reason i believe that nothing is enqueuing is because later in the code i attempt to dequeue these queues and and set a paramter and i get a null pointer exception
    PLEASE NOTE I RECIEVED THESE ERRORS BEFORE INSTANTIATING THE VEHICLE CURRENT CAR AS NULL...perhaps it is an instantiation problem but i cannot tell...please help me out as I have worked on this forthe last few days and am desparate for an answer
    Vehicle CurrentCar = null;
         do
              //this ensures that the number of vehicles generated is within the spec guidelines
              if (j == 1)//might need to be changed
                   numCars = generator.nextInt(7) + 4;
              else if ((j%2) == 0)
                   numCars = generator.nextInt(6) + 10;
              else if ((j>1)&&( (j%2) !=0))
                   numCars = generator.nextInt(4) + 10;
              totalCars += numCars;
              System.out.println("j is " + j);
              System.out.println( numCars);
              System.out.println(totalCars);
              //this ensures the number of vehicles never goes over 100
                   if (totalCars>100)
                        int subCars = (totalCars - 100); //ensures that car total never goes above 100
                        numCars = numCars - subCars;
                   //calls the MakeMeaCar method which contains the vehicle constructor
                   for (int k=1;k <= numCars; k++)
                   CurrentCar = MakeMeACar(count);
                   count ++;
                   Street.CarArrives(CurrentCar);
                   CurrentCar.toString();
    HERE IS THE CAR ARRIVES METHOD
    public static void CarArrives (Vehicle CurrentCar)
    //These if-else statements evaluate the enum parameters from the vehicle class and assigns them to a queue based on those parameters
    if (CurrentCar.getDirection() == Directenum.s)
         if ((CurrentCar.getBound() == Boundenum.nB) || (CurrentCar.getBound() == Boundenum.wB))
              lfstrChurchNorthbound.enqueue(CurrentCar);
         else if (CurrentCar.getBound() == Boundenum.eB)
              rChurchNorthbound.enqueue(CurrentCar);
    else if (CurrentCar.getDirection() == Directenum.n)
         if ((CurrentCar.getBound() == Boundenum.sB) || (CurrentCar.getBound() == Boundenum.eB))
              lfstrChurchSouthbound.enqueue(CurrentCar);
         else if (CurrentCar.getBound() == Boundenum.wB)
              rChurchSouthbound.enqueue(CurrentCar);
    else if (CurrentCar.getDirection() == Directenum.e)
         if ((CurrentCar.getBound() == Boundenum.wB) || (CurrentCar.getBound() == Boundenum.sB))
              lfstrMainEastbound.enqueue(CurrentCar);
         else if (CurrentCar.getBound() == Boundenum.nB)
              rMainEastbound.enqueue(CurrentCar);
    else if (CurrentCar.getDirection() == Directenum.w)
         if ((CurrentCar.getBound() == Boundenum.eB) || (CurrentCar.getBound() == Boundenum.nB))
              lfstrMainWestbound.enqueue(CurrentCar);
         else if (CurrentCar.getBound() == Boundenum.sB)
              rMainWestbound.enqueue(CurrentCar);
    if you need more code to help please let me know...i would post it all but it about 8 pages or more total (inlcuding the various classes)
    thanks
    I appreciate all help given

    ok running it through a debugger DID NOT HELP at all, please somebody help me, im very desparate now. i have spent 15 hours on this problem alone. i see absolutley nothing wrong with my code and have tried about 10 doifferent ways of trying this.,....i cannot get it to work, somebody please help me, ...in addition i was hoping someone could clear up an issue i have with enums...i do not understand how i can access the variable of the enum, the only access to it my text book provides is how to acess the string associated with enums....but i need to access the variable itself...how would i design such a get method....ive tried that a bunch of different ways as well, and right now im so lost that i want to cry, somebody please help, im begging on my knees...i really need someone to explain this to me....

  • Can someone please help me with this. Loading problems and error codes.

    I have several problems with itunes on my PC. I use 2 PC's and Iphone for work and I have an IPod nano. For about a week I have been having several problems with Itunes. The first problem is I cannot access the store, I get the loading screen and that is it. This screen lasts forever, nothing ever happens it just loads, and loads, and loads. . . .
    I try to sign in thinking that will help the loading issue and I get error message saying "We could not complete your itunes store request. An unknown error occurred (-50)." This happens on both computers. I also cannot download from my iphone, I get the same error message. Running diagnostics does nothing, itunes says everything is in working order. Uninstalling and reinstalling also does nothing. I have had itunes for years now and up until about 10 days ago had no problems. My itunes is not behind a firewall on either computer. I'm saying all of this because I would prefer not to get obvious answers or links that do not help me. Please someone has to know how to fix this.

    Welcome to discussions! This is the rather infamous chkdsk error which will require that you restore your iPod. The following link will give you a complete explanation/instructions.
    http://docs.info.apple.com/article.html?artnum=300554

  • Can someone please help me in this...

    Hi guys,
    I am trying to find out how many times the formula in the formula node can ececute in 1 sec. The file is as attached. The result that I got is very low (about 1200000 times/sec) and I have been figuring out why. I did not use any express functions.
     I am expecting to get about 4000000 to 8000000 times per sec. My OS is about 1.73GHz
    This problem I preventing me from proceeding to the other part of my project. Please help.
    Thanks.
    Zhi Hong
    Attachments:
    Sweep rate and Span check using tick count to determine no. of samples per sec1.vi ‏32 KB

    smercurio_fc wrote:
    I think this might actually be the original.
    Please keep the discussion to one thread so people don't give you the same answers or ask the same questions.
    You're right!  That was the thread I was looking for because I replied into.  I did a search on the user's post to refind it and came up with the wrong one.  It didn't occur to me there was a third thread that had almost the same title as the one I was looking for.

  • Can someone please help me make this Navigation bar in Javascript please

    Hi I love this Navigation bar :   http://en.wordpress.com  I have struggled trying to find tutorials or anything just to try and make it, If someone could make it, I would LOVE IT! I am finding it way to hard just to find help. So please could someone kindly help me out.   Thank you so much!

    What exactly is it you like about that element? It's not really a navigation element, it's just a single link in a <header> tag -
    <header class="wpcom-header" role="banner">
                        <div>
                                  <h1 class="wpcom-title"><a href="//en.wordpress.com/">WordPress.com</a></h1>
                                  <nav id="wpcom-navigation" class="main-navigation" role="navigation">
                                            <h3 class="menu-toggle">Menu</h3>
                                            <div class="menu-main-container">
                                                      <ul id="menu-main" class="nav-menu">
                                                                <li id="nav-signin"><a class="nav-highlight" href="#home-signin">Sign In</a></li>
                                                      </ul>
                                            </div>
                                  </nav>
                        </div>
              </header>
    It's styled with CSS to look the way it does.

  • Can someone please help me fix my ipod??!!!!!

    My ipod 5 has been working perfectly fine all day. but when i got home and tried using it the screen turned pink and has a whole bunch of stripes on it. the screen is also not working. what do i do? or how do i fix it?

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • I'm having an error in Photoshop CS6 where the numbers in boxes (like image size width) are changing on their own. Can someone please help me figure this out?

    This was happening all the time on my old 2006 iMac, and I thought that when I upgraded to a new computer it would go away. No such luck.
    Sometimes the program works just fine, and other times I have this error. I haven't been able to pinpoint what is causing it.
    Basically what happens is, I will try to type a number in the box to edit the size of the image (or sharpness, etc. something that requires you to enter a number), and as soon as my mouse hovers over the box, the numbers start changing on their own. As soon as I move the mouse away, the problem stops, but of course this means that I am unable to type in the number that I want.
    I've tried unplugging my mouse and keyboard - that doesn't change anything.
    Has anyone run into this issue before?
    Btw, I use a 2013 iMac, OS version 10.9.5
    (I have a video clip of this problem, but I don't know how to share it here)

    Your task is hardly a case for Photoshop: replacing text accurately in a scanned, not even
    straightened image.
    My recommendations:
    a) put a crossreference list on each page
       or
    b) straighten the scans and improve the contrast, both by Photoshop.
       Then apply a program which converts images of text into machine coded text
       by OCR - Optical Character Recognition , for instance Abbyy Finereader
       http://finereader.abbyy.de/professional/?adw=google_eu&gclid=CMirrcCMx7MCFZHRzAodlisAJg
       (I'm not related to the manufacturer of this software, I'm just a user).
       In coded text it's easy to replace isolated character groups as required.
    Best regards and good luck --Gernot Hoffmann

Maybe you are looking for

  • Photoshop cs2 won't start

    I am out of town.  I know that I have an old version of photoshop (CS2), but when I return home, I plan to buy a new computer and update photoshop to the latest version. In the meantime, I'm having problems starting photoshop on windows xp.  When I s

  • Photoshop CC layer error

    This problem starting happening last week and still hasn't been fixed. I tried updating my photoshop cc but the problem persists. it doesn't happen when I switch over to Photoshop CS6. If I select a layer in my file and try to move it around the canv

  • Printing checkboxes in SAP script

    Hi, I have a requirement where I need to print checkboxes for all the items displayed in SAP Script output. Is there any way to print checkboxes in the output document? Regards, Rajesh Bhogi

  • Java stack system copy

    Dear Experts, I have recently done few ABAP+java stack system copies using R3load method. Basically i have done Export ABAP and JAVA stack and Imported the same to QAS system using sapinst with SMIGR_CREATE_DDLs kept along with Import. But i am reall

  • Toshiba Satellite Won't start up

    I have a toshiba satellite L655D-S5095 laptop. I bought it from a rent to own store. It came with no discs or a manual. I was online this morning when my PC froze up and stopped responding. A blue box with a message about the bios. I turned it off an