Application windows remembering original anchor points when moving or resizing

Recently it seems that most of my windows, especially iTunes, Safari, and Finder, seem to retain the anchor points from when they were opened and revert to their original position if a window is resized. I've noticed the following odd behaviors that seem to be related to this problem:
After moving an iTunes or Safari window, right-clicking will open the context menu in a location that corresponds to where the window was originally placed.
After moving a window, a drag-n-drop target remains relative to where the window was. For example, in iTunes, if I open the application and move the window, it becomes impossible to drag a song into a playlist (unless I drag the song to the location where that playlist was when the window originally opened). The same sort of thing happens with Finder windows. In the image below, a screen grab of a Safari window, I right-clicked on the signal strength display pictured on the phone to the left; notice the context menu way off to the right of the Safari window.
Resizing a Safari window makes the window first snap back to the original location, then allows the resize to occur.
Opening/closing a tab in Safari, when the action causes the tab bar to appear or disappear, causes the Safari window to snap back to the original anchored position.
I've noticed this behavior over the past week or so. It was about a week ago that I installed the 10.9.5 update to the OS, but I'm not sure if the problem pre-dated the update or not.
This is driving me insane. Does anyone have any suggestions or, hopefully, a fix?
Thanks.

You can try running the combo update.
10.9.5 Combo Update

