Cross Reference an Object??

How do I cross reference an object using Indesign CS4?
I've got a PDF that I've dropped into a frame, which I applied an Object Style.  Now I need to create a cross references in the document, that point to the PDF (a chart).  I've got to do this with several PDF's.
When I go to create a cross reference, I can only apply it a Paragraph Style or a Text Anchor, I don't get an Object Style to choose from.
I could put some text in behind the chart, and arrage the chart to the front, but i'd rather create a cross reference to the Object itself.
What do i do?

sammy003 wrote:
How do I cross reference an object using Indesign CS4?
I've got a PDF that I've dropped into a frame, which I applied an Object Style.  Now I need to create a cross references in the document, that point to the PDF (a chart).  I've got to do this with several PDF's.
When I go to create a cross reference, I can only apply it a Paragraph Style or a Text Anchor, I don't get an Object Style to choose from.
I could put some text in behind the chart, and arrage the chart to the front, but i'd rather create a cross reference to the Object itself.
What do i do?
Cross-references only point to text - either a text anchor or a paragraph - not to objects.
If your placed PDF is in an anchored frame, you can point the cross-reference to the paragraph in which the frame is anchored.
If your placed PDF is not in an anchored frame, you can do what you suggest above, or you have these other options:
* place the PDF into a text frame
* create a text frame and group it with the PDF; point the cross-reference to the paragraph in the text frame, or insert a text anchor in the text and point the cross-reference to it.
* you can paste the grouped PDF and text frame object into a text frame to make it an anchored frame.
The idea of a cross-reference is usually to point to a caption or heading. You can't point to the text in a placed PDF because it's really a graphic. You'll probably want a caption to identify the chart. The caption is the text you cross-reference to. The caption can be in the paragraph that holds the anchor, in a text frame grouped with the graphic, in a paragraph above or below the graphic, or in an anchored frame that's positioned near the graphic.
If your layout will not reflow, you probably don't need an anchored frame, but if the layout will reflow, you'll want to use the ability of an anchored to move with the text.
Read about cross-references and anchored frames in Help. If your caption will be numbered, such as "Figure 3," also read about numbered lists and numbering properties of paragraph styles.
HTH
Regards,
Peter
Peter Gold
KnowHow ProServices

