Placed link centered on artboard moves when reopened

When I place a link that is the exact same size as the artboard and center it. The zero point says 0x, 0y, I Save, and close the file then open and the file, now the linked file moves slightly. as little as .001, sometimes more. Is this a bug? This is in Illustrato CS6 16.0.4 running Mac OSX mountain lion. I guess  I should be happy it doesn't flip 180º like links being updated did back in Illustrator 9, or was it 10.

Double checked all settings and created test files to isolate this issue, no Align to Pixel Grid set in any panel or page settings.
New file, place an Illustrator file and set the Artboard to the size of the selected placed Illustrator link using the artboard tool preset fit to selected art. Check to make sure the file is 0x and 0y.
Then when I close the file and reopen it and select the placed link it no longer shows the 0x and 0y coordinates. I did check to make sure my click was not moving the linked object by selecting the linked object with the link panel.
I'm working in inches but this will also show up when I'm using other measurement types i.e. points, pixels, and mm. At first I thought it might be an anomaly in equalization between Illustrator's native math (what ever that is) and the inches. But I would think then there would be one of the measuremement types that wasn't affected.

Similar Messages

  • I received a link to a iTune movie trailer in an email.  I clicked on watch now and then play.  I was told I need to download Quick Time, but when I clicked on download, I was told that QT is built into Mac OSX.  My MacBook has OSX Yosemite.

    I received a link to a iTune movie trailer in an email.  I clicked on "watch now" and then "play".  I was told I need to download Quick Time, but when I clicked on download, I was told that QT is built into Mac OSX.  How do I get QT to work?

    When I hit the play icon the little arrow thing goes all the way over to the end of the file and doesn't play at all.  What gives?
    Is this a minimum information puzzle? It is difficult to diagnose a problem long distance when you provide little or no information regarding what actions you are actually taking to export the data or which version of iPhoto you are using. Based on your latest description of how it doesn't work, my best guess is that you are exporting a single frame from your video clip rather than the "Original" file. This is easily checked by opening the file in QT and simply pressing the left/right arrow keys. If the file only contains a single frame, then your export work flow is at fault. Please select the "File > Original" (or similar) option in the export menu to export the entire file in whatever version of iPhoto you are using..

  • AP Divs (layers) move when I open my website on different window size.

    First of all, this is my first time trying to make a website.
    I'm doing an assignment for my class and i found it difficult for me to fix. I have spend 4-5 hours researching online but nothing work for me.
    Well,the problem is the AP Divs (layers) move when I open my website on different window size(iphone,ipad).
    The website only look right on 1366 x 786 resolution. Please take a look at my 2 pics below:
    And I don't know how to make the website to fit on the iphone and ipad so that I don't have to scroll down or sroll to the right to view the whole thing.
    Please someone help me!
    The code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width" />
    <title>Boston Green Community College</title>
    <style type="text/css">
    <!--
    body {
        background-color: #3f7244;
        padding: 0;
        color: #8d0101;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
        line-height: 1.4;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #003702;
        text-decoration: NONE; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #028b66;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 960px;
        background-color: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background-color: #ADB96E;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 0px 0;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background-color: #CCC49F;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position: absolute;
        width: 251px;
        height: 101px;
        z-index: 1;
        left: 871px;
        top: 10px;
    #apDiv2 {
        position: absolute;
        width: 228px;
        height: 60px;
        z-index: 2;
        left: 9px;
        top: 1397px;
    #apDiv3 {
        position: absolute;
        width: 273px;
        height: 198px;
        z-index: 2;
        left: 851px;
        top: 383px;
    #apDiv4 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 3;
        left: 242px;
        top: 120px;
    #apDiv5 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 902px;
        top: 178px;
    #apDiv6 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 857px;
        top: 171px;
    #apDiv7 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 455px;
        top: 547px;
    #apDiv8 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 853px;
        top: 113px;
    #apDiv9 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 5;
        left: 853px;
        top: 246px;
    #apDiv10 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 513px;
        top: 121px;
    #apDiv11 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 511px;
        top: 123px;
    -->
    </style></head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="Pictures/34d-1.png" alt="Insert Logo Here" name="Insert_logo" width="619" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" />
        <div id="apDiv11"><font color="#f4f1f1">
    <script type="text/javascript">
    var d=new Date()
    var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(d.getDate() + ". ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getFullYear())
    </script></font>
    </div>
        <div id="apDiv1">
      <!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. -->
      <!-- The terms of service are available at http://www.google.com/cse/docs/tos.html -->
      <form name="cse" id="searchbox_demo" action="http://www.google.com/cse">
      <input type="hidden" name="cref" value="" />
      <input type="hidden" name="ie" value="utf-8" />
      <input type="hidden" name="hl" value="" />
      <input name="q" type="text" size="40" />
      <input type="submit" name="sa" value="Search" />
    </form>
    <script type="text/javascript" src="http://www.google.com/cse/tools/onthefly?form=searchbox_demo&lang="></script>
                                  </div>
                                    </div>
      <div class="content">
        <center><img src="Pictures/DFDF11.png" width="959" height="556" longdesc="Pictures/junior-2-960x.jpg" /></h1></center>
      <!-- end .content --></div>
      <div class="footer">
         <img src="Pictures/RRR1.png" width="202" height="70" />
         <div id="apDiv3">
           <p> </p>
           <p><a href="Job.html">Jobs</a>         </p>
           <p><a href="Art Gallery.html">Art Gallery</a>         </p>
           <p><a href="Contact us.html">Contact Us </a></p>
        </div>
        <div id="apDiv4"><center>
    <P>About</P>
    <a href="visiting.html">visiting</a> | <a href="Map.html">maps </a>| <P><a href="About.html">about BGCC</a></P>
    <P>Academic</P>
    <P><a href="Courses.html">schools+courses</a></P>
    <P>Admissions  </P>
    <P><a href="cost & aid basics.html">cost & aid basics </a>| <a href="Apply now.html">join BGCC</a>
    <P>Studen Life</P>
    <P><a href="Athletics.html">Athletics</a></P>
    <P>Greenforce Education</P>
    <P><a href="Career.html">career center</a></P>
    </center> </div>
         <p><font size="2" color="black">BGCC | 99 GreenField | Boston, MA 02199 |617-0101-1000| TTY 617-0202-9944|</font></p>
        <div id="apDiv9"><a href="Donate.html" target="_blank"><a href="Donate.html"><img src="Pictures/three-green-logo.jpg" width="218" height="99" longdesc="Pictures/three-green-logo.jpg" /></div>
        <div id="apDiv8"><a href="Apply now.html" target="_blank"><a href="Apply now.html">
    <img border="0" src="Pictures/cxgvxdvxgd.jpg" alt="Apply Now" width="218" height="99"></a></div>
      <!-- end .footer --></div>
      <!-- end .container --></div>
    </body>
    </html>

    That's what APDivs do.  This is the single most common problem new people have with web page layouts.  DO NOT use positioning.  You don't need it.  Start over.  Learn to use CSS floats, margins and padding to align elements. 
    Below is a basic HTML5 Layout.  View source in browser to see the code.
    http://www.alt-web.com/sandbox/HTML5-BasicLayout.html
    Nancy O.

  • How can I remove the thin black border of Flash movie when viewed in a browser?

    There is a thin border at the top and left margins of my Flash movie when the .html is viewed in a browser. How can it be removed?
    Here's the movie.
    One solution suggests replacing some code, but the code they suggest replacing doesn't even exist in my html file.
    I have found questions similar to mine being asked all over different forums, but their solutions either don't work, or like the above, don't really apply. For such a common problem, finding the solution is getting a little frustrating.
    I'm using Flash CS3 on a Windows PC rrunning XP professional.

    Okay, I found the answer. It turns out that when I made the buttons in Flash (so the movie would have clickable links), the default stroke color was set to black. Change it to white and the outline is gone.
    As for appearing only on the top and left of the movie - for some reason the bottom and right is being cropped a bit when it's placed in to the html page. But that's a topic for a different discussion.

  • Folders on Desktop move when file dragged to them

    With Firefox 3 we now see an annoying behaviour in the Finder (MacOS 10.4.11.) When the Desktop has "Keep arranged by..." turned off (necessary due to the Finder's slow refresh in MacOSX), if we drag an image from Firefox onto the closed folder the folder moves. In some instances it moves to the center of the screen (so it's then hidden behind the browser window) and in others it moves to the location where it was created. This happens with images (gif, png, jpg...) but not with dragged text or links.
    We deleted all our .DS_Store files and Finder prefs/plists but folders still move when an image is dragged to them. We see this on both our two MacBook Pros, and even with a newly created account.
    A workaround is to use "Save Image As..." instead of dragging but ten+ years of habit and muscle memory make this undoable.
    Has anyone else seen this and can anyone suggest a solution?

    Not a solution but possible prevention:
    Performance tip: Keep the Desktop clutter-free (empty, if possible)
    Mac OS X's Desktop is the de facto location for downloaded files, and for many users, in-progress works that will either be organized later or deleted altogether. The desktop can also be gluttonous, however, becoming a catch-all for files that linger indefinitely.
    Unfortunately - aside from the effect of disarray it creates - keeping dozens or hundreds of files on the Desktop can significantly degrade performance. Not necessarily because the system is sluggish with regard to rendering the icons on the desktop and storing them in memory persistently (which may be true in some cases), but more likely because keeping an excessive number of items on the Desktop can cause the windowserver process to generate reams of logfiles, which obviously draws resources away from other system tasks. Each of your icons on your desktop is stored as a window in the window server, not as an alias. The more you have stored, the more strain it puts on the window server. Check your desktop for unnecessary icons and clear them out.
    Keeping as few items as possible on the Desktop can prove a surprisingly effective performance boon. Even creating a single folder on your Desktop and placing all current and future clutter inside, then logging out and back in can provide an immediately noticeable speed boost, particularly for the Finder.
    And it is why Apple invented 'Stacks' for Leopard.

  • Illustator Image placed in InDesign CS5 moving position when Exporting to PDF

    I have a Illustrator image placed on a master page and when I go to export to a PDF  the image moves to the left about 2 inches.
    The same image on another master page outputs correctly.
    I copied and pasted it from the page that is working correctly to this master page, but it still moves.
    Any ideas?
    Thanks

    Are you fully patched?
    Can you make this happen with a fresh file and different graphic?
    Tried the fix corrupt files by expoting to inx or idml?
    http://forums.adobe.com/thread/526991

  • How to keep the image centered in the window when mouse zooming in cc 2014

    I,m not able to keep the image centered in the window when using the mouse scroll wheel for zooming.

    Ctrl + and - keys are meant for "center zoom".  As far as I know, the zoom tool is a "point zoom" tool. If you move the zoom tool with your mouse, it will zoom in on that part of the image.
    Also Ctrl 0 is "fit to screen" and Ctrl 1 is 100% zoom. (Use Cmd if this is a Mac)
    Gene

  • Text Moves When Zooming/Printing

    Hi everyone,
    My wife is going to school for graphic design and is having a huge problem with InDesign. When placing text in very precise locations, the text moves when she zooms in/out significantly. Even when it shows the text being in the perfect location at 100% (although it is not perfect when zooming in or out), it will be moved when the file is exported as a PDF or printed. Needless to say this is causing major problems for her. We have already reset the program preferences with no luck. She is using the Design Premium CS5.5 version of InDesign on a MacBook Pro with OSX Lion.
    As a side note, I tried the same tasks on my Windows 7 PC with Design Standard CS5 with no problems. We compared the program settings and made sure there were no differences but it still happened on her Mac. Any help is greatly appreciated. Thanks!
    Aaron

    Hi everyone,
    I'm really sorry for the delay. I took screenshots at each zoom where the type shifted. Here are the screenshots:
    @4000%
    @300%
    @125%
    @100%
    The reason that I don't believe it is simply monitor inconsistencies is due to the fact that whether I align the type at 4000% or 100%, the print still doesn't match the on-screen display. If I align at 100%, the print is still off by the same amount as these screenshots. Thanks again for your help.
    Aaron

  • Poster Frame QT Movie linked to standard QT Movie loads in Firefox not I.E.

    Ok, this may be a rare question here. Here's what I've done following a small blurb of directions in iMovie6/iDVD the Missing Manual by David Pogue. (awesome book)
    I've created a "poster frame movie" in QT. This is a one -frame movie I use as the picture on the page.
    This poster frame movie, when clicked, is linked to a full version of the same movie that opens in the same place. The reason for this poster frame movie is to start the QT plug-in download as soon as someone reaches my page so there is no wait time when they click to watch the movie, it should be instantaneous.
    I tested this last night on my Mac with Firefox, and after clicking the poster frame movie (i.e.) the picture; the linked movie loaded right away. This worked on PC with Firefox as well.
    However, when this is page is loaded in Internet Explorer, on Mac or PC, the poster frame movie is there, but when clicked, the full movies do not load.
    Can anyone think of why or what setting I.E. may have that doesn't allow my QT movies to load when other browsers allow it?

    Yup, that's your problem.
    Before the <embed> you should add:
    <param name="href" value="http://blip.tv/file/get/Awarner20-AnniversarySecondTry745.mov">
    <param name="target" value="myself">
    As predicted, your problem is that while the QuickTime plug-in has the HREF and TARGET parameters, they are missing from your OBJECT code, meaning that the QuickTime ActiveX Control will never see them. You need to include all parameters in both places (unless you want different behavior in IE).
    Also, TECHNICALLY, you should also add a </embed> just before the </object>. The <embed> tag, like, for instance, the <p> tag is self-closing, but the most recent XML standard (HTML is a subset of XML) says, "Thou shalt close all of thy tags". So it won't make a bit of difference in function, but it is good practice. And yes, you should also close your <p> tags and use <br /> or <br></br>, too.
    (although technically we're not supposed to use EMBED at all anymore, as it isn't in the HTML spec, but it works with all browsers except IE while OBJECT doesn't always...)
    --Dave Althoff, Jr.

  • Why does firefox forget some of my tabs when reopened?

    This is strange but recently I started noticing that when reopening my previous session some of my tabs are blank pages BUT it retains the favicon used for that tab - now that's fine if I know which site the favicon is from. Typing the site in will bring up the history but if I dont know it I'm screwed. I noticed this started happening with ver. 33 onwards I'm not sure where the issue lies. is it an addon? (haven't installed any recently) Is it a problem with the browser? is it a combo of both addons and browser? No clue. Attached is an image of the issue.
    Note: The upload images option wasn't functioning properly so here's a link to the pic I was referring to: http://i.imgur.com/nqn183P.png

    Are you using "Clear history when Firefox closes"?
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/remove-recent-browsing-search-and-download-history

  • Convention for placing links in footer?

    What is the convention for placing links in the footer? Should all the primary links be placed there? I have noticed some sites placing all the primary links there and some sites place other links there.
    Thanks.

    Not saying it doesn't happen but must admit that I've yet to observe an "average" user go for links in the footer.
    If the main nav doesn't work, they seem to assume that it's a broken site and hit the Back button and move to the next result on the Google top 10 page.

  • Conforming when reopening Saved Projects!..Why?

    Win 7 / CC Premiere
    Conforming when reopening Saved Projects!..Why?
    I am about to do  a search in the forum because I have seen this issue come up before...but I have never experienced it myself.
    This is going to cripple me on my current project!
    So Why does Premiere do this?
    All media is on local drives.
    Project works fine and is saved and backed up... then re open it and ....Nothing works because of 'Conforming' !

    you talking about mov renamed mpg ? thats the only time I saw any 'conforming' at all with the dslr stuff... never saw conforming as mov. DID see conforming as mov renamed mpg. Plus only got sound... which is another issue...

  • When I play one of my clips on imovie it shows up black even though I can see the whole clip on my menu of movies when I'm not playing it.

    When I play one of my clips on imovie it shows up black even though I can see the whole clip on my menu of movies when I'm not playing it. Does that make sense and can someone help me with this problem?

    Long standing problem, much discussion on the forums.  Typically it has to do with incompatibility of Microsoft Exchange email client.  See the links on "More Like this" at right.
    Two solutions:
    One is to  zip compress the file and send the attachment that way.
    Another is the freebie program "Attachment Tamer" - see
    http://download.cnet.com/Attachment-Tamer/3000-2367_4-56076.html

  • IPhoto crashed. When reopened, 70  some events were grayed out (no photos).  Restored iPhoto library from Time Machine, fewer grayed events.  Said yes to a msg on fixing library, 3K more photos. Still wrong.  What next to do?

    iPhoto crashed. When reopened, 70+  some events were grayed out (no photos).  Restored iPhoto library from Time Machine, fewer grayed events.  Said yes to a msg on fixing library, 3000 more photos. Still wrong.  What next to do?

    Do you still have the library that you were using when the crash occurred?  If so apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I want to create a barcode and link it to a movie on the I. Pad

    I want to create a barcode and link it to a movie on the I. Pad . When I scan the barcode it will go to a document or movie stored on the iPad

    Use such a qr code font tool for iOS to create the barcode app that can achieve that.

Maybe you are looking for

  • How to delete to-do list items in 5800 XM

    I transfered the data from my old PDA to Nokia 5800 XM. Now there are hundreds of to-do list items with showing up every day at the top of to-do list. I would like to delete lots of them. So, i can delete only one at a time. How do I select and delet

  • Problem with gui_download

    Hi, in my gui_download function I'm passing the 'ASC' value to the parameter filetype but, once I go to the txt file downladed and I try to save it as a csv file I realise that it's of type UTF-8 and not an ASCII type. Can anybody tell me why the fil

  • Making a spot color channel of a selection

    I want to make a spot color channel out of the current selection. How can I use the seletion to make the new channel? tell application "Adobe Photoshop CS6"     activate     set useropacity to 50     set teller to 1     set userchannelname to "kleur

  • ORA-12516: TNS:listener could not find ... on Windows Server 2003

    We are getting "ORA-12516: TNS:listener could not find available handler" while testing asp.net web application. We have following configuration: - A 10g database server on Windows Server 2000 - A Web Server running IIS6 on Windows Server 2003 - ODP.

  • New zshell terminal always opens in mounted NFS directory

    Whenever I add NFS share in /etc/fstab, every time I open new terminal urxvt (zshell) it automatically goes to NFS share directory instead of ~.  What could it be? Thanks in advance!