Similar Messages

  • Can you automatically delete anchor points when a new image is placed on top - so that it 'replaces'

    Hi all,
    I know that I can delete anchor points but I was wondering if there is a shortcut to do it on a larger scale.
    Can you automatically delete anchor points when a new image is placed on top - so that it 'replaces' the image, only on the parts obviously that you cover with the new one.
    Thank you all

    Hi,
    I'm using CS6, and I have a tree vector image, and I am trying to put names on top, but when I do this to keep it clean with no anchor points (as my other software cant read it with all the points in it) I have to manually delete each one but it deletes the whole path and I then end up with a tree, names on top, and a big gappy circle around the names.
    So really, I wanted to add the names on top, and have that delete all anchors underneath .
    Does this make sense? :S

  • Cropping when moving and resizing a cropping rectangle

    I created a program that crops an image and displays the cropped image but I'm trying to add more functionality
    by making it movable and resizable. The rectangle moves and resizes but it only crops an image when user draws the rectangle and not when moved or resized. I know that the X,Y, height and width position of the rectangle would need to be updated but I'm not
    sure how I can accomplish this being new to WPF. Below is my user control "CropControl and the code behind. Also, I'm implementing my code using MVVM framework.
    XAML: 
    <UserControl x:Class="Klein_Tools_Profile_Pic_Generator.CropControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:s="clr-namespace:Klein_Tools_Profile_Pic_Generator"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.Resources>
    <ControlTemplate x:Key="MoveThumbTemplate" TargetType="{x:Type s:MoveThumb}">
    <Rectangle Fill="Transparent"/>
    </ControlTemplate>
    <!-- ResizeDecorator Template -->
    <ControlTemplate x:Key="ResizeDecoratorTemplate" TargetType="{x:Type Control}">
    <Grid>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeNS" Margin="0 -4 0 0"
    VerticalAlignment="Top"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeWE" Margin="-4 0 0 0"
    VerticalAlignment="Stretch" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeWE" Margin="0 0 -4 0"
    VerticalAlignment="Stretch" HorizontalAlignment="Right"/>
    <s:ResizeThumb Width="3" Height="7" Cursor="SizeNS" Margin="0 0 0 -4"
    VerticalAlignment="Bottom" HorizontalAlignment="Stretch"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNWSE"
    VerticalAlignment="Top" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNESW"
    VerticalAlignment="Top" HorizontalAlignment="Right"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNESW"
    VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
    <s:ResizeThumb Width="7" Height="7" Cursor="SizeNWSE"
    VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
    </Grid>
    </ControlTemplate>
    <!-- Designer Item Template-->
    <ControlTemplate x:Key="DesignerItemTemplate" TargetType="ContentControl">
    <Grid DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}">
    <s:MoveThumb Template="{StaticResource MoveThumbTemplate}" Cursor="SizeAll"/>
    <Control Template="{StaticResource ResizeDecoratorTemplate}"/>
    <ContentPresenter Content="{TemplateBinding ContentControl.Content}"/>
    </Grid>
    </ControlTemplate>
    </UserControl.Resources>
    <Canvas x:Name="BackPanel"
    MouseLeftButtonDown="LoadedImage_MouseLeftButtonDown"
    MouseMove="LoadedImage_MouseMove"
    MouseLeftButtonUp="LoadedImage_MouseLeftButtonUp"
    Background="Transparent">
    <ContentControl x:Name="contControl" Visibility="Collapsed"
    Template="{StaticResource DesignerItemTemplate}">
    <Rectangle x:Name="selectionRectangle" Fill="#220000FF"
    IsHitTestVisible="False"/>
    </ContentControl>
    </Canvas>
    </UserControl>
    CODE BEHIND:
    namespace Klein_Tools_Profile_Pic_Generator
    /// <summary>
    /// Interaction logic for CropControl.xaml
    /// </summary>
    public partial class CropControl : UserControl
    private bool isDragging = false;
    private Point anchorPoint = new Point();
    private bool moveRect;
    TranslateTransform trans = null;
    Point originalMousePosition;
    public CropControl()
    InitializeComponent();
    //Register the Dependency Property
    public static readonly DependencyProperty SelectionProperty =
    DependencyProperty.Register("Selection", typeof(Rect), typeof(CropControl), new PropertyMetadata(default(Rect)));
    public Rect Selection
    get { return (Rect)GetValue(SelectionProperty); }
    set { SetValue(SelectionProperty, value); }
    // this is used, to react on changes from ViewModel. If you assign a
    // new Rect in your ViewModel you will have to redraw your Rect here
    private static void OnSelectionChanged(System.Windows.DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e)
    Rect newRect = (Rect)e.NewValue;
    Rectangle selectionRectangle = d as Rectangle;
    if (selectionRectangle != null)
    return;
    selectionRectangle.SetValue(Canvas.LeftProperty, newRect.X);
    selectionRectangle.SetValue(Canvas.TopProperty, newRect.Y);
    selectionRectangle.Width = newRect.Width;
    selectionRectangle.Height = newRect.Height;
    private void LoadedImage_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    if (isDragging == false)
    anchorPoint.X = e.GetPosition(BackPanel).X;
    anchorPoint.Y = e.GetPosition(BackPanel).Y;
    Canvas.SetZIndex(selectionRectangle, 999);
    isDragging = true;
    BackPanel.Cursor = Cursors.Cross;
    private void LoadedImage_MouseMove(object sender, MouseEventArgs e)
    if (isDragging)
    double x = e.GetPosition(BackPanel).X;
    double y = e.GetPosition(BackPanel).Y;
    contControl.SetValue(Canvas.LeftProperty, Math.Min(x, anchorPoint.X));
    contControl.SetValue(Canvas.TopProperty, Math.Min(y, anchorPoint.Y));
    contControl.Width = Math.Abs(x - anchorPoint.X);
    contControl.Height = Math.Abs(y - anchorPoint.Y);
    if (contControl.Visibility != Visibility.Visible)
    contControl.Visibility = Visibility.Visible;
    private void Image_MouseMove(object sender, MouseEventArgs e)
    if (moveRect)
    trans = selectionRectangle.RenderTransform as TranslateTransform;
    if (trans == null)
    selectionRectangle.RenderTransformOrigin = new Point(0, 0);
    trans = new TranslateTransform();
    selectionRectangle.RenderTransform = trans;
    trans.Y = -(originalMousePosition.Y - e.GetPosition(BackPanel).Y);
    trans.X = -(originalMousePosition.X - e.GetPosition(BackPanel).X);
    e.Handled = false;
    private void LoadedImage_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    if (isDragging)
    isDragging = false;
    if (contControl.Width > 0)
    //Crop.IsEnabled = true;
    //Cut.IsEnabled = true;
    BackPanel.Cursor = Cursors.Arrow;
    contControl.GetValue(Canvas.LeftProperty);
    // Set the Selection to the new rect, when the mouse button has been released
    Selection = new Rect(
    (double)contControl.GetValue(Canvas.LeftProperty),
    (double)contControl.GetValue(Canvas.TopProperty),
    contControl.Width,
    contControl.Height);

    Hello HotSawz,
    The ResizeThumb and MoveThumb is not in your code so I cannot compile. Anyway, it is not the problem.
    Anyway, can you clarify more details about "it only crops an image when user draws the rectangle and not when moved or resized", it is already normal behavoir for you to draw a rectangle and then move it. What kind of action do you want? Do you
    mean some controls like this:
    http://www.codeproject.com/Articles/23158/A-Photoshop-like-Cropping-Adorner-for-WPF
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Too many anchor point when brushes expand in CS6

    I have recently upgraded to CS6 from CS2. I do a lot of digital inking in Illustrator as part of my job. In CS2 I would create a simple tapered brush using 4 anchor points. When I would draw a brush stroke say with two anchor points, and then expand that brush stroke. Illustrator CS2 would convert the outlined tapered brush stroke back to the the original 4 anchor point path that I had originally created with maybe one extra point if the stroke curved  drastically. Now is CS6 illustrator creates that same expanded brush with 9 to 12 anchor points in the path. This makes the program completly useless for my task. Is there anyway to correct this?

    Just in case you didn't get it. Here is a link to a brush sample. It's a simple art brush. Nothing sophisicated.
    https://www.dropbox.com/s/dyrtw6q2gpu26a1/brush%20sample.ai

  • Why do I get an extra set of anchor points when I "Expand Appearance"

    When I use the expand appearance?  First I create a rectangle then I transform it vertical or horizontal I create 2 copies, then expand appearance. I see double the amount of anchor points.  I was trying to copy a youtube video and when they do it the amount of anchor points does not double. I am doing the expand appearance in order to use pathfinder tool shape mode unite in order to create shape inside.  The Youtube video I was trying to follow is below. Any help is appreciated! I kinda of got stuck inthe the very begining.

    Depending on what version of AI, what specific appearance is used and a couple of other things this may happen. Some are bugs, others logical like theprogram inserting extra points to retain the shape of paths. In any case, you can always remove extra points if they get in the way, though most likely you will see other unwanted points after the pathfinder operations, anyway.
    Mylenium

  • How do You See Anchor Points When Object is Unselected

    Hi, In Adobe Illustrator is there any way of viewing the anchor points of objects permanently even when an object is unselected? So you can see where the points are when you are making shapes with the pen tool. If there was, this would make it a lot easer to place the points on existing points of other shapes without having to guess where they are. Thanks for you help Gareth.

    Oh no! I just noticed when using it, that it is not as useful as I thought, because if you want to put a point anywhere near the 90º or 45º line from the last one it forces you to put in on that line, it's great that it lets you see the points on the other shapes but too bad it makes you do that. and you can't turn off smart guides while making a shape because it stops that shape and starts a new one. That's a bit annoying, so it's still easier to do it without smart guides guessing where the points are and correct them later with the white arrow if you missed any. Thanks for you help though. Gareth.

  • Action a link to an anchor point when a scroll postion is reached

    Hi, I want to know if there is a way to action an anchor point or link on a muse site when you reach a certain scroll postion, I believe this can be done with some javascript but not sure if it can be done directly in muse? So basically when you scroll say to 1000px down a page some kind of trigger is activated and takes you to a predefined anchor or link to another page. If this can be done by embedding some code does anyone know what the code would look like?

    see this post near the top . . . if you're using framesets you will scroll to the bottom of the page to see what they posted there.
    http://forums.adobe.com/message/628872#628872

  • Photoshop CS6 a little 'jerky' when moving layers & resizing window (Macbook Pro Retina 650m)

    As title says, when I open Photoshop CS6 and simple make a new layer and either use the type tool, it appears to be a little Sluggish/Jerky when moving the layer around.. The same applies when resizing photoshop itself.
    I'm updated to the latest version of CS6 and have tried all the combinations in the 'Performance' section of Photoshop.
    My Macbook Pro Retina is the 3.4ghz 650m and 8GB RAM offering (OS Mavericks). It's really annoying me as even my old laptop could run it smoothly and that was an i5 and much lower-end graphics card.
    The only way I can really describe it (and i'm no tech professional) is when comparing it to silky smooth 60 fps, it looks like it's skipping frames and in term looking 'jerky'. I also use Illustrator and don't really witness the same problem with it.
    I know this may have been asked quite a bit.. But I've never found the solution.. Could anybody advise me on what it potentially could be down too? (Might I add the laptop has just had a fresh install of the OS and a fresh copy of CS6)

    You could check through the GPU FAQ for anything you might have missed
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-gpu-faq.html
    You say you have tried all settings in Performance, but I wonder what your  cache levels are set at?  If more than 1, then OK.
    There's the general performance FAQ (no doubt lots of overlap)
    http://helpx.adobe.com/photoshop/kb/optimize-performance-photoshop-cs4-cs5.html
    Is this with all image docs, or particular ones?  For instance I have been playing with using ACR to process 32bit HDR files, and it puts a huge load on the system.

  • Windows "pop back" to maximize when clicked, no resizing (compiz?)

    Hi!
    I haven't seen this problem for a while and now it's back:
    - Sometimes a window gets stuck fullscreen or maximized
    - I can resize it with grid plugin but alt+mouse2 does not seem to work
    - As soon as it gains focus, it pops back to take up the whole of the screen
    - restarting the application does not change anything. Restarting compiz neighter
    - this seems to happen randomly, with different applications - mostly ones I hardly use.
    - behaviour stays buggy like that until I restart X or sometimes after closing the applications a few times, resizing, maximizing, clicking different stuff.
    Using xfce4-panel, compiz, emerald, gtk. No window rules for automatic positioning / resizing.
    Any ideas on what to look for? Thanks!

    You can try running the combo update.
    10.9.5 Combo Update

  • IE11 in Windows 8.1 changes scale when moving window between screens

    Hi,
    I'm using Windows 8.1 with IE11 on a Dell Latitude E6510 with an external LG screen. I use both screens in my daily work and when I move a IE11 window from the internal screen in my laptop to the external LG screen, the scaling in IE11 changes and gets smaller.
    It happens when the windows is halfway over to the external screen. On the way back it changes again and gets bigger. I've use the "One scaling for all my screens" in the Control Panel|Display applet without success. It's only IE11 that has this
    behaviour, no other programs does this.
    Brgds Jonas

    Hi Brgds Jonas,
    I agree with  Robert Aldwinckle .
    In addition, Windows 8.1 definitely seems to be doing some automatic display scaling here, as has been rumored based on beta builds of the OS.
    The first option is for multiple monitors with different ppi. windows will choose for you based on what the ppi is. use trial and error until you get the size you want and both monitors will be about that size. if they are close in ppi it will not scale
    them differently because I am pretty sure it only chooses from the default scaling sizes.
    For more reference, you may refer to:
    Windows 8.1 DPI Scaling Enhancements
    http://blogs.windows.com/windows/b/extremewindows/archive/2013/07/15/windows-8-1-dpi-scaling-enhancements.aspx
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • E61 - Cannot remember its access points when loose...

    Hi,
    I live in Canada but came a couple years ago from Europe with an E61 that I already owned.  Even though I love the phone, I have had a recurrent problem which I haven't been able to resolve despite an extensive search on the net.  As soon as I go in a tunnel, subway, building, underground.... I logically loose signal from my current network ... and the phone looses its current access point connection which prompts a menu to manually reselect the access point once the network is back.  But, if I do not rapidly execute the manual selection of the access point on the phone, the phone kind of freezes, then reboots, reconnects to the network, asks me again to manually select my access point from the list.  If again I don't make the selection, the phone will go in a loop and will reboot until it fully drains the battery ... and that's the other problem.  If I don't pay attention, the phone will deplete its battery in a very short time by constantly rebooting...
    I just came back from a trip in Europe and while I was connected to French phone networks, as soon as I would loose signal (in the fast train for instance), the access point selection menu would reappear..So, the problem is not just in Canada.
    Any ideas, suggestions?  I am up to date with my system.  I checked it.
    Thanks very much in advance for your help.

    You don't mention it, but I would assume the software for the device is being installed using an administrator account...if not, you should make sure that it is installed that way...and check during the install to see if there is an option anywhere to install for all users...
    Tomato 1.25vpn3.4 (SgtPepperKSU MOD) on a Buffalo WHR-HP-G54
    D-Link DSM-320 (Wired)
    Wii (Wireless) - PS3 (Wired), PSP (Wireless) - XBox360 (Wired)
    SonyBDP-S360 (Wired)
    Linksys NSLU2 Firmware Unslung 6.10 Beta unslung to a 2Gb thumb, w/1 Maxtor OneTouch III 200Gb
    IOmega StorCenter ix2 1TB NAS
    Linksys WVC54G w/FW V2.12EU
    and assorted wired and wireless PCs and laptops

  • Acrobat 9 Pro hangs when moving or resizing stamps

    I've had this issue on two different machines running Windows 32 and 64 bit OS.
    Document opens fine and you can scroll around and perform operations. Until you put a stamp on it. Everything slows way down but doesn't quite stop. You can't resize or move the stamp although the cursor will eventually show the move or resize symbols because the entire program goes into a semi-freeze. You can't even close the window without waiting several minutes to regain "focus".
    If you shut it down and re-open all is normal...until you highlight or focus on the stamp, then the whole freeze or slowdown begins again,
    Anyone ever seen this? I can't find anything on it anywhere.

    Hi buybeach,
    Please update Acrobat to v9.5.5 and check. Was it working fine for you before?
    You might also want to repair Acrobat and check.
    Regards,
    Rave

  • Anchor Points and handles disappearing in Illustrator CC – Windows 8

    Hi,
    I'm hoping someone can help.
    This is becoming a consistently re-occurring issue for me, and it's not specific to any particular file.
    The bounding box is visible, so I have a blue outline and blue "anchor points" at the end of each line, and I can even use the new CC round edges option, however I have no anchor points to do any resizing, and I can't hover the black arrow tool just outside the edges of a shape to quickly rotate it.
    It's not a case of going into preferences/view and turning on bounding box and/or show anchor points (Ctrl+Shft+B) nor (Ctrl+H). This seems to happen to me randomly but consistently, on new or existing files, and there's no rhyme or reason to when it happens. I could have been working on the file for 2 hours or 2 minutes and it can just kick in.
    Any help would be much appreciated.

    Probably worth noting that I also have CC on my Mac and I tend not to see the issue, it happens occasionally but nowhere near to the same extent as the Windows version, and I've experienced the issue occasional on older versions of Illustrator also, so it just seems like an inherent issue on these versions rather than the inhibiting barrier it's proving to be on CC Windows.

  • How to Change the Location of the Anchor Point

    Hi
    Very new to affter effects.... i was wondering if you guys could please tell me how to move the blue anchor for animation of text please.

    If you just want to move the anchor point on your text layer you can do it by hand instead of going in and manually adjusting it from the transform menu as Dave suggested. 
    However, by what you've written it seems like there may be some confusion about what moving the anchor point actually accomplishes.  So just to clarify, the anchor point, or the small crosshair icon usually in the middle or corner of the layer, is actually a customizable location that essentially dictates the center around which the position, scale and/or rotation values will change when your layer is animated over time with keyframes.
    For example, if you would like to move the anchor point so that your text rotates around a point near the corner of the layer, you can press the Y key to activate the Pan Behind Tool and move the anchor point to the corner.  If you have CS6 you can hold down the Command Key to lock the anchor point to the center, corner or edge of your layer.  A little square will appear around the Anchor Point when it's ready to lock.
    If you've keyframed some of the properties on a layer and would like to temporarily see how your layer looks without messing up any animation you've done on it, simply duplicate the layer by selecting it in the Comp's layer panel and going to Edit - Copy and Edit - Paste.  That way you can do whatever you'd like on the duplicated layer wihout harming your original  Then do one or more of the following:
    A.) You can reset all of the trnsform properties of the layer by clicking Reset.  This will set your layer back to it's default transform settings.
    B.) Or, you can delete all of the keyframes on an individual property by clicking the stopwatch again.
    C.) Also, clicking the light yellow diamond next to the Source Name will delete a single keyframe and the arrows on either side will move the playhead from keyframe to keyframe.  You can of course always delete keyframes manually by selecting them in the timeline and hitting delete.  Holding Shift will snap the playhead to each keyframe.
    I hope this helps and if you're still having trouble I highly reccomend you start here to learn After Effects or go here for additional information.

  • Is it possible to show anchor points permanently???

    I'm copying a map by tracing over it in Illustrator. The original map was also made in Illustrator, but I need to rearrange borders of countries, as I am making a WWII map.
    QUESTION: Is it possible to turn anchor points on permanently so that I can trace precisely over the original borders by placing the new anchor points exactly over the old anchor points?
    Thanks very much in advance,
    - Nick

    Hi Jacob,
    Exactly, thanks for your reply.
    I have to follow the path. However I need to make some adjustments, e.g. : Romania.
    On a modern day map, Romania is smaller than it was before WWII when it included Bessarabia (modern day Moldova). So I would retrace Romania's modern day border to the south and west as it didn't change since before WWII. But I would have to alter Romania's northern border to include Moldova. That's why I need to be able to see the original anchor points so that I can trace precisely over them, except where the borders have changed.
    I'm using Illustrator CS5. The original map was an svg file downloaded from Wikipedia Commons.

