How to attach an object back to its source in a master page?

Hello,
on a content page I can access objects from the assigned master page using the Ctrl+Shift+LeftClick combination. By doing so I detach many attributes of this object from the master page specifications. How to reset an object and attach it back to the source object of the master page?
If you are a PowerPoint user, the option reapply slide layout may be familiar to you (this function resets all format overrides to the master settings). I am looking for a similar function in InDesign.

I really looking for a way to change the position of the second and third text boxes relative to other items on the page.
An overriden master page item will still respond to its master's position if its position on the page after overriding hasn't been changed. So, you can have the "directions" box on the master page, override it, add text, and as long as you don't move its x, y position in the process of adding text, it can be moved via the master page in the future. The key is not to move it in the editing process.
Same goes for other attributes. If the fill color is red, you can change it to gray from its master later, as long as you don't change the page item's fill to pink in between.
It's also possible to match a changed page item's attributes to its master via scripting.
So for example if you had a 3" text box on the master and there was 100 pages with the text box, and in the editing process 50 had their width changed to varying widths and later you decided you needed a 4"width— a simple script could loop through all the pages and reset the changed widths to match the master's new 4" width.

Similar Messages

  • I have a song in my itunes libary that is showing seperate from its album, how do I get it back in its album?

    I have a song in my itunes libary that is showing seperate from its album, how do I get it back in its album?

    See my article on Grouping tracks into albums.
    tt2

  • How to find unsued Transfer Rules and Data Sources for a Master Table...??

    How to find unsued Transfer Rules and Data Sources for a Master Table...?? My requirement is i need to delete those Transfer rules and Data Sources which are not in use

    Hi
    Go to manage of the Text or attirbute of the master data object, see what are being loaded daily from there and delete the remaining.
    Cheer
    Ans as expected, Please reward

  • I have an enlarged screen.  How do i get it back to its normal size?

    I have an enlarged screen that will not go back to its' normal size.  How can I get rid of this large screen?  I have lost the option to use File, Force Quit. There is no yellow button to drop the current screen and there is no red button to quit the current screen.  I have right double clicked and left double clicked and there are no options to reduce or quit.  After I figure out how to get rid of this large screen, I also need to figure out how this happened so I will be careful not to do it again.  Would very much appreciate any help, but will have to look for responses on my cell phone because I cannot access my email on this computer.

    You have not completed a profile, so we have no idea what version of OS X you have installed. Please do that before posting a new thread. If you don't know how please click Profile Update for instructions.
    To turn on a zoomed display, open System Preferences - Accesiblity - highlight Zoom in the left panel and checkmark the box called use keyboard shortcuts to zoom then use the correct keyboard shortcut.

  • I'm wanting to restore Safari to its factory settings but my Safari doesn't show the "Restore Safari" button for me to do that. How do I restore Safari back to its factory settings?

    I'm wanting to restore Safari on my computer back to its factory condition but, for some odd reason, Safari is not showing me the "Restore Safari" button on my computer. Can anyone help me in this dilemma?

    Safar 8
    Apple removed "Reset Safari" menu option in Safar 8.
    In it's place there is "Clear History and Website Data".
    You can use that option.
    Best.

  • Help!! How do you keep objects in the same order in a 20 page doc when inserting a new object?

    I am creating a catalog of pictures only, as objects.
    They are organized alphabetically, 4 images per page as a 2x2 grid, for 20 pages.
    I want to insert a NEW object (image) in the middle of these 20 pages, and want all the objects after it to shift over one spot to make room.
    How do I get the objects after the inserted ones to shift, as text would if you inserted more text in the middle of a paragraph?
    I can't figure out how do do that (without just putting the images in a text box and in-line, but then I lose all the spacing controls)...
    Thank you!
    Lawrence

    ID ships with a free Image Catalog script in the sample scripts. You don't need to buy one.
    And that isn't going to do what you want, exactly. You'd have to re-run the script each time you add an image to make a new file, and you don't get to set the sort order yourself.

  • How to give a relative path from a button in the master page header?

    so I have this code in the header of my Master page in RoboHelp:
    <input type="image" value="View graphics legend"
    onclick="window.location.href='Graphics_legend.htm'"
    src="Images\graphic legend.png" name="image1"
    title="View graphics legend" style="width: 118px; height: 21px;" />
    i need to call the 'Graphics_legend.htm' file which is sitting in the root folder. When i try this it works fine for the html file which are in the root folder as well, but anything with is in a sub directory , the button stops working.
    It might be just to add a realtive path ,but i am failing to understand how to make a relative path for 'Graphics_legend.htm' ,.. ?

    Hi there
    Relative paths are relatively simple once you get the hang of them.
    For example, if you want to refer to something that is one folder above where you are, you prefix things with ../
    The ../ is HTML shorthand meaning one folder level above where I am. If you wish to go two folder levels up, ../../
    If you need to drop into a folder that is at the same level as where you are, ../FolderName
    From what you have written it would seem that RoboHelp isn't seeing your code and properly calculating the path. That's really not too surprising because you are using the Button element.
    If you are using CSS and linking to a style sheet you likely have a simple way to calculate what the relative path should be. Just examine the source code of the topic and note what prefixes the CSS file name. Assuming your CSS is in the project root (and it should be) then you could use the same prefix.
    Hopefully this helps... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to sort a object vector by its integer item ?

    hi everybody,
    [there were few topics on this in the forum, but nothing could solve my problem yet. so, please instruct me]
    I have to sort a vector which contains objects, where each object represents, different data types of values,
    ex: {obj1, obj2, obj3, ....}
    obj1---->{String name, int ID, String[] departments}
    i have to sort this vector at three times, once by name, then by ID and then by departments.
    Leaving name and department , first i want to sort the ID of each object and then re-arrange the order of objects in the array according to new order.
    what i did was, copied the vector all objects' ID values to an integer array then i sorted it using selection sort. but now i want to re-arrange the vector, but i still can't. please guide.
    here is the sort i did, and the
    int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i < ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    //*****here is where i need to re-arrange the entire vector by ID.
    I do understand this is some sort of database sort type of a question. but there's no database. it's simply i just want to sort the vector.
    Thank you.

    hi camickr,
    thank you for the detailed reply. but i still don't understand somethings. i tried to read the API and look for the collections.
    i have ObjectStore_initialData class (similar to person class), so do i still have to do a comparable class out of this class ? please simplify that.
    public class ObjectStore_initialData
         String NAME;
         int ID;
         String[] DPART;     
         public ObjectStore_initialData(String name, int id, String[] departments)
              NAME=name;
              ID=id;
              DPART = departments;
    public String getName()//----
              return NAME;
    public String getID()//----
              return ID;
    public String getDpart()//----
              return DPART;
    /*next class is the interface to collect the values from the user and put all of them at once in a vector*/
    //this class is to sort the vector by ID
    public class sorter
       public sorter()
       public static void sortbyID(Vector mintomaxID)
             int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i >< ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    //*****here is where i need to re-arrange the entire vector by ID.
    /*new comparable class */
    public class ObjectStore_initialData implements Comparable
         String NAME;
         int ID;
         String[] DPART;     
         public ObjectStore_initialData(String name, int id, String[] departments)
              NAME=name;
              ID=id;
              DPART = departments;
    public String getName()//----
              return NAME;
    public String getID()//----
              return ID;
    public String getDpart()//----
              return DPART;
    static class IDComparator implements Comparator
              public int compare(Object o1, Object o2)
                   ObjectStore_initialData p1 = (ObjectStore_initialData )o1;
                   ObjectStore_initialData p2 = (ObjectStore_initialData )o2;
                   return p1.getID() - p2.getID();
    /*how can i put the vector here to sort? */
    public sorter()
    public static void sortbyID(Vector mintomaxID)
    int[] ID = new int[mintomaxID.size()];
              for(int i=0;i<mintomaxID.size();i++)
                   ObjectStore_initialData obj_id = (ObjectStore_initialData)mintomaxID.elementAt(i);
                   ID[i] = obj_id.getID();
              System.out.println("Before sorting array");
              for(int i=0;i<ID.length;i++)
                   System.out.println(ID[i]);     
              System.out.println();
              int i, j, m, mi;
    for (i = 0; i >< ID.length - 1; i++) {
    /* find the minimum */
    mi = i;
    for (j = i+1; j < ID.length; j++) {
    if (ID[j] < ID[mi]) {
    mi = j;
    m = ID[mi];
    /* move elements to the right */
    for (j = mi; j > i; j--) {
    ID[j] = ID[j-1];
    ID[i] = m;
    System.out.println("After sorting array");
    for(int y=0;y<ID.length;y++)
                   System.out.println(ID[y]);     
    /* using collections to sort*/
    Collections.sort(mintomaxID, new IDComparator());
    and to check the new order i wanted to print the vector to command line.
    still it doesn't do anything.
    the url you mentioned is good as i see. but how can i implement that in my class ? please instruct and simplify. i know i just repeated the code, i didn't understand to do a comparable class in collections for this class. Please explain where i'm head to and where's my misleading point here.
    Thank you.
    Message was edited by:
    ArchiEnger.711

  • My mac book pro colors have turned brown instead of blue how do I get it back to its original state?, My mac book pro colors have turned brown instead of blue how do I get it back to its original state?

    How do I turn the colors back to the original colors that came on the MacBook. Somehow all of my colors look to be disorganized for instance blue is gold etc. I am not sure how this happened but I really would like it fixed any suggestions?

    Your first choice is to go to System Preferences>Displays>Color.  Make sure that your profile set is the appropriate one for the MacBook Pro, which should be "Color LCD".
    I'm going to skip all of the normal suggestions of resetting this and that, because from what I've researched this in the past, and it appears you have an issue with either the graphics chip (low probability) or a worn cable causing one of the color channels to be bad or your LED screen has a problem.
    In other words, it's probably hardware related.

  • I have found an iPod how do i give it back to its rightful owner?

    How do i return an ipod i found overseas to its rightful owner?
    I have checked its serial number....

    It is actually difficult to trace who the real owner is. If he/she has photos in it, maybe it will help.

  • My ipod all ready had songs on from somewhere (i can not get them back) but i syced my ipod to a different computer and all the songs were deleted ! how do i get them back ? its urgent !

    i have an ipod touch.
    i had 300 odd songs on. i do not have the songs on my laptop. i wanted to add the songs without getting rid of the currnet ones.
    without knowing , i just synced my ipod as usuall and my old songs were deleted. is there anyway in the world i could get those songs back ?!
    i am devistated! those songs bought me so many memories ! please help asap !!! x
    hannah x

    The iPod is not a storage device, all songs should reside on a computer and you can only sync to one machine. However, if these songs were purchased from iTunes you can reload them (see link). If not, and you have no backup, then they are gone.
    http://support.apple.com/kb/ht2519

  • HT1296 so itunes deleted all my music from itunes, I still have all the original files however I unwittingly added new music after this happened which wipes the itl and xml files. I have my playlists on my iphone. how do I get itunes back to its original

    If this cant be resolved I think apple and I shall be parting ways its been a long time in the coming

    Also, what causes this, so I can avoid it in the future?

  • My iTunes account on my Iphone 5 switched to the UK iTunes and I need the US iTunes how do I change it back because its not letting me

    My iTunes on my iPhone 5 got switched to the UK iTunes and i need the US iTunes I go to switch it back in settings and it says that I have store credit witch is 16 cents and I have to spend it in order to chane the iTunes can y'all help?

    My iTunes on my iPhone 5 got switched to the UK iTunes and i need the US iTunes I go to switch it back in settings and it says that I have store credit witch is 16 cents and I have to spend it in order to chane the iTunes can y'all help?

  • How to make a supreport to show its that in a new page

    <p>Dear all,</p><p>     I am using Crystal Report XI Release 2 with a VB6 application. I have many reports and want do show then like only one to make a big report of all stuff. I try using subreports but I want that each subreport begins in a new page. Is that possible? How can i do it?</p>

    I would try adding this to the Report Design forum.
    This wouldn't be specific to the RDC.  They might have some ideas over there.
    Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a>

  • How to change the menu item's title in different language master page?

    I have a menu item in my English master page. I can change the titles of the menu items as I like in English related pages, However when I change the titles in the same pages that is related to different language page master, the changes does not take affect. Please  help. 

    you can use different CSS classes given in http://www.oracle.com/technology/tech/blaf/specs/textStandards.html
    --Prasanna                                                                                                                                                                                                                                                       

Maybe you are looking for

  • 'Find My iPhone' error during sync

    My problem's fairly simple, but I can't find a solution. I've started syncing my new iPod touch (4th Gen) with itunes on my computer (Windows Vista). I've followed the syncing and it was all very straight-forward, up until the point where it asks if

  • Photo attachment size in Mail

    Hi When I attach photos into a mail, they appear as actual size. I would like all my attachment photos to appear as icons. I can then change the size of the photos into an icon but have to change each one individually. Is there a way to do a defult s

  • How to add Software Library Location in OEM 11g to facilitate patching.

    Hi, I'd like to use patching deployment to patch a gold copy oracle home, that is not being actively used. I'm tryingt to configure the deployment setup and on the screen where it says. Information You are adding a Software Library location for the f

  • Do I need PS to get the most out of AE please?

    and if so then which version of PS would be best please? many thanks!! :)

  • How to Use the Function Module 'BAPI_BUSPROCESSND_CHANGEMULTI'

    Dear Experts,          Can anyone Explain me how to Use the Function Module 'BAPI_BUSPROCESSND_CHANGEMULTI'.My Requirement is i want to change the Partners of the Service Order.It is Very Urgent Requirement Please Help me. Thanks & Regards, Ashok.