How do I reset any transforms on a placed ID page?

I have an ID document that is composed of other placed ID pages. I changed a dimension on the placed pages and synced them, but the changes are not showing up in the master document where the pages are placed. How do I trigger the page to update?
For instance, I was placing an 8.5 x 11 page into an 8.5 x 11 master. I had to shrink the paced page width by some amount. When I saved it and synced it, the updated page just shows up kind of skewed bigger in the master where it's placed. It is remembering the original H and W from the first time it was placed. How do I make the 8.5 x 11 specs go away so that the right dimensions from the newly edited 7.5 x 11 take over? The lo-fi preview is just wrong now. Isn't there a simple button to click to reset a placed page's dimensions so that any transforms tossed out in favor of the update page's native dimensions?
For the curious: I'm layering 2 ID pages on top of eachother to create one "new" page, hence the need for a master document and placed ID pages.

Sorry, I meant "updating" as on the Links pane. It has a "sync" icon, but I didn't mean syncing, as in how you set up a book. This happens to be set up as a book, too, but that is not the issue at all.
So the issue is that when I save a change to a placed ID file, the sync happens but the page container (which was simply placed in the first place) stays the same size though the freshly updated page is smaller. The lo-res preview shows the content is distorted slightly.
I found, so far, I have to type in the "new" size specs on the original placed box (was 8.5 x 11, has to be 7.5 x 11), then "fit content to frame" and it's all good. But to do that is typing, clicking, moving mouse, clicking, etc. It's like 9 things to update the one file. And I have 400 to do . Was hoping there was a key stroke to "replace" what has been placed with all the updated right size info, overriding the "transforms" left on it after it updates.