Maybe you are looking for

  • How to make BEX Customer Exit Variable inactive through Customer Exit Code

    Hi, I had created two variables VAR1 and VAR2 as Customer Exit variables If VAR1 is entered then it should automatically make the VAR2 as NO Entry Variable. vice versa also required. can u help me with any code in CMOD so that we can make it inactive

  • Load-balancing of transparent cache + IP spoofing + RTSP + MMS not working

    We have already in production an architecture with load-balancing of transparent cache + ip spoofing. We are unable to do the same for streaming flows (MMS and RTSP). We are doing PBR from our core network (2 * C6K) to redirect port 80, 554 and 1755

  • IPhone 5 Gyro is not working.

    I'm using iPhone 5 with iOS 8.1.3. My Gyro is not working. I backed-up and reset the phone as new, it didn't work. I did the Orientation Unlock, it didn't work. Is there any a hardware issue or any fix i can do that for.

  • Photoshop elements 11 reagiert verzögert

    Wenn ich in PSE 11 Editor arbeite reagieren die Einstellungen jeglicher Art zeitverzögernd von gefühlten 1-2 sec. Beispiel : In der 100% Ansicht Leertaste gedrückt halten und mit Maus das Bild verschieben. Dauert immer ein Moment bis ich die Aktion d

  • E-mail addresses (not.mac) through Mail?

    I have never figured out how to set up different a new Account. If you deselect .mac and then choose POP (?) or the other ones, it asks for an e-mail address. I thought Mail set you up with an e-mail address. Let's say my wife and I quit AOL . I know