Blank Error box wont go away!

I have been working on this project for 3+ Hours and forgot to save and right as i was about to render it this blank error box appeared and there is no option do anything and i cant click out of it so that means i cant save the project! Please help!
Here is what it looks like: Gyazo - da0112b6c7e16fd5082f8d805a61b657.png
If anyone knows how to fix this PLEASE respond!

Nobody can say anything without some system info, details about the project or even knowing what exact version of AE. Presumably you dialed in an invalid/ excessive value in some effect and you will need to fix that. Enable capslock and try to get rid of the warning, then disable your effects.
Mylenium

Similar Messages

  • Open PDF in browser causes blank error box (Windows 7)

    I just freshly installed Windows 7 today. I then installed Adobe Design Premium CS4, including Adobe Acrobat Pro. I use IE8 and Firefox 3.6.
    FYI, this problem does not occur in Windows Vista or lower...only Windows 7.
    The problem is that when I click on links to PDF documents that open in a browser window, a blank error message box will sometimes popup and nothing else happens (see blank error box below). But other times when I click on the same PDF, it will open just fine. I tried opening it four times in a row, and it worked 3/4 times. Then, I did it four times again, and it only worked 1/4 that time. Totally random.
    So I tried clearing the browser cache - no luck.
    Tried reinstalling Adobe Reader 9.3 - no luck.
    Tried uninstalling Adobe.com and Adobe AIR - no luck.
    Tried both IE8 and Firefox - both randomly showed the blank error box.
    The PDF documents are being rendered through PHP, so I also tried changing the PHP header(), but the same blank error box kept randomly showing up.
    What in the world is going on here?

    Guys,
    There is a simple workaround for this. Just DON'T "Display PDF in a Browser". At first I was going to have all the users in my company Right-Mouse Click and Save PDF to their Desktop. But then realized it's just simpler to have the PDF open in the Reader and it gets around the problem fine. This is a great workaround until the whole Windows 7/IE8/Adobe PDF situation mature a bit.
    In case you forgot the instructions from John, here's how:
    Open Adobe Reader or Adobe Acrobat (Pro):
    -> select the menu "Edit"
    -> select "Preferences"
    -> select the Category "Internet"
    -> UNCHECK the "Display PDF in browser"
    This worked for our company. Hope it works for you.
    - Greg H.

  • When opening tools on adobe reader, blank error box appears

    When opening tools on adobe reader with my laptop, a blank error box appears
    After clicking ok everything seems to work
    I have tried rebooting, uninstalling, rebooting, reinstalling, rebooting....still shows up. I have another laptop that has the same adobe version and when I open tools in adobe reader on that laptop it works fine,
    Does anyone have a solution (other than NOT to use tools)???

    bump...

  • ITunes empty error box, wont launch.

    iTunes wont launch and I get an empty error box, there's nothing in it except 'ok'. I am able to play songs from the iTunes folder but only choosing  quicktime player, if I choose iTunes the same empty box pops up, same result when I plug my iPod. The iTunes menu bar is also empty, showing only the word 'iTunes'.
    Any suggestions?
    MacBookPro
    OS X 10.6.8
    iTunes
    11.0.1

    Yes, I took it to the Apple Store's Genius Bar and they reinstalled iTunes. I never did this on my own since I couldn't find a clear answer online (should I uninstall first? save music folder on desktop?, etc), but all the guy did was re-install iTunes from the Apple website and that took care of it, it was rather easy.

  • JOption box wont go away

    I read input from aninputdialog box inside a loop which is in a constructor for a simple graphical clock face program
    the clock is displayed in the applet, but the dialog box doesn't go away, therre is no main method for an applet, so where do i put the system.exit() or whatever so that the boxes dissappear??
    also
    is this sort of topic too newbie for this site??

    I cant really shorten it much and i understand if Its too much to help with
    thanks
    <applet code="ClockApplet.class" width="1000" height="1000" ></applet>
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JApplet;
      Draws a clock
    public class ClockApplet extends JApplet
         public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D) g;
              Clock clockFace = new Clock(150, 150, 400);
              clockFace.draw(g2);
          a clock face with a minute and an hour hand
         Time is specified by the user
    import javax.swing.JOptionPane;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Line2D;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.geom.Point2D;
    public class Clock
         private double xLeft;
         private double yTop;
         private double size;
         private double hr;
         private double min;
              constructs a clock face starting at coordinate(x, y)
              and with a given size(diameter)
              @param the x coordinate of the starting point of the circle
              @param the y coordinate of the starting point of the circle
              @param the diameter of circle
         public Clock(double x, double y, double size)
              boolean validTime = false;
              xLeft = x;
              yTop = y;
              this.size = size;
              while(!validTime)
                   validTime = true;
                   String input = JOptionPane.showInputDialog("enter the time ie.(5:30) : ");
                   if(input.length() != 5 && input.length() !=4)
                        validTime = false;
                   if(validTime)
                        //checks to see if there is a colon in the right place
                        String colonString = input.substring(input.length() - 3, input.length() - 2);
                        if((colonString.equals(":") == false))
                             validTime = false;
                   if(validTime)
                        String[] time = input.split(":");
                        hr = Double.parseDouble(time[0]);
                        min = Double.parseDouble(time[1]);
                        if(min >= 60 || min < 0 || hr > 12 || hr < 1)
                             validTime = false;
                   if(!validTime)
                        JOptionPane.showMessageDialog(null, "Invalid time", "ATTENTION",
                                                      JOptionPane.INFORMATION_MESSAGE);
              draws the clock face with an hour and a minute hand
              @param Graphics2D g2
         public void draw(Graphics2D g2)
              Ellipse2D.Double circle = new Ellipse2D.Double(xLeft, yTop, size, size);
              Point2D.Double p1 = new Point2D.Double((xLeft+ size/2), (yTop + size/2));
              Line2D.Double hourHand = new Line2D.Double(p1, getHourHandCoordinate(p1));
              Line2D.Double minuteHand = new Line2D.Double(p1, getMinuteHandCoordinate(p1));
              g2.draw(circle);
              g2.draw(hourHand);
              g2.draw(minuteHand);
              returns the end point of the hour hand
              @param Point2D.Double the middle of the clock face
              @return Point2D.Double end point of the hour hand line
         public Point2D.Double getHourHandCoordinate(Point2D.Double p1)
              //centre coordinates of the clock face
              double xCentre = p1.getX();
              double yCentre = p1.getY();
              //here i make the fraction smaller so that the end points will be closer to the centre
              double smallerSize = size/2;
              //amount x, and y axies change with each minute difference
              final double INCREMENT = smallerSize/30.0;
              //fraction of an hour more that the hand needs to move
              //amount x, and y axis change with each second difference
              double fraction;
              if(min!=0)
                   fraction = min/60;
              else fraction = 0;
              //x and y of the end point of the hour hand
              double x = 0, y = 0;
              //calculates end point depending on the hour entered and the minute entered
              if(hr <= 3)
                   x = xCentre + 5 * (hr + fraction) * INCREMENT;
                   y = yCentre - 5 * (3 - hr - fraction) * INCREMENT;
              else if(hr <= 6)
                   x = xCentre + 5 * ( 6 - hr - fraction) * INCREMENT;
                   y = yCentre + 5 * (hr - 3 + fraction) * INCREMENT;
              else if(hr <=9)
                   x = xCentre - 5 * (hr - 6 - fraction) * INCREMENT;
                   y = yCentre + 5 * (9 - hr - fraction) * INCREMENT;
              else if(hr < 12)
                   x = xCentre - 5 * (12 - hr + fraction) * INCREMENT;
                   y = yCentre - 5 * (hr - 9 - fraction) * INCREMENT;
              else
                   x = xCentre + 5*fraction * INCREMENT;
                   y = yCentre - 5*( 2 + 1 - fraction) * INCREMENT;
              //creates a point object and returns it
              Point2D.Double p2 = new Point2D.Double(x, y);
              return p2;
              returns the end point of the minute hand
              @param Point2D.Double centre of clock face
              @return Point2D.Double end point of the minute hand line
         public Point2D.Double getMinuteHandCoordinate(Point2D.Double p1)
              //amount x, and y axis change with each second difference
              final double INCREMENT = size/30.0;
              //centre coordinates of the clock face
              double xCentre = p1.getX();
              double yCentre = p1.getY();
              double x = 0, y = 0;
              //calculates the end point depending on how many minutes were entered
              if(min <= 15)
                   x = xCentre + min*INCREMENT;
                   y = yCentre - (15 - min)*INCREMENT;
              else if(min <= 30)
                   x = xCentre + (30 - min)*INCREMENT;
                   y = yCentre + (min - 15)*INCREMENT;
              else if(min <= 45)
                   x = xCentre - (min - 30)*INCREMENT;
                   y = yCentre + (45 - min)*INCREMENT;
              else
                   x = xCentre - (60 - min)*INCREMENT;
                   y = yCentre - (min - 45)*INCREMENT;
              //creates a point object, and returns it
              Point2D.Double p3 = new  Point2D.Double(x, y);
              return p3;
    }Edited by: rubiconTwist on May 27, 2008 4:34 AM

  • Error 3914 wont go away?!

    HHelp please! some info: ios: 8.1.3 windows 7 iTunes Latest and yah, Help! Ive tried all soloutions for error 3194 But None works! Ive tried to use diffrent pc's HELP!

    Ps! If you need more Info, ask for it

  • Print dialog box wont go away...

    Weird print stuff? Every time I print the print dialog box stays on the screen?
    It can be moved but none of the buttons do anything. And the print boxes will stack up as many times as you print.
    Driver issue? since OS X 10.6?

    HI,
    If the printer icon is still in the Dock, click that icon, then click: Quit.
    if that doesnt work, open Activity Monitor (Applications/Utilities). Select My Processes from the pop up menu on the right. Search for your printer under Process Name, then click the red Quit Process button.
    If that doesn't help, go to...
    ~/Library/Preferences and locate the preference file associated with your printer, it will read something like this. Preference files can become corrupted. The next time you print, your Mac will create a new print pref file for you.
    com.nameofprinter.plist (I assume they're HP's according to your prior posts).
    Move that file to the Trash and restart your Mac.
    Carolyn
    Message was edited by: Carolyn Samit

  • When opening a PDF it randomly comes back with blank error box, any reason for that?

    Can anyone tell me if there is a fix for this?

    Hi Sukrit,
    I am currently using version Acrobat 9 Pro and this happens with all PDF's. A screen shot is attached. Thanks for replying!!

  • Error Box when Opening PDF in Browser

    Ever since I installed CS4 Web Premium on my new Windows 7 32 bit install when I try to open a PDF in the browser it opens a Blank Error Box (like a javascript alert box, but with nothing it).  When I close the box I just get a white page.  If I hit refresh the PDF opens fine.  If I try and hit the URL directly again, the problem is back.  The same happens in all my browsers:  IE8, Latest FF and Chrome.  I can download and open PDFs just fine, but trying to open them in a browser window always does the same no matter what site I am on.
    Perhaps related, but possibly not ... I also have similar behavior from Flash.  Some sites with Flash elements on the screen give me what appear to be debug messages.  I have seen this happen in all browsers, but it doesn't happen with all flash, just some.
    I checked my add/remove programs and all I have installed is:
    Adobe Air
    Adobe Creative Suite 4 Web Premium
    Adobe Flash Player 10 AciveX
    Adobe Flash Player 10 Plugin
    Adobe Media Player
    Any idea what might be going on with this?  It is getting really annoying.

    Sideo21, you said "...C:Program Files (x86)\Adobe\Reader10.0\Reader\AcroRd32.exe", but there is no option to change it."
    I had tried the other steps but didn't work for me. However, here's what worked for me.
    Like you, I also have Adobe X V10.1.2 (on Windows 7 64-bit), and the path is showing 10.0 and there is no option to change it. (I think this should be edit-able). My path in Adobe preferences was missing the \Reader directory, so I copied the AcroRd32.exe from the actual Reader\ directory and pasted it into the \Reader10.0 directory so that the path matches. Now, when I open a PDF doc from Chrome V16, the PDF document opens up fine and there are no error messages.
    Thanks for the hint Sideo21.

  • Ebilling error wont go away

    For some reason the register for ebilling wont go away, I am already registered for it and its coming up with the following error: Sorry we can't find any My BT accounts with that username that need to be activated
    I've been having so many problems and its all getting too much now. 
    I've sent an email in detailing everything, I just hope someone can fix this as someone else using my email address etc to get service is not right, true? 
    Anyway if you can let me know what I can do re the error. Thanks 

    When I sign in to BT.com it comes up telling me to activate ebilling... I've been on ebilling for months & months, when I click on "activate" it comes up with the following error and wont let me get rid of the activation screen...
    So I cant see Bills/Paymens, Broadband usage, nothing at all. I just keeps saying to activate ebilling..
    BT are confused as well as the email address I am entering is my registered email address, its showing me logged in to my account but I cant see beyond the error screen telling me to activate ebilling. 
    I'm waiting on it being looked into by technicians. 

  • Itunes wont open, just comes up with a micrisoft error box

    Itunes or quick time does not start. It just says "itunes has encounterd a proble and needs to close. We are sorry for the inconvenience. It than asks if i whant to send an error report. Please help I have tried re-installing it 3 times and do not know what to do!!!

    i have the same problem
    i recently updated itunes when it prompted me....it was working fine until after the update
    now it just flashes on the screen for all of a second when i try to open it, then disappears and that error box comes up
    i did the repair several times, then deleted it completely and reinstalled it, but i still get the same message
    is there anyone from apple we can contact about this?? i've been without itunes for about a week now

  • ICal problem--an error box comes up an won't go away. I can't close the error box and I can't activate the calendar because the error box needs to be cleared. There is no place on the box to click in order to close it.

    I have a problem that just affects iCal. An error box popped up when I was trying to past something into a new appointment. The box blocks me from using the calendar. I can't clear the error box. It has nowhere to click to close it. Nothing happpens when I right click it. I have force closed iCal, but when it reopens the error box is still there blocking any use of the calendar. There is no error number, just a copy of the text I was trying to paste.

    Try this.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I cant seem to get rid of an available download that do not want. I delete it but it wont go away and it is causeing my os update to error. This fast and furious dwnld is making me furious fast! lol

    Unwanted download wont go away.

    I was hoping to get around that. Takes 3 hrs. yuck! But thanks. Thats what I'll do then.

  • IPhoto v8.1.1 wont print to Epson SX515W - Blank Error Message

    Before the most recent update, it used to completely crash iPhoto when printing to the Epson printer but now it doesnt crash but I get a blank error message and the print just seems to be a screen capture rather than what I was trying to print.
    Anybody else seeing this?

    Before the most recent update, it used to completely crash iPhoto when printing to the Epson printer but now it doesnt crash but I get a blank error message and the print just seems to be a screen capture rather than what I was trying to print.
    Anybody else seeing this?

  • Acrobat xi - RE: Add sound icon- skin displayed is a 'blank white box' until it is clicked to activate it- can you lock skin to display before its activated so that in a print run the skin shows up (ie the controls-or any kind of greyed out rectangle, lik

    Hi,
    Acrobat xi - RE: Add sound icon- skin displayed is a 'blank white box' until it is clicked to activate it- can you lock skin to display before its activated so that in a print run the skin shows up (ie the controls-or any kind of greyed out rectangle, like video controls before 1st activation) and not the blank white box- if no, I guess I have to activate all sound icons before doing a print run?thanks)).

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

Maybe you are looking for