Similar Messages

  • I just downloaded Lion.  Now when I open Safari, it automatically opens to the last page visited.  How do I reset it to open to a blank page as it did previously?

    I just downloaded Lion.  Now when I open Safari, it automatically opens to the last page visited.  How do I reset it to open to a blank page as it did previously?

    Dealing With The Resume Feature of Lion
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.
    It is possible to completely stop the Resume feature although I'm unconvinced that it is that annoying. Nevertheless see the following:
    If you have not yet done so you must first make your /Home/Library/ folder visible. Open the Terminal application in the Utilities folder. At the prompt paste the following command line:
    chflags nohidden ~/Library
    Press RETURN. Quit the Terminal application.
    In the Finder navigate to the /Home/Library/Saved Application State/ folder. Delete the contents of the folder. Back up to the /Home/Library/ folder. Select the Saved Application State folder. Press COMMAND-I to open the Get Info window. In the Sharing and Permissions panel at the bottom click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window.
    Quit all open programs except the Finder (this is very important.) Next, navigate to the /Home/Library/Preferences/ByHost/ folder. Look for a .plist file with "com.apple.loginwindow." in the file name followed by some numbers in hexadecimal. Select the file. Press COMMAND-I to open the Get Info window and in the Sharing and Permissions panel click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window. If you also find a file with the same filename but with a last extension of ".lockfile," then you should delete it.
    The above should eliminate the Resume feature system-wide. Note that any future system updates or upgrades will likely undo these changes. You will then need to repeat this procedure assuming there are no major changes in OS X related to it.

  • How can I display XSLT transformer errors on a web page ?

    Hi,
    I have some JSP pages that access DB, create an XML based on DB data and then transform it into HTML through an XSLT stylesheet. Developing the XSL code it's easy to make mistakes and generate errors on trasformation, but what I receive on the web page is only a "Could not compile stylesheet" TransformerConfigurationException, while the real cause of the error is displayed only on tomcat logs. This is the code for transformation:
    static public void applyXSLT(Document docXML, InputStream isXSL, PrintWriter pw) throws TransformerException, Exception {
            // instantiate the TransformerFactory.
            TransformerFactory tFactory = TransformerFactory.newInstance();
            // creates an error listener
            XslErrorListener xel = new XslErrorListener();
            // sets the error listener for the factory
            tFactory.setErrorListener(xel);
            // generate the transformer
            Transformer transformer = tFactory.newTransformer(new SAXSource(new InputSource(isXSL)));
            // transforms the XML Source and sends the output to the HTTP response
            transformer.transform(new DOMSource(docXML), new StreamResult(pw));
    }If an exception is thrown during the execution of this code, its error message is displayed on the web page.
    This is the listener class:
    public class XslErrorListener implements ErrorListener {
        public XslErrorListener() {
        public void warning(TransformerException ex) {
            // logs on error log
            System.err.println("\n\nWarning on XEL: " + ex.getMessage());
        public void error(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nError on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
        public void fatalError(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nFatal Error on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
    }When I have an error in the XSL stylesheet (for examples a missing closing tag), I can find on tomcat logs the real cause of the error:
    [Fatal Error] :59:10: The element type "table" must be terminated by the matching end-tag "</table>".
    Error on XEL: The element type "table" must be terminated by the matching end-tag "</table>".but on my web page is reported just the TransformerConfigurationException message that is:
    "Could not compile stylesheet".
    How can I display the real cause of the error directly on the web page?
    Thanks,
    Andrea

    This code is part of a bigger project that let developers edit XSL stylesheets through a file upload on the system and we can't impose the use of any tool for checking the xsl. So, I need to display the transformer error on the web page.I see. This code is part of an editorial/developmental tool for developers to create and edit XSL stylesheets.
    As part of the editorial process, XSL errors during editing can be considered a normal condition. In other words, it is normal to expect that the developers will generate XSL errors as they are developing stylesheets.
    In this light, handling the XSL transformation errors is a business requirement that you need to handle. Using the Java Exceptions mechanisms, e.g. try / catch are inappropriate to handle business requirements, in my opinion.
    I suggest that you look at how you handle the occurence of XSL errors differently than what you currently have. You need to:
    (1) capture the Transformation exception on the server;
    (2) extract the message from the exception and put it into a message that can be easily understood by the user;
    The current error message that you have going to the web browser is not useful.
    And you should not have the Transformation exception sent to the web browser either.
    What you are attempting to do with the exception is not appropriate.
    Handle the Transformation exception on the Business tier and use it to create a useful message that is then sent to the Presentation tier. In other words, do not send Java exceptions to web browser.
    />

  • How doi print Any variable at the end of page in ALV report?

    Hi,
    Anyone can tell me that How do i print Any variable at the end of page in ALV report?
    Exmale: at the ende of alv report i want to print total no of employee who has taken house loan or education loan.

    Hi,
    Go through these links
    Thread in sdn regarding FOOTER IN ALV
    [ALV  FOOTER;
    Wiki in sdn regarding HEADER AND FOOTER IN ALV
    [https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP%20Objects%20-%20ALV%20Model%20-%20Using%20Header%20and%20Footer]
    Header and Footer in ALV
    [http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm]
    Hope this helps.
    Thank you,
    Pavan.

  • How can I reset my lock passcode without plugging it into the computer or restoring it or resetting any data?

    I went I to my phone and I tried to unlock my passcode but it did not let me in, how can I reset my lock passcode without plugging it onto the computer on iTunes, or restoring it or deleting any data ?

    You don't. The only way to remove the passcode if forgotten is to restore the device. If you have a backup, you can restore to that last backup, but anything done since that last backup would be lost.Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support

  • My iPod touch is not connecting to iCloud account, under iCloud settings has old email account and username that I have since updated and are working correctly on my iPad, any idea how I can reset this?

    My iPod touch is not connecting to my iCloud account, under iCloud settings it  has my old email account and username that I have since updated and are working correctly on my iPad, any idea how I can reset this on the iPod or otherwise? This old account info keeps coming back on my iPod and messing up access to my apple account and now the icloud. last time a system restore needed to be done to fix it....

    It won't give me the option to sign out of the old account, it's that light grey color that you can't click on. And since it has the old email address that it's telling me to go into to verify the account, I can't actually change it... I'm stuck

  • How to see if a DSO is used in any transformation

    Hi Friends,
    I am starting a new dataflow for a new release, lot of DSO's have been created in previous release, I want remove the objects which are not actually used in any reporting. However there a DSO which is used in one look up this i found when i went thru the code. However there are lot of unused DSO which i like to decommission, but am not sure if those DSO have been used in any transformation, and there is no proper documentation available either, hence its becoming challenging to identify each DSO.
    I have used table RSAABAP to see if i can get some concrete info, in that table i got CODE-ID, but with that i cannot identify which other DSO or transformation are using this DSO in the look ups.
    Can someone please throw some light on how to identify this issue?.
    Regards
    BN

    Hi Kumar,
    Just to rephrase my understanding on your issue :
    The issue you are facing is , You have many DSO, which you feel that is not required, but you are not sure weather to delete them or not......as some other transformation might be using the Active table of DSO in the Start/End/Expert Routine.....which you have decided to deleted........
    Now below are some options
    1) Direct way is display dataflow.......which will tell you where is the direct transformation between the source and Target data target. Now here you will miss those data Targets which are reading the DSO active table in routine.
    2) For Lookup/Reads in routines :Find out the Active table technical name of DSO ( /BIC/AXXXXXX00)
          GOTO -
          SE11---> Database table = /BIC/AXXXXXX00
          Click on whereused list icon.....then you can select almost everything from available option available and execute... It will give the Program ID where your DSO is used.
    Hope this helps...
    Thanks
    Mayank

  • I just bought a new iMAC. I want to change the password, but the system is not accepting any old passwords.  How do I reset this, so that I can set a password?

    I just bought a new iMAC.  I want to set a password.  But, the system seems to think I already have one set, and I don't know what it is.  How do I reset this feature, so that I can set a password, without knowing the current password?

    Have you yet, during setting up the new iMac, transferred old data and settings from an external hard drive or another computer?  If so, then your computer obtained its current set Password from that tranfer, so you would have to determine what that Password was in the old system.  If you have Not transferred any information that way, then the installation and/or setup seem to have corrupted somehow since it hasn't yet received a new system Password selection from you. 
    At this point, if you can, you can reboot while holding down the Command - R keys to boot into the Mountain Lion Recovery Partition.  There you can select to "Reinstall Mountain Lion from the Internet".  This will overwrite your current installation and any problems that have occured and give you a fresh install that hopefullywill allow you to set up without problems.

  • Hi guys, I have a big problem! My bookmark shortcut entry(command D) does not work anymore and do you know by any changes how to undo resetting of Safari? Thnx a million :)

    Hi guys, I have a big problem! My bookmark shortcut entry(command D) does not work anymore and do you know by any changes how to undo resetting of Safari? Thnx a million

    Try troubleshooting the Safari .plist file.
    Quit Safari.
    Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Preferences folder.
    Move the com.apple.Safari.plist file from the Preferences folder to the Desktop. Relaunch Safari. Try a bookmark.
    If that didn't help, check Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, quit then relaunch Safari.
    If Extensions aren't the issue, reset Safari. From the menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.

  • How can i reset my security questions and there is no reset my questions below it any help plz

    how can i reset my security questions and there is no reset my questions below it
    any help plz

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (101110)

  • I forgot my administrator password, how can i reset it without losing any of my work? MacBook5,1 version 10.6.8 (I had my laptop for 7 seven years, its an old model).

    I forgot my administrator password, how can i reset it without losing any of my work?
    MacBook5,1 version 10.6.8 (I had my laptop for 7 years, its an old model).

    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password,
         OS X- Changing or resetting an account password (Snow Leopard and earlier).
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself
        Reset OS X Password Without an OS X CD — Tech News and Analysis
        How To Create A New Administrator Account - Hack Mac

  • How do I reset my iCloud old inaccessible email and password with my new iTunes email and password currently working on a different device?  Thanks for any suggestions ,

    How do I reset my iCloud old inaccessible email and password with my new iTunes email and password currently working on a different device?  Thanks for any suggestions ,

    TThat's the problem.  I've tried to delete the current icloud account but in order to that you need to put in the old password which I don't have so it kicks me out.

  • HT1911 How do I reset my security questions? I don't remember selecting or answering any security questions when opening my account, but iTunes keeps telline me one or both of my answers are incorrect.

    I haven't purchased anything from iTunes in awhile, but when I tried to purchase a song today, iTunes asked me for answers to security questions. I don't remember selecting or answering any security questions. Can I and how do I reset my security questions?

    Contact Apple over the phone and ask to speak with Account Security.  http://support.apple.com/kb/he57

  • HT5552 How do I reset the security questions when u don't know the answers to any of them

    How do u reset ur security questions when u don't even remember setting them and apple won't help u with them. They say u have to know 1 of the answers to 1 of the questions and we keep telling them that we don't know any of them

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • I tried to send too large an attachment using mail,and now mail is hung up trying to send any message.  How do I reset mail?

    I tried to send too large an attachment using mail,and now mail is hung up trying to send any message.  How do I reset mail?

    It will time out, if it hasn't already. Delete the message from the Outbox.

Maybe you are looking for

  • XBOX 360, MacBook Pro, PC and Airport Express don't all connect

    Just got the new XBOX360 with built in wi-fi for Christmas! Also have a MacBook Pro and a PC connected wirelessly to my Airport Express. Prior to the XBOX 360 the ApE worked flawlessly with the MbP and PC. Now, depending on the day, either the PC or

  • Does not play video

    Dear sir my mobile model is nokia x3-00. The problem is my mobile does not play any video. When i play any video it play audio well but the frames of video does not display. I also update my phone software but still it does not play video. What is pr

  • 7.0 Crashes in the libmtmalloc.so.1 library

    Our java application has multiple components and is running in S1AS70. One of the component is Trilogy configurtor (a third party product) and is running in a S1AS70 application seperate from main components. The main component is communicating to Tr

  • Upgrade from 9.2.0.4 to 9.2.0.5.

    Hi, I'm looking for any document saying how to upgrade from 9.2.0.4 to 9.2.0.5. Many thanks.

  • Can you export from Encore to MPG?

    I want to add subtitles to a project, and Encore seems the easiest package to use. However I want the final result to be an MPG or AVI file so it can be inserted into a PowerPoint presentation. Can this be done? Is there an easier way to go about it?