Frozen warning located at upper left corner of pages app which says "There aren't any warnings for this document".

Frozen warning located at upper left corner of pages app which says "There aren't any warnings for this document". Cannot seem to be able to close this window. It interferes with my ability to use pages, as it always remains in front of all documents I am working on. Any suggestions on how to remove this frozen warning?

Usually it is not frozen as such it is just waiting for you to click on OK somewhere.
Check if there isn't a button or window somewhere or whether Enter will clear it.
Peter

Similar Messages

  • How to set zero point at upper left corner of page

    In my document, I have tried to use the "Units & Increments" preference settings to make the upper left corner of my pages be the zero point for the x and y coordinates. But, if I draw a box on the page then type in the coordinates as zero, the center of the box will align with the upper left corner of the page. I need for the upper left corner of the box to align with the upper left corner of the page. Does anyone know how to fix this problem?

    You can also find information on this in the InDesign help.
    Launch the help file. Search for:
    Setting the point of origin for transformations
    or
    To transform an object
    hth
    -mt

  • How do I remove in the upper left corner the Firefox logo which is followed by text describing the web page. Want to declutter the screen and gain space.

    Right above the Menu tool bar, (File,Edit,View, History,etc.), in the upper left hand corner is the Firefox logo followed by text..as I'm typing this, it reads "Ask a Question|Mozilla Support-
    Mozilla Firefox". Since I already use the Navigation tool bar, find this information redundant and most important want to regain some real estate on my small screen by removing it if possible. Thanks.

    See also:
    *Personal Titlebar: https://addons.mozilla.org/en-US/firefox/addon/personal-titlebar/

  • Application windows snap to upper left corner and stick there

    Since I upgraded to Mavericks I've had an intermittent problem with application windows. If I shrink a window down to the dock sometimes when I being it back to the desktop it goes up to the upper left corner of the screen and sticks there. I can drag it away but when I let it go it snaps back to the corner. I have to close the application and reopen it to get it back to normal.
    So far it has only happened with TextEdit and Google Chrome and it only has happened 6 or 7 times in two weeks but since it makes the window unusable I have lost work when it happens.
    Has anyone else seen this and is there a fix?

    Found this:
    http://apple.stackexchange.com/questions/107327/windows-get-stuck-in-top-left-co rner-after-upgrading-to-mavericks

  • My location services screen has a haze over it which prevents me from making any changes.

    MY location services screen has a haze over it which prevents me from using any of the slide switches, any suggestions?

    Quit the Settings app completely and reboot the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot 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 if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How to display a frame at the upper left corner of each screen?

    hi,
    below are 2 ways to display a frame at the upper left corner of each screen (i have 2 monitors).
    both work but the 2nd way is much slower. which, if any, of the 2 approaches is "more" correct?
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.DisplayMode;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.GraphicsConfiguration;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    // the thing that matters in here is setting the frame's location: xCoord
    // is incremented in each iteration by the current screen's width and
    // is used to set the frame's x-coordinate.
    public static void main(String args[])
          GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
          GraphicsDevice[]    gDevices = gEnviron.getScreenDevices();
          Color colors[] = {Color.blue, Color.red};
          for(int i = 0, xCoord = 0; i < gDevices.length; i++)
             // set panel's size and frame's size to take up the whole screen
             DisplayMode didsplayMode = gDevices.getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame.
    frame.setLocation(xCoord, 0);
    xCoord += screenWidth;
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    // this is a lot slower and may not be correct: it sets the frame's location by calling
    // getConfigurations() on each screen device but using only the 1st configuration
    // (it returns 6 on my computer) to get the bounds (for the frame's x-coord).
    // a screen device has 1 or more configuration objects but do all the objects
    // of the device report the same bounds? if the anwser is yes, then the code
    // is correct, but i'm not sure.
    public static void main1(String args[])
    GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gDevices = gEnviron.getScreenDevices();
    Color colors[] = {Color.blue, Color.red};
    for(int i = 0; i < gDevices.length; i++)
    // set panel's size and frame's size to take up the whole screen
    DisplayMode didsplayMode = gDevices[i].getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame: getConfigurations() is very time consuming
    GraphicsConfiguration[] gConfig = gDevices[i].getConfigurations();
    // on my computer: gConfig.length == 6. using the 1st from each set of configs
    Rectangle gConfigBounds = gConfig[0].getBounds();
    frame.setLocation(gConfigBounds.x, gConfigBounds.y);
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Darryl.Burke wrote:
    Blocked one abusive post.
    @flounder
    Please watch your language.
    dbDude - I just looked at your profile. WTF are you doing in India??

  • When youtube is not my active tab, the video plays in the upper left corner of my screen.

    When I attempt to view a video on youtube, it takes several seconds to buffer. Leaving the video to run in the background I navigate to other tabs I have open and while the video buffers, nothing happens. When the video actually starts to play in the tab in the background, the video begins to play in the upper corner of my screen. The video does not to appear to be distorted at all, it's simply shifted from its location in the background tab to the upper left corner of my screen.

    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * New Old Menu: https://addons.mozilla.org/firefox/addon/new-old-menu/
    * Personal Menu (Personal Firefox Button): https://addons.mozilla.org/firefox/addon/personal-menu/

  • HT201269 Transferred from iPhone 3GS to 4. Backed up and restored, perfect. New phone is connected to our wireless but is still giving me the "no service" in the upper left corner. Help????

    Transferred from iPhone 3GS to 4. Backed up and restored smoothly. Still getting a "no service" message in the upper left corner of new phone. Help?.....

    Sounds like your iPhone was hacked to unlock and now updating locks back to the original carrier.
    Where did you get the iPhone?

  • How do I get rid of yahoo toolbar and get back my orange firefox button in the upper left corner of screen so I can use my stuff again?

    Yahoo toolbar suddenly imposed itself as my log on screen whenever I booted up my computer and clicked on Firefox. Now I can't get to my bookmarks even though it told me that if I activated the new bookmark system it would transfer my old ones. It didn't happen. The toolbar has no bar for typing in a www.http address. I cannot use it and don't want it. I am using Explorer just so I can access my bookmark address, but don't like Explorer. I want my old Firefox screen back that has the little orange button in the upper left corner of the screen. How can I get there? My computer use has been highly curtailed by this unrequested invasion!

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).<br />
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.<br />
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.<br />
    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    *https://support.mozilla.com/kb/Menu+bar+is+missing
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    *Open the Customize window via "View > Toolbars > Customize"
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • I have these black boxes surrounding things, e.g., there is a black box around the red "close" button on the upper left corner of this page.  There is also an oblong black box

    Hi - I'm not only having trouble waking up my MBP from sleep and having to restart repeatedly which is a pain in itself, but now when it restarted, I have these black boxes surrounding things, e.g., there is a black box around the red "close" button on the upper left corner of this page.  There is also an oblong resizable black box sitting on top of anything.  The content changes depending on the actions I take.  Right now it says, "You are currently on a close button.  To click this button, which closes the current window, press Control-Option-Space."  Right now I'm open in Firefox, but it doesn't matter if only Finder is open, it's still there.  I've tried closing all my applications and restarting and I also reset the PRAM.  It won't go away.  It's probably something simple, but I don't know how to get rid of it.  Any suggestions are welcome.
    Thanks,
    Janet

    Thanks so much.  I saw this on "desktop strangeness" immediately after I posted and tried to retract my question.  It worked perfectly.  I'm not sure how VoiceOver got turned on unless something happened when I was trying to wake up the computer.  I open the lid and it flashes whatever is open and then the screen goes black and I can't wake it up.  Still looking for the resolution to this.

  • I used to have a +.- displayed in upper left corner to click and change text size. My sister used my computer and now I can no longer find this feature.

    I used to have a +.- displayed in upper left corner to click and change text size. My sister used my computer and now I can no longer find this feature

    Do you still have all toolbars visible (View > Toolbars)?
    Did you use an extension or the standard zoom buttons that you can find in the toolbar palette in the View > Toolbars > Customize window ?
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.

  • What's the RIGHT way to draw an image in the upper left corner?

    I have an NSView in a ScrollView and I'm trying to draw an image in it. The problem is that I want the upper left corner of the image locked to the upper left corner of the frame, instead of the lower left corner, which is what the View wants me to do. I will need to be able to zoom in and out, and rotate.
    currently, I have a kludge of a system where I calculate how much I have to translate my image based on the size of the image and the size of the window. In order to do this, I needed to create an extra view outside the scrollview, so that I could get the size of the window, not including decorations. Then I can calculate the size of the view based on the size of the image and the size of the window, and based on THAT, I can figure out where to translate the image to.
    My only other thought was to use the isFlipped: method, but that ends up reversing my image L-R which is bad.
    Is there another way I should be doing this?
    thanks.

    Ah, the problem is that the content view includes the control panel, and while I'm sure I can get access to the control panel, and find out it's size, and then calculate everything off that, it becomes messy, and my way is easier, and no more messy.
    And I never said this was HARD. I have already DONE it. It's just ugly, and I'm wondering if there is a better way to do it. Translating between coordinate systems is normal, but changing lower left to upper left origin is an artifact of the Mac's history with PDF and PS.
    If the way I'm doing it is the accepted normal way, then fine, just tell me that.

  • Where is the Firebox Button in upper left corner of Firefox 5?

    Just downloaded and installed Firefox 5. Don't see the Firefox Button in upper left corner of browser screen, as shown on the New Features page. Does this have to be enabled? My browser says it's up to date, but I can't see much difference in appearance between 4 and 5.

    Right-click a toolbar, untick "menu bar".

  • I am running Windows 7 Professional.  When I try to install Flashplayer, I get to step 3, and then the installation will not proceed any further.  A blank dialog box appears, with Adobe Flash Player Installer in the upper left corner.  I have tried to ins

    I am running Windows 7 Professional.  When I try to install Flashplayer, I get to step 3, and then the installaion will not proceed any further.  A blank dialog box appears, with Adobe Flash Player Installer in the upper left corner.  I have tried to install on Explorer, Firefox, and Chrome.  Nothing works. Please help.
    Thanks/ Scott

    1. Restart your computer to stop any Adobe process that is running.
    2. Click on the following Adobe  link. Go to the bottom where it says "Still having problems?". Click on the version of Flash Player for your browser.
    Installation problems | Flash Player | Windows

  • Illustrator CS 6 won't paste into a text box/paragraph of text, instead pastes a new line of text in the upper left corner of my document. How can I get it to paste into the selected paragraph or highlighted text like normal?

    I've done it a million times, I copy a selection of type...I select the type that I want to replace it with, and then I paste. Now, Illustrator will only paste the text as a "point text" (a single line) somewhere else on the artboard—it seems to always be the upper left corner of the art board.

    peg,
    In cases of sudden appearance of strangenesses, the list may be relevant, hopefully the easy part at the top.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

Maybe you are looking for

  • Error while switching the cube to plan mode.

    Got an error In the process chain plan mode on step Loading transactional cube ZTPM_T02 - switch not possible when i went to that cube and we have yellow request with Requests without Monitor Log: APO Request or Terminated Request Generation. Regards

  • Logical Standby & Primary site Time Diiference

    Hi, I have the one primary site over RAC configuration and one Logical standby Site.We have configured the Logical standby for archived files. We would like to know, how can we compute the time difference between Primary Site and Logical Site ex. IF

  • JCAPS 5.1.3 Can't enable application

    I have a simple eVision application. I've done some changes to it (deleted one page and link from the Page Flow) and tried to redeploy it. But the deployment ended with an exception and the app. couldn't be enabled. [#|2007-11-29T10:24:43.363+0100|IN

  • Premiere Elements file type for Elements Organiser

    I use PSE13 organiser ( for pictures and movies) and editor. I recently purchased Premiere Elements 13 and have just edited my first movie. I would like to only access Premiere Elements via the Photoshop Elements organiser, but I am unsure what file

  • Memory fault error while  converting .fmb to .fmt

    Hi all, When I tried to convert .fmb file to .fmt(text format) file in unix its giving me Memory fault error. Command I am using is f60gen module=INTG_TEST.fmb userid=apps/xxxxxx@DB1 forms_doc=yes batch=yes Where as from form builder I can do it with