Similar Messages

  • Cross-reference does not work inside the object states

    Hi All,
    I use InDesign CS5.5. I have four pages document. first three page has full for text and the fourth page has multi-state object. I am trying to insert the cross reference from the third page to the multi-state object (fourth multi-state object). when I export to SWF and click the cross-reference it does not got to the fourth state, but it goes to only on the first state. can any one help me how to add the cross-reference?
    I have tried on the other way. i have inserted the text anchor on the fourth multi-state object and tried to add cross-reference, still it does not work.
    am i doing something wrong or InDesign does not have this feature.
    please help.
    thanks.
    Regards
    Ramji V K

    @Ramji V K – Do we have a "terminology problem" here?
    Do you really mean a "Cross-Reference" or do you try to control the MultiStateObject (MSO) by a "Button" that does not work propperly?
    I did not do anything with the "Cross-Reference" feature yet, so I might be on the wrong trail…
    Uwe

  • InDesign Tagged Text for Cross-reference Entries

    I'm transforming XML to InDesign Tagged Text. The XML has index codes. For regular page entry type entries I'm having no problem outputting to the appropriate InDesign Tagged Text markup. However, I cannot figure out how to code cross-reference type entries. The document "Using Adobe InDesign Tagged Text CS5 Tagged Text" is extremely limited in its usefulness as it does not list all possible values for tag type tags, etc. I've tried dozens of tag combos and guesses at values. None have worked. Also, for some reason, even though I can create a "See x" type reference in the InDesign document, when I export to InDesign Tagged Text to look at the code, those tags are not included in the export.
    Does anyone have a more definitive list of possible IDTT index tag values?

    I have been exporting various things to IDTT to see what the result would be, with nothing really helpful as a result. I'll try hyperlinks, but reading of the Adobe guide to InDesign Tagged Text and also just looking at the InDesign scripting object model leads me to believe that there must be specific tags to create index-specific cross-reference tags.

  • Cross reference stream

    Hello!
    I'm in real trouble, and I think that the answer is very close to me, but I can't get it by myself...
    Here is my problem:
    I'm currently improving the PDF parser that I've made, adding support for cross reference streams. After a careful reading of the ISO 32000 specification (with PDF 1.7 in background), I've wrote a piece of code that decode the stream and build the corresponding objects (I use Java).
    But the decoded values are meaningless, and I don't understand why!
    The data are like that:
    filter predictor: 12
    encoding : Flate
    fields length : 1 2 1 (this is the W entry values)
    column size : 4
    I assume that there is one color per pixel formed by one byte.
    First, I 'deflate' the data, then 'unfilter' them. Both operations look ok as I've made test for the Flate encoding (ok), and the for the filter I've use it with PDFBox source (and my work unfiltered well what PDFBox filtered...).
    Note that I compared my outputs with those produced by PDFBox, and they are the same... Something may be wrong in the parameters I use, but I no idea now...
    I think I missed out something as I read incorrect data as entry type 18...
    I don't know where to go now, after a whole week of work!
    If any have an idea, I'd be grateful to hear it!

    This is ready algorithm to read PNG predictor styled Cross Reference Stream:
    1. You need to read from PDF three variables: /Columns 5/Predictor 12 and /W[1 3 1] and of course stream
    2. Deflate (encode) stream via zlib (without passing anything more than stream)
    3. Divide encoded stream to rows, but length of each rows must be one bigger than columns variable (in this case is 6) because first value is type xref row
    6. rows without first row go to UNprediction with this algorithm:
    def self.do_png_post_prediction(data, bpp, bpr)
            result = ""
            uprow = thisrow = "\0" * bpr # just zero fill (byte zero - not char zero)
            ncols = data.size / bpr
            ncols.times do |col|    # just for each rows
              line = data[col * bpr, bpr]
              predictor = 10 + line[0]
              for i in (bpp..bpr-1) # just for each values of row without first value
                up = uprow[i]
                left = thisrow[i-bpp]
                upleft = uprow[i-bpp]
                case predictor
                  when PNG_NONE
                    thisrow = line
                  when PNG_SUB
                    thisrow[i] = ((line[i] + left) & 0xFF).chr
                  when PNG_UP
                    thisrow[i] = ((line[i] + up) & 0xFF).chr
                  when PNG_AVERAGE
                    thisrow[i] = ((line[i] + ((left + up) / 2)) & 0xFF).chr
                  when PNG_PAETH
                    p = left + up - upleft
                    pa, pb, pc = (p - left).abs, (p - up).abs, (p - upleft).abs
                    thisrow[i] = ((line[i] +
                      case [ pa, pb, pc ].min
                        when pa then left
                        when pb then up
                        when pc then upleft
                      end
                    ) & 0xFF).chr    # AND 0xFF is very important, without this values growing extremely fast
                else
                  puts "Unknown PNG predictor : #{predictor}"
                  thisrow = line
                end
              end
              result << thisrow[bpp..-1]
              uprow = thisrow
            end
            result
          end
       7. Take bytes from UNpredicted rows, and in this case
       1st byte first byte is type
       2nd byte    
       3rd-5th - is this what You want - offset in decoded PDF to objects (Xref table): offset = 2^9*5th + 2^8*4th + 3rd

  • Cross-reference auto-page numers?

    Can anyone tell me why i cannot get cross-references to work with  automatic page numbering?  Is there some fundamental error i am  making?  I have the master files setup with auto-page numbering based on  'current page.'  All of my pages are numbered sequentially as 1, 2, 3,  etc. and setup with a unique paragraph style.  however, when i try to  reference a page number in the document, none of the pages show up under  the paragraph style in the cross-reference menu.  I have even tried to  use ctrl+shft+click on the desired reference page to bring the page number frame  from the master file onto that specific page, but the text still does  not show up in the cross-references menu.  I feel as though i must be  making some sort of mistake because it seems this could be one of the  more obvious/widespread uses for the cross-reference feature.  Any help  would be great.  Perhaps there is simply another way to do  this?  Thanks!
    Garrett

    GarrettTV wrote:
    Peter,
    I understand that this is probably a more specific use of the feature, no doubt.  It is ultimately unrealistic to expect a program to work exactly as each individual user's project approach dictates.  I dont take the comment as a slam, dont fret.
    My confusion and concern ultimately stems from the fact that, on the surface (granted, I am definitely not a programmer ), it seems like the ability to directly reference the page number would be, almost inherently, already built-in in the sense that the page number is recognized as a product of content placement.  In other words, if the cross-reference knows that changes to the document composition have caused my referenced content to move from auto-numbered page 36 to auto-numbered page 37, yet the reference cannot exist to simply the page number itself.  It has to exist via the content on taht page.  Hopefully I have provided and explanation which makes sense!
    In all honesty, the ability to reference only content and not also page number is only goingot set me back about half.  For my sake, I have a 300 page document which includes hundreds of figures/illustrations, all of which correspond to text explanations in a different part of the document.  Over time, it is anticipated that standards and graphics will be added/subtracted/changed, and therefore, so will the section numbering, page numbering, figure numbering, and the corresponding pages on which all of these pieces of info will occur.  We would like to correspond figures and sections to one number; in this case, the page.  Because each figure/illustration will have it's own page, it is desired to make the figure number and page number match to achieve an easier means of navigating the book.  Basically, I want the text section, which will be read first, to reference figure numbers and/or page numbers (at this point, i have the option of choosing one or the other), but both of these numbers are going to dynamically update.
    So, if that made any sense at all (ha), is there a way to use the cross references to point at a number that is set to automatically/dynamically change?  If there is not, then perhaps I will simply have to create static figure numbers for the referenced content and then just let the page numbers change over time.  If you have any other suggestions, I am definitely open to exploring them!
    Thanks for the continued help!
    Garrett
    Hi, Garrett:
    If I understand your description correctly, it seems that you're asking for an unusual numbering/navigation approach. Is there an example that you've seen that works this way, and that you want to emulate? Is this a publishing style/convention in the particular industry?
    Am I correct in imagining that in a document that contains three figures on discontiguous pages, they might be numbered something like this:
    Page #
    Figure #
    1
    1
    15
    15
    250
    250
    This would result in no figures 2, 3...14...249. Would your document have references to figure 15 on page 15? Would you want your list of figures (LOF) to resemble:
    Figure  number and title                                                     Page     
       1.  Example of the widget in question .............................    1
    15.  Example of another widget .........................................  15
    (sorry about the messy table layout - the HTML is tricky)
    Would your audience be concerned that the figure numbers are not consecutive across a multi-chapter book, or consecutive within a chapter, and restart in each chapter? That is, would a reader think that some figures are missing?
    Is there a specific objection to figure 11 on page 26 becoming figure 11 on page 28, if text content were inserted, or becoming figure 16 on page 29 if figures were inserted? When numbered-list paragraph styles and cross-reference formats are set up properly, cross-references to these figures would update to indicate both the correct number and correct page.
    Have I misunderstood something?
    [EDIT]
    I forgot to ask if your document will be using cross-references interactively in a PDF or other multimedia format. If so, can you give more detail on your expectations?
    Have you looked into InDesign hyperlinks? They can refer to a page number - either "sticking" to the designated page no matter if its page number changes because of reflow or being moved, or "sticking" to whatever happens to become the "n-th" page if the original page is relocated. Search Help for Create a hyperlink to a page.
    [/EDIT]
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    Message was edited by: peter at knowhowpro

  • Cross Reference paragraphs from Word to imbedded Visio document

    I have a word document with about 200 steps included which are cross referenced throughout Word.  I have a Visio flowchart that serves as a visual picture of these steps, but requires manual input and adjustment when we adjust the steps in Word. 
    I don't want to use the hyperlink, I'd rather have a cross reference that will auto update the step number only to match the Word paragraph number.  If I could incorporate cross references from the text in the Visio file objects to the paragraph numbers
    in Word, this would save many hours at my organization.  Additionally, this is Visio Professional 2007 as I couldn't find a forum for 2007, only 2010.  I've searched many forums, but haven't come across any successful answer.  PLEASE HELP MICROSOFT!

    When I've used hyperlinks, I've always tied them to bookmarks in the word document. I haven't heard of a cross-reference between the two products.
    al
    Al Edlund Visio MVP

  • Cross reference that diplays only paragraph number

    I need to create cross-references to numbered paragraphs. The auto number for the paragraphs includes not only a number, but a text character that is part of the number format. For example, a numbered list like 1) 2) 3) and so forth, where the cross reference display only the 1, 2, or 3, and not the closing paren.
    FrameMaker has a building block <paranumonly> which ignores any characters other than digits in the auto number. InDesign doesn't seem to be able to do that. That is why I'm posting on the scripting forum. Perhaps there is a script that can do this?

    In support of Niels' response, I'd written almost the same thing, but 1.__AG__,  entered a more objective response (well put, AG!)  before I sent my impressions.
    I agree with Niels that
    The reader might appreciate a more direct numbering system (the milspec standard of 1.2.2.2.2.1 would be the equivalent section to your 1B2b2a example
    The tags used would be easier to navigate if they used a 1List 2List 3List convention, and that the punctuation used in numbering is a bit confounding at first glance
    The xref format is straightforward if all levels are displayed at that point
    Sadly, and as always, we can help with everything but the politics of your situation!
    I do like Niels' suggestion of using the Running H/F to display the current section, if you're forced to use the numbering scheme as-is!
    Best of luck navigating this with the powers that be.
    -Matt

  • Cross-Reference to Multi-Level Paragraph

    Hi,
    Is it possible to create a cross-reference that does something like this:
    '1.B.(1)(a)2) on page XXX' from the following:
    I have created a cross-reference format as follows:
    <$paranum[1. Heading]><$paranum[A. Text/Heading]><$paranum[(1) Text/Heading]><$paranum[(a) Text/Heading]><$paranum[1) Text/Heading]><$paranum[a) Text/Heading]> on page\ <$pagenum>
    This works if I cross-reference from 'text10' to 'text9', which returns - '1.B.(2)(b)2)a) on page 6001',
    and 'text10' to 'text2' returns '1.B. on page 6001'.
    It fails when I go from 'text10' to 'text13' giving '1.C.(4)(b)2)b) on page 6001' instead of just '1.C. on page 6001'.
    Any help on what I'm doing wrong?

    In support of Niels' response, I'd written almost the same thing, but 1.__AG__,  entered a more objective response (well put, AG!)  before I sent my impressions.
    I agree with Niels that
    The reader might appreciate a more direct numbering system (the milspec standard of 1.2.2.2.2.1 would be the equivalent section to your 1B2b2a example
    The tags used would be easier to navigate if they used a 1List 2List 3List convention, and that the punctuation used in numbering is a bit confounding at first glance
    The xref format is straightforward if all levels are displayed at that point
    Sadly, and as always, we can help with everything but the politics of your situation!
    I do like Niels' suggestion of using the Running H/F to display the current section, if you're forced to use the numbering scheme as-is!
    Best of luck navigating this with the powers that be.
    -Matt

  • Cross reference to an image on textless pages

    My InDesign project has pages with only graphics on some pages, or even a single image across two pages. I'd like to reference them for two purposes-
    to build a list of plates - could be file name and page number as a starting point.
    to reference in explanitory text, eg "See earlier work X on page 22 and Z on pages 10-11"
    I can't figure out how to associate a marker with an image. I seem to have to create an empty text box as a child of the graphic and insert a text anchor if I want to insert a cross reference to that graphic elsewhere. It's a bit cludgy and I don't really know what to do with the graphics that span pages, or how to generate a list of plates when I'm done- I imagine I should be using the index tool, but then, will I have to create both an index and a text anchor? Or can a cross-reference link to a page reference created in the index tool, instead of a to text anchor/hyperlink destination? Or is there a way to index and cross reference non-text objects?
    I'm using CS5 version of InDesign.

    See http://forums.adobe.com/message/2614941 where this is discussed.
    Hope that helps

  • [AS] How to make cross reference at insertion point

    Hi,
    I have a book ("indb") including several documents with several "anchors"
    (german translation: "Textanker") where cross references from different documents are linked to.
    What I already got is to reference all anchors and collect them in a list.
    Now I would like to make a new cross reference at the insertion point
    in a text frame of the active document - can't get it to run :-(
    Is anybody out there who can post a AS-sample doing this?
    Thanks in advance!
    Here is the reference to an already existing anchor:
    {hyperlink text destination id 44155 of document "kapitel 2.indd" of application "Adobe InDesign CS4"}
    The code I tried to make a new cross reference looks like this - but of course doesn't work:
    tell application "Adobe InDesign CS4"
    tell active document
    make new hyperlink with properties {name:"new hyperlink", destination:hyperlink text destination id 44155 of document "kapitel 2.indd"}
    end tell
    end tell

    Thanks a lot - got it now!
    Maybe it could be helpful for others to look at your answer  
    with the placeholders replaced by "real" strings as it was hard for me
    to figure out the right form:
    tell document 1
    set theDest to make hyperlink text destination with properties {name:"Some name", destination text:<a reference to the relevant text>}
    this line for example looks like this =>
    set theDest to make hyperlink text destination with properties {name:"Some name", destination text:insertion point 902 of story id 44083 of document "kapitel 3.indd" of application "Adobe InDesign CS4"}
    set theSource to make cross reference source with properties {name:"Some name",source text:< reference to the relevant text>}
    this line for example looks like this =>
    set theSource to make cross reference source with properties {name:"Some name", source text:cursorPosition, applied format:cross reference format id 44305 of document "kapitel 1.indd" of application "Adobe InDesign CS4"}
    where "cursorPosition" was defined before by
    set cursorPosition to object reference of selection
    (the cross reference source needs the applied format reference too)
    make hyperlink with properties {source:theSource, destination:theDest, visible:true, highlight:invert, width:thick, border color:dark green, border style:dashed, name:"Whatever" }
    this line for example looks like this =>
    make hyperlink with properties {source:theSource, destination:hyperlink text destination id 44184 of document "kapitel 3.indd" of application "Adobe InDesign CS4", border color:black, highlight:none, border style:solid, hidden:false, visible:true, width:thin}
    end tell

  • XML Bookmarks & Cross References Broken

    Problem: Bookmarks and cross-references created in XML output
    files generated using RoboHelp X5 do not work. Any suggestions?

    Hi Lynnca,
    The text of a cross-reference is a property of the FrameMaker xref object that is expected to be autogenerated, so it is not included in the markup. The XML version of an xref is similar to the internal FrameMaker model, where you insert an xref an the text is automatically created and controlled internally. An xref saves as an empty element with information about how to find the source and regenerate the text, but no indication of what text was originally displaying when you exported the markup.
    Properly configured, the xref text will autogenerate when you reimport to Frame, so the empty element is OK there. If you are using the XML with some non-Frame post-process, that process will need to accommodate this convention for representing xref links.
    Note that the refint tag is actually closed, as indicated by the trailing slash just before the final angle bracket. This is a shortcut for representing elements with no content.
    Russ

  • Cross-References Text Dropped?

    I'm having a problem with cross-references exporting to XML.  I'm using Frame 8, and I have associated an element as a FrameMaker "cross-reference".  I then go to insert that element and everything seems to work properly (no errors).<br /><br />But then, I open the XML and get something like the following:<br /><br /><l2item><para>Approval for Return to Service Procedures. See <refint<br />    refloc = "RSM0420" reftype = "Heading &#x0026; Page"/>.</para></l2item><br /><br />So, it drops the text of the link and replaces it with a "." and then also does not close out the tag "</refint>".<br /><br />Any ideas of what is going on?<br /><br />Thanks!

    Hi Lynnca,
    The text of a cross-reference is a property of the FrameMaker xref object that is expected to be autogenerated, so it is not included in the markup. The XML version of an xref is similar to the internal FrameMaker model, where you insert an xref an the text is automatically created and controlled internally. An xref saves as an empty element with information about how to find the source and regenerate the text, but no indication of what text was originally displaying when you exported the markup.
    Properly configured, the xref text will autogenerate when you reimport to Frame, so the empty element is OK there. If you are using the XML with some non-Frame post-process, that process will need to accommodate this convention for representing xref links.
    Note that the refint tag is actually closed, as indicated by the trailing slash just before the final angle bracket. This is a shortcut for representing elements with no content.
    Russ

  • How to find cross references

    Hi,
    I try to delete an old project in ODI, but I get the following error message:
    ObjectVariable : CTL_MAX_SESSION is referenced by: Txt CrossRef : 31612011, Txt CrossRef : 31636011, Txt CrossRef : 31643011, Txt CrossRef : 31645011, Txt CrossRef : 31649011, Txt CrossRef : 31651011, Txt CrossRef : 32852011, Txt CrossRef : 32876011, Txt CrossRef : 32883011, Txt CrossRef : 32885011, Txt CrossRef : 32889011, Txt CrossRef : 32891011
    Cannot remove
    For me it looks like that am accidentially using the ODI variable CTL_MAX_SESSION of this project in other ODI projects.
    But I don't know where and the CrossRefs in the error message are not very helpful...
    Does anybody know how to find the corresponding objects to such cross references in error messages?
    Thanks in advance!
    Cheers,
    Helmut

    Did you try to expand "Used in" beneath the variable name?
    If it's empty, you'll have to dig in the work repository tables. Start with SNP_TXT_CROSSR, SNP_STEP.

  • DAO Pattern: Organization and cross references

    Hello,
    in general I have very good experiences using DAOs. But there are two issues, which becloud the pattern
    in my cases.
    First, I am using Hibernate and strongly depend on custom entity names. So when I use a DAO, say
    CustomerDAO, and need to use a join to create the result of all Products which were buyed by some
    customers, I need to know the entityName carried by the ProdcutDAO. Technically this is no problem,
    because CustomerDAO can instantiate a leightweight ProductDAO and retrieve the name. But then
    I have a cross references between two DAOs, which couples them more, than it should be.
    Another concern is to decide which operation belongs to a DAO. If I join some customer data with address
    data (another entity) and some product data (e.g. find all name and adress of customer, which have a product
    bought today) and have no self-contained type for this result, which DAO gets the method?

    Serethos_0 wrote:
    Hello,
    in general I have very good experiences using DAOs. But there are two issues, which becloud the pattern
    in my cases.
    First, I am using Hibernate and strongly depend on custom entity names. So when I use a DAO, say
    CustomerDAO, and need to use a join to create the result of all Products which were buyed by some
    customers, I need to know the entityName carried by the ProdcutDAO. Technically this is no problem,
    because CustomerDAO can instantiate a leightweight ProductDAO and retrieve the name. But then
    I have a cross references between two DAOs, which couples them more, than it should be.
    Sometimes coupling cannot be avoided. Especially in situations where you a priori know that you will need a whole graph of objects returned (regardless of whether they are fetched eagerly or lazily). You can write a composite object that links the two together. [https://www.hibernate.org/86.html]
    Another concern is to decide which operation belongs to a DAO. If I join some customer data with address
    data (another entity) and some product data (e.g. find all name and adress of customer, which have a product
    bought today) and have no self-contained type for this result, which DAO gets the method?I think the clue is in your own response "have no self-contained type for this result". Generally, you should create an object (and in many cases an interface) for anything important. That's point #1. Another point is that you can have composite data access objects (DAO's that simply chain other DAO's together). Or, if you are opting for a service-oriented architecture [http://en.wikipedia.org/wiki/Service-oriented_architecture], the service is a logical place to put this logic chaining DAO's together.
    - Saish

  • Turn off live update of cross references

    I'm using Indesign CS6 and javascript.
    Is there a way to temporary turn off the 'live update' feature of cross references between separate indesign files?
    We find this feature to be a real pain if more than one person is trying to work with the files as it slows everything dramatically.
    I've searched through the DOM and Adobe InDesign CS6 (8.0) Object Model JS: Table of Contents but I guess I don't know the right terminology to look for.
    Hope you can help.
    Thanks,
    John

    Possibly you have obtained a modified version of Firefox. Preferences, chrome, js or whatever may have been modified.
    If work requires you to develop on certain versions, and you are doing some of that on this computer, why not install multiple copies of Firefox, including the required versions. I trust the required versions will be the currently supported versions; at the moment that is 3.6, 6, 7, 8 or 9
    You should ensure you use multiple profiles so each has a unique profile.
    For the current problematic firefox 6 do a clean install, deleting the original program files, but not the profile files. (or possibly an additional install in a custom location with a new profile - allowing you to retain the current firefox 6, and a standard firefox 6) Profiles may be cloned/copied if required, bookmark libraries may be accessed from other versions/profiles if necessary, and multiple versions can be run concurrently. ( I talk from a Windows perspective, but it is unlikely Linux is going to differ)
    See
    * http://kb.mozillazine.org/Standard_diagnostic_%28Firefox%29#Clean_reinstall
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * [[managing profiles]]

Maybe you are looking for