Document windows jump

I just upgraded to Yosemite on my MacBook Pro running a dual monitor setup (MacBook & Cinema Display) and now when I have my document window on the Cinema Display if I do any thing such as select an object etc. the window jumps so its top half is on the lower part of the screen while the bottom half of the window goes off the bottom of the screen. If I move it back up it just jumps back when I try to do something again. Help!

I have the exact same issue CDLeaver, and think this might be a bug, where a retina display laptop is connect to a non-retina second monitor.
What I discovered is that when I move my secondary screen so that it is positioned above the primary macintosh screen, the InDesign document window on the second monitor continuously repositions itself, it continuously jumps when you move it into position and then start working on it.
Once I lined up the tops of both monitors in the System Preferences > Display Preferences, the problem went away.

Similar Messages

  • Scroll the document window to a specified graphic object

    Hi,
    anyone knows  a way to scroll the document window to a specified graphic object?
    I've tried with F_ApiScrollToText() function, but it works only with object containing text, and a graphic object ( like a line) doesn't contain text...
    Thanks in advance.

    Hi Stemen82,
    I have dealt with this in the past and found it to be a bit complex. I've pasted below the functions I came up with to do it. Note that:
    - I'm not sure that it works in all cases. Because there is no direct FDK function to do this, you really have to monkey around with things to get it done.
    - The code I've pasted should handle both anchored frames and graphic objects, including "floating" graphics. Anchored frames are actually a bit more straightforward because you can get the text location of the anchor.
    - All the comments in the code are "notes to self." That is, I didn't write them for you   However, they should be of some use to you.
    - There may be plenty of other, better ways to do this... this is just what I slapped together to get the basic functionality to work.
    Russ
    //THIS IS REALLY ONLY GOOD FOR ONE LEVEL OF NESTING,
    // ie, one graphic in one anchored frame, in a text frame.
    // No testing or implementation for anything else at this point.
    //If you don't know whether the object is a graphic or an anchored
    //frame, you can send it as the graphic ID and the function will
    //figure it out.
    // So, either send a graphic ID as graphicId,
    // a frame ID as graphicId, or both graphic and frame IDs.
    // Don't sent just a frame ID as frameID.
    VoidT ws_SelectAndScrollToGraphic(F_ObjHandleT docId,
                                      F_ObjHandleT graphicId,
                                      F_ObjHandleT frameId)
      F_ObjHandleT aFrameId = 0,
        textFrameId,
        graphicPageId,
        currentPageId,
        tempGraphicId;
      IntT objectType,
        alreadySelected = False;
      F_TextRangeT tr;
      if(!docId || (!graphicId && !frameId)) return;
      //let's get the page. We might need it for scrolling and
      //maybe to switch to the correct page type
      graphicPageId = ws_GetPageForGraphic(docId, graphicId);
      //So far, two possibilities here, either an anchored frame somewhere in the object hierarchy or not.
      //If there is no anchored frame, we have to guess based on pages and paragraps.  If there is one,
      //we can jump to the anchor.
      //let's start by looking for an anchored frame if one was not sent
      if(graphicId && !frameId)
        objectType = F_ApiGetObjectType(docId, graphicId);
        //if we actually got an anchored frame, we will store the ID.
        if(objectType == FO_AFrame)
          aFrameId = graphicId;
        //otherwise, let's look above to see if there is an anchored frame
        else
          aFrameId = F_ApiGetId(docId, graphicId, FP_FrameParent);
          objectType = F_ApiGetObjectType(docId, aFrameId);
          if(objectType != FO_AFrame)
            aFrameId = 0;
      //at this point, if we have an anchored frame, scroll to it
      if(aFrameId)
        //let's switch to the appropriate page type, only if necessary
        //we'll do that by simply switching to the first page of that
        //type in the doc before the scroll action
        currentPageId = F_ApiGetId(FV_SessionId, docId, FP_CurrentPage);
        if(F_ApiGetObjectType(docId, graphicPageId) != F_ApiGetObjectType(docId, currentPageId))
          if(F_ApiGetObjectType(docId, graphicPageId) == FO_MasterPage)
            currentPageId = F_ApiGetId(FV_SessionId, docId, FP_FirstMasterPageInDoc);
          else if(F_ApiGetObjectType(docId, graphicPageId) == FO_RefPage)
            currentPageId = F_ApiGetId(FV_SessionId, docId, FP_FirstRefPageInDoc);
          else
            currentPageId = F_ApiGetId(FV_SessionId, docId, FP_FirstBodyPageInDoc);
          F_ApiSetId(FV_SessionId, docId, FP_CurrentPage, currentPageId);
        tr.beg = tr.end = F_ApiGetTextLoc(docId, aFrameId, FP_TextLoc);
        F_ApiScrollToText(docId, &tr);
      //if no anchored frame (ie, just a floating graphic),
      //let's finangle with some paragraphs and pages and try our
      //best. There might be a better way.
      else
        // We have the page that the graphic is on, let's at least jump
        // to that page, maybe we can get a little closer later
        F_ApiSetId(FV_SessionId, docId, FP_CurrentPage, graphicPageId);
        //get the parent frame of the graphic which is hopefully a text frame
        textFrameId = F_ApiGetId(docId, graphicId, FP_FrameParent);
        //let's see if we can find a paragraph and scroll to it.
        tr.beg.objId = tr.end.objId =
          F_ApiGetId(docId, textFrameId, FP_FirstPgf);
        F_ApiScrollToText(docId, &tr);
      //now, let's do the selection. We'll unselect everything
      //that is selected, unless our graphic is already selected.
      tempGraphicId = F_ApiGetId(FV_SessionId, docId, FP_FirstSelectedGraphicInDoc);
      while(tempGraphicId)
        if(tempGraphicId == graphicId || tempGraphicId == frameId)
          alreadySelected = True;
        else
          F_ApiSetInt(docId, tempGraphicId, FP_GraphicIsSelected, False);
        tempGraphicId = F_ApiGetId(docId, tempGraphicId, FP_NextSelectedGraphicInDoc);
      if(!alreadySelected)
        if(graphicId)
          F_ApiSetInt(docId, graphicId, FP_GraphicIsSelected, True);
        else
          F_ApiSetInt(docId, frameId, FP_GraphicIsSelected, True);
    //Returns the ID of the page that the graphic is on.
    F_ObjHandleT ws_GetPageForGraphic(F_ObjHandleT docId,
                                      F_ObjHandleT graphicId)
      F_ObjHandleT tempGraphicId = 0,
        pageId = 0;
      while(graphicId)
        tempGraphicId = graphicId;
        graphicId = F_ApiGetId(docId, graphicId, FP_FrameParent);
      if(tempGraphicId)
        pageId = F_ApiGetId(docId, tempGraphicId, FP_PageFramePage);
      return pageId;

  • Float/Untab Document Windows

    Is there any way to make it possible to float document windows properly, like you can for every other piece of the software? By that I mean not locked within the parent window of the app. This was the default for dreamweaver for the longest time, then IIRC there was a lawsuit from adobe claiming Macromedia had stolen the idea from the photoshop interface, so Macromedia got rid of it... then adobe bought them and the old, easier to use with multiple screens format hasn't returned, so far as I can tell.
    Does anyone know a way? I know it's not officially supported in dreamweaver* for some reason I can't fathom, but maybe some change in a config file somewhere? And if not.. why on earth isn't it supported?  I want to be able to have two pages open to compare the code without having to jump through hoops.
    *http://help.adobe.com/en_US/dreamweaver/cs/using/WS8599BC5C-3E44-406c-9288-C3B3BBEB5E88.ht ml
    Note: Dreamweaver does not support docking and undocking Document windows. Use the Document window’s Minimize button to create floating windows (Windows), or choose Window > Tile Vertically to create side-by-side Document windows.

    Uncheck Open Documents as Tabs in Preferences > Interface.

  • How do I get more space in a "Documents" window?

    I wonder if someone can help me with this. I recently upgraded from 10.3.9 to 10.4.9. When I open, for example, the "Documents" window and find the page is full with folders/files I place the arrow cursor in the bottom right hand corner and move the window up. I then pull the scroll bar down, place the arrow cursor in the bottom right hand corner and pull the window down. Under 10.3.9 the folders/files would stay where they were and I would get more free space. Under 10.4.9 it doesn't do that; pulling the window down means pulling everything else down as well. So the window remains full with folder/files all the time. Is there a way of changing it as it was under 10.3.9?

    Open the window, hit the end key, and expand the window, via the lower right-hand corner triangle. Works here and always has in Tiger. If that doesn't work on your machine, then I suspect a corrupt preference file. Create a new admin user account, log into, and see if the problem exists there. If not, then it's one of the preference files listed in the new account's /Library/Preferences/ folder that's screwy. Make a list of them, log back into the old account, move the same one's, one at a time, to the Desktop, OPTION-click the Dock's Finder icon, and select Relaunch. Do that until you isolate the one's that are causing the problem. Start with the com.apple.finder.plist.

  • I installed 4.01 and now when I click on a link in the menus or the seach window, the whole firefox browser window jumps

    This happens when I click on most menu links. For example, if I click on Help and select "About Firefox" the entire browser window jumps. The same goes for if I click on the default search box or on the Google Toolbar search box.
    If I click on something out of Firefox, such as my desktop or an open program, it jumps when I click the Firefox tab on my task bar to return to Firefox.
    When I click a shortcut link, such as in bookmarks, it does not do it.

    For those of you who have tried to clear this problem up with virus scans, various malware scanning programs, tdss rootkiller, etc....I have another possibility. I found another thread on this very forum where someone suggested the problem was in the router...specifically, there were manually entered DNS addresses in the router setup. I logged into my router (192.168.1.1) and sure enough, there were DNS addresses loaded and it was setup to use those DNS addresses. I simply clicked on the option to pull the DNS addresses automatically from my ISP, changed the password, and the problem was gone.
    Thanks to cr85tx for the solution!!!
    https://support.mozilla.com/en-US/questions/697011?page=1

  • OpenGL enabled document Windows error message? Please help

    Hi
    When I am trying to use the rotate tools inside photoshop, I get a the NO sign with an error message: "Could Not Complete Your request Because It Only Works with OpenGL Enabled Document Windows". I don't understand why this is happening. I have an OPenGL Graphic card. Qudro K600 and every thing seems okay under the Performance section in the Preferences menu? I would appreciate any help? Thank you.

    I thank you for your respond. Like I mentioned everything seems okay under the Performance section. Photoshop is recognising my Quadro K600 graphic card and all options are checked, and I am getting the above error message. It's annoying as I can't use the Rotate tool inside Photoshop or on my Wacom tablet. I also uninstalled my Graphic card driver and installed the latest driver. I hope someone can resolve this problem for me? Thank you.

  • How to center selected text in document window?

    I'm using Word.select( SelectionOptions.REPLACE_WITH) to iterate through a list of words in a document. It would be handy if any off-screen selections could be automatically scrolled into the document window, as with Find/Change. Is there any way to script this?
    Thanks in advance --
    Steve

    Curiously enough, there doesn't seem to be one specific function for that (which may explain the erratic way InDesign sometimes does this). I can't remember off-hand where I saw this trick, but the following works a treat:
    app.layoutWindows[0].zoomPercentage = app.layoutWindows[0].zoomPercentage;
    -- right after your select line.

  • Text in Document Window DW MX

    I have text that is styled using an external CSS file. The
    display attribute is set to 'none' for this particular text yet it
    is still being displayed in the document window causing problems
    when authoring content. Any suggestions or settings I've
    overlooked??

    Let's see the HTML and the CSS, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cmswbp1234" <[email protected]> wrote in
    message
    news:f8t298$b6u$[email protected]..
    >I have text that is styled using an external CSS file.
    The display
    >attribute is
    > set to 'none' for this particular text yet it is still
    being displayed in
    > the
    > document window causing problems when authoring content.
    Any suggestions
    > or
    > settings I've overlooked??
    >

  • Why is my document window blank after opening a file in Photoshop CS5?

    can someone please help me?
    <<  unnecessarily childish example of a blank document window removed >>

    I don't find your cartoonish expletive language amusing, but I'll help you with your problem.
    You need to visit the web page of the maker of your video card and download/install the latest display driver for your hardware / OS.
    If you're unwilling or unable to do this, you can deconfigure OpenGL Drawing temporarily in your Edit - Preferences - Performance dialog (remembering to restart Photoshop after).  These are the features you'll lose without OpenGL:  http://kb2.adobe.com/cps/405/kb405745.html
    -Noel

  • Drawing directly in the document window

    Can anybody provide sample code showing the basics of drawing directly in the document window? I'm thinking of something along the lines of the measure tool (pardon the pun).
    It looks like I'm supposed to use either the Annotator Suite or the Document View Suite to "invalidate" a rectangle in the document, followed by doing the actual drawing with the ADMDrawer Suite. But the documentation in this area is pretty sparse (for example GetDocumentViewInvalidRect and SetDocumentViewInvalidRect refer to a "fudged" invalid rect without explaining what that is) and I don't see anything in the Sample Code folder that explains this feature.
    Are the little text annotations ("path" "anchor") that pop up when using Smart Guides done using this method?
    Thanks,
    John

    (Sound of crickets chirping...)
    Boy, this forum is awfully dead in comparison to the InDesign SDK forum. Is no one writing Illustrator plug-ins anymore?
    But hey, I'll keep posting, if only for my own amusement, about my saga of writing a plug-in.
    I figured out some of the annotation stuff, but I'm still puzzled by some things.
    I started by simply trying to create a tool which would carry a 100x100 box around with it when moved on the screen -- no clicking or dragging yet -- much as the symbol sprayer, for example, has a nice circle (albeit of varying size) around it. I created the tool and added it as an annotator. When it receives a kSelectorAITrackToolCursor message, it simply captures the cursor location in a global and sets the PlatformCursor. When the tool receives a kCallerAIAnnotation message, I have this code:
    extern AIErr toolAnnotate( AIAnnotatorMessage *message ) {
        AIErr error = kNoErr;
        error = sView->ArtworkPointToViewPoint( message->view, &g->cursorPoint, &g->cursorPointScreen );
        g->annoBoundsScreen.top = g->cursorPointScreen.v - 50;
        g->annoBoundsScreen.bottom = g->cursorPointScreen.v + 50;
        g->annoBoundsScreen.left = g->cursorPointScreen.h - 50;
        g->annoBoundsScreen.right = g->cursorPointScreen.h + 50;
        ADMDrawerRef dr = sADMDrawer->Create(message->port, &g->annoBoundsScreen, kADMPaletteFont);
        ASRect myRect;
        myRect.top = 0;
        myRect.bottom = 100;
        myRect.left = 0;
        myRect.right = 100;
        sADMDrawer->SetDrawMode( dr, kADMXORMode );
        sADMDrawer->SetADMColor( dr, kADMBlackColor );
        sADMDrawer->DrawRect( dr, &myRect );
        sADMDrawer->Destroy( dr );
        sAnnotator->InvalAnnotationRect ( message->view, &g->annoBoundsScreen );
    This (should) convert the cursor location (in artwork coordinates) to screen coordinates, set the annotation boundaries based on this location, create the drawer reference, and draw the 100x100 rectangle within this reference. Finally, it invalidates this rectangle as per the Annotation suite documentation.
    I fired up the tool in Illy 10 and saw a single box created down at the 0, 0 point on the page. No box followed the cursor. Hmm. I added an sADMBasic->Beep() to the annotation code and realized what was happening -- my tool was getting an annotation message when first selected, but none when it was merely moved around the screen.
    After some futzing around I discovered that if I added a call to sView->SetDocumentViewInvalidDocumentRect in the TrackToolCursor code, I got an annotate message every time the mouse was moved! I captured the previous cursor position and invalidated the rectangle 50 points on all sides from it. and tried again. Success -- partially.
    At this point, the cursor could be moved around with the box following it. It suffers, however, from the following bugs:
    1) The SetDocumentViewInvalidDocumentRect is in artwork coordinates and so only works at 100% or greater. If I zoom out, my little box leaves trails all over the screen. In addition, if I zoom in, the cursor stutters noticeably -- I assume because Illustrator is forcing a redraw on large portions of the document. I think I can fix both these bugs by recalculating the SetDocumentViewInvalidDocumentRect into screen coordinates. However I note that the circle of the symbol sprayer can be made huge -- as large as the screen -- and it still moves smoothly. So maybe calling sView->SetDocumentViewInvalidDocumentRect is not the way to force annotations. But I haven't been able to discover another way.
    2) When the mouse moves into a palette, the square remains "hung up" at the last position where the cursor was in the document window. I think I can fix this by utilizing the Suspend and Resume notifiers and doing one last InvalAnnotationRect when I get the Suspend notification.
    3) For fun I tried clicking and dragging. Bad news. If I do this, thereafter the entire Illustrator window only redraws iself in the small rectangle that was set when I created the drawer port. By chance I found that if I use another tool that annotates such as the pencil *before* I use my tool, then everything is fine (although of course the box doesn't follow the cursor around anymore because my toolMouseDrag code is empty). How is using a previous tool "fixing" my code? I don't understand this one at all.
    Anyway, I suppose I could fork over a wad of cash and join the ADN and purchase a support case -- but hey, I'm just a hobbyist messing around at this point and facing some rather crappy documentation. Any tips will be much appreciated.
    John

  • Mixed bag  1.     I have a security app on my computer, Flashbrief.  I have it checked in the hide column but whenever I turn on the computer it appears in the top menu line.  2.     Whenever I turn on the computer, a new blank document window in MS Word

    mixed bag
    1.         I have a security app on my computer, Flashbrief. I have it checked in the hide column but whenever I turn on the computerit appears in the top menu line.
    2.         Whenever Iturn on the computer, a new blank document window in MS Word 2011 appears.  I do not have this listed in the login items.
    3.         I have a current model of Apple wireless mouse. It keeps getting stuck in text or e-mails and I have to somehowotherwise move the cursor to break it free.
    Help with any of these will be appreciated.
    BF

    1.         I have a security app on my computer, Flashbrief. I have it checked in the hide column but whenever I turn on the computerit appears in the top menu line.
    I've never heard of this software, and cannot find any reference to it online, which is a bit concerning.  What is it supposed to do?  There really isn't much need for security software on a Mac.
    2.         Whenever Iturn on the computer, a new blank document window in MS Word 2011 appears.  I do not have this listed in the login items.
    In Mac OS X 10.7, any applications left open when you shut down or restart are re-opened at startup, and any documents left open in an app when you quit are re-opened when you launch them again.  The former can be controlled by unchecking the box in the restart/shutdown alert:
    You will need to do this each time you shut down or restart, it won't remember that setting.
    The latter can be deactivated by unchecking the box in System Preferences -> General:
    3.         I have a current model of Apple wireless mouse. It keeps getting stuck in text or e-mails and I have to somehowotherwise move the cursor to break it free.
    That does not sound normal, but I don't use a mouse with my MBP, so I can't provide a solution, other than to try replacing the batteries in the mouse.

  • Document Window display is goofy

    Dreamweaver 8, Mac OS X 10.4.8 Yesterday my web pages looked
    great in Dreamweaver and in several browsers. This morning I opened
    up Dreamweaver and viewed my pages and the graphics were jumbled
    all around and the table outline guide is no where to been seen.
    The text is also not visible. When I preview the pages in a
    browser, they look fine! How can I get the display in the Document
    Window to look normal again? Thank You for any ideas, help or
    suggestions!

    Thanks for that. I have learn't a bit more about the OS, but I still cannot get the help or safari displaying correctly, yet firefox does it fine.
    For your info, I had none of the items that site said to delete from the help preferences, except for the itunes helpstart file.
    Any other suggestions. I don't want to do a re install if I don't have to - I lost enough data last time.

  • Shortcut for activating editor when one selects something in document window?

    Hello to the people who know Dreamw. a bit better then me....
    I just try to find a trick that maybe anyone knows out here?
    When you select some text in the document window, you see the
    cursor at that place in the code-editor. Is there a shorthand to
    activate the editor at that point? Now i have to click in the
    editor if i decide to work directly in the code. It could be
    usefull: searching and locating in the document window and then
    with a shortcut continuing to write in the editor.
    Thanks for any help

    I just click on the 'thumb' in the scrollbar for code
    view....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jojo1971" <[email protected]> wrote in
    message
    news:fq3qjr$qle$[email protected]..
    > Hello to the people who know Dreamw. a bit better then
    me.... I just try
    > to
    > find a trick that maybe anyone knows out here?
    > When you select some text in the document window, you
    see the cursor at
    > that
    > place in the code-editor. Is there a shorthand to
    activate the editor at
    > that
    > point? Now i have to click in the editor if i decide to
    work directly in
    > the
    > code. It could be usefull: searching and locating in the
    document window
    > and
    > then with a shortcut continuing to write in the editor.
    >
    > Thanks for any help
    >
    >

  • Play QT mov in document window

    Please, can somebody tell me how to play a .mov in the
    Dreamweaver8 document window. Working on MacOSX, Quicktime
    installed. DW keeps saying 'The plugin failed to initialize'.
    Preview however works well in Firefox, Safari, Internet Explorer
    for Mac

    However, the plug-in cannot be installed as it was intended for an earlier version of the software I am running.
    You have three basic options:
    1) You can manually trasfer the component from a previous installation on another system,
    2) You can try the Squared-5 lion installer utility that comes in the MPEG Streamclip v1.9.3b7 beta download to install the component in the incompatible installer package, or
    3) You can use Pacifist to install/extract and manually install the QT MPEG-2 Playback component in the incompatible Apple installer package.

  • Microsoft Word templates move and hide document window

    Often when I open Word for Mac, the toolbars have moved to strange locations on my screen and will cover the document window's top portion so that I cannot even move it. Is there no way to force Word to memorize the locations where they were last left?
    Anybody else have this issue?

    You must be speaking of Office 2004 for Mac. Floating menus is one reason I never liked office 2004 for Mac or for that matter any software employing this technique.
    You can dock some of the toolbars to the main toolbar on Office 2004/2008 however not all can be docked. You are right, they get annoying and especially need to be moved from time to time to get to the window behind them. I don't know of any way to set a permanent location for the toolbars.
    Axel F.

Maybe you are looking for

  • Why hashMap is not the part of collection framework

    why hashMap is not the part of collection framework ?? why Map start its own new hierarchy?? thanks

  • Do I have to use lookup() to get a reference of remote object?

    Hello, I appreciate the help from you guys in advance. My question is, do I have to use lookup() to get the reference to a remote object? Right now I want to pass the remote object itself which can be serialized via stream. I am not sure if this way

  • Trading partner in FB08

    Hi When I try to reverse a document in TC FB08 I get an error message saying that i need to enter a trading partner. But I can't find any field for this. Does anybody know what to do? / Henrik

  • How to digitize a physical book (scanned pfd file) to a kindle format with Indesign? pages are 8x11.

    How to digitize a physical book (scanned pfd file) to a kindle format with Indesign? pages are 8x11. I have all scanned pages, but the kindle format offered on the Indesign options is bigger. What should I do? Do I start a book from scratch with the

  • Admin API Error

    I am attempting to use the Admin API to add a user to coldfusion. However when I call the setUser method and pass in a username and password I get the error "The USERNAME parameter to the setUser function is required but was not passed in." The call