How to identify this page having image caption element

Hi,
Any one help me. Indesign CS2 (PC version). Im reading textframes on this page but i didn't get what are all the elements having this page or particular element have this page?
regards,
sudar

Hi,
May the below code also helpful for you:
var myPages = app.activeDocument.pages;
alert(myPages.length)
for(i=0; i<myPages.length; i++)
    if(myPages[i].appliedMaster == null)
        alert("Blank Page is : " + myPages[i].name)
    else
        alert("Applied Master Page  is : " + myPages[i].name)
Thanks
Siraj

Similar Messages

  • The volume keys on my Logitech K760 wireless keyboard do not work with my 2.3 GHz, Intel Core i5 Mac mini which runs Mac OS X 10.7.4. Anyone know how to correct this without having to re-code firmware?

    My first post to the Apple Support Community so it looks like all I wanted to know is covered in the title. The research I have done led me to solutions that I am not comfortable trying for fear of irreparably damaging my keyboard and/or Mac mini. Does anyone have a simpler solution? Please? Hellooooo?
    Just in case the title is too long to show, I have re-pasted here:
    The volume keys on my Logitech K760 wireless keyboard do not work with my 2.3 GHz, Intel Core i5 Mac mini which runs Mac OS X 10.7.4. Anyone know how to correct this without having to re-code firmware?

    BDAqua wrote:
    Hello & welcome to the Forums!
    I think Spark cured this for another person and the same problem...
    http://www.shadowlab.org/Software/spark.php
    http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=ukelele
    http://doublecommand.sourceforge.net/
    Thank you for the response. Unfortunately, I could not figure out how to work the above applications. I thought that i had managed to assign the appropriate function keys in Spark to their volume counterparts, but it had no effect. Below is a screen shot. Do you see anything amiss?

  • How to populate a page with images in across/down direction?

    Hi,
    Does anyone know how to populate a page with images in across and down direction (for example 6 X 6 )? It seems that I cannot use data table because records are only running downward and each row can have one record.
    Any suggestion would be appreciated. thanks.

    Alex,
    You can create your own tabular form using APEX_ITEM API's
    Create report and you can put similar code to following
    SELECT APEX_ITEM.TEXT(1,col1) pk1, APEX_ITEM.TEXT(2,col2) pk2 FROM your_tableSo data will be displayed in TEXT boxes as if it's a tabular form. Now you need to handle INSERT/UPDATE/DELETE processes manually. You can easily handle INSERT and DELETE. But handling UPDATE can be a nightmare. What if user has updated both the column values?
    Updated details
    One way out would be to use ROWID as Primary key to handle DELETE and UPDATE
    SELECT APEX_ITEM.CHECKBOX(1,ROWID) tick, APEX_ITEM.TEXT(2,col1) pk1, APEX_ITEM.TEXT(3,col2) pk2 FROM your_tablebut yet I suggest to go for proper primary key..
    Regards,
    Hari
    Edited by: Hari_639 on Dec 3, 2009 6:52 PM

  • How do I make a panorama image in Elements 11 from 5 separate photos?

    How do I make a panorama image in Elements 11 from 5 seperate photos

    You can browse your files directly from Photomerge dialog box also. Here is the descriptive help link to guide you on how to create your perfect dreamy panorama http://helpx.adobe.com/photoshop-elements/using/stitching-together-panoramas.html

  • How to identify last page of a group

    Hi reports gurus!
    I'm trying to have report of employee(table emp) group by department(dept). I want to have 5 employees per page and per departement. A department can have 10 employees. So we'll have 2 pages for this department.For Each page a want to have sum of salary. Only at the last page of a department i want to have the sum of salary per page and also total of salary for the current department.
    So i want to know how to identify the last page of departement in order put only on this page the sum of salary for the departement?
    PLZ help is't very very important.

    Repeated masterpages use the same logic as any other repeated object - they have instance numbers.
    To address the second instance you can use an expression like.
    xfa.resolveNode("form1.masterpage[1].subform").presence = "hidden";
    If you're not sure about the correct SOM expression you can use a small script for testing.
    Put a textfield into the subform you want control.
    Add this script into its calculate event.
    this.rawValue = this.parent.somExpression;
    If you preview the form in Designer you'll see the SOM expression of the text fields parent, which is the subform.
    Copy it and put it into the script to hide the subform.

  • How to identify black and white images for dynamic collection ?

    Hello
    I would like to make a dynamic collection to quickly find my black & white pictures. It is very easy to do with your original files which have undergone a black and white (Grey) conversion under the developpement module : you have to specify "treatment - is - Grey level" in the dynamic collection description.
    But what about original Grey levels images ? I have some scans of black and white negatives, and I would like to see them in the same collection.
    I have tried to use EXIF metada, but none of them is related to this information (neither does IPTC). But such images are well detected as Grey levels images in the development module...
    I don't know how to do (unless manually tagging images of course).
    Does anybody have a clue for an automated solution ?
    Thanks
    Erwann

    yes Eclipse 2.0 provides runtime chartting.
    Please refer to this thread
    [chartting|Re: Charts won't appear in CR Viewer?]
    void AddChart(ReportClientDocument clientDoc, String chartTitle)
      ChartDefinition chartDefinition = new ChartDefinition();
      chartDefinition.setChartType(ChartType.group);
      IDataDefinition dataDefinition = clientDoc.getDataDefController().getDataDefinition();
      Fields conditionFields = new Fields();
      IField field = dataDefinition.getGroups().getGroup(0).getConditionField();
      conditionFields.addElement(field);
      chartDefinition.setConditionFields(conditionFields);
      Fields dataFields = new Fields();
      for (int i = 0; i < dataDefinition.getSummaryFields().size(); i++)
        IField summaryField = dataDefinition.getSummaryFields().getField(i);
        dataFields.addElement(summaryField); 
      chartDefinition.setDataFields(dataFields);
      ChartObject chartObject = new ChartObject();
      chartObject.setChartDefinition(chartDefinition);
      ChartStyleType chartStyleType = ChartStyleType.pie;
      AreaSectionKind chartPlacement = AreaSectionKind.pageHeader;
      chartObject.getChartStyle().setType(chartStyleType);
      chartObject.setChartReportArea(chartPlacement);
      chartObject.getChartStyle().getTextOptions().setTitle(chartTitle);
      chartObject.setHeight(5000);
      chartObject.setWidth(5000);
      chartObject.setTop(1000);
      IArea reportHeaderArea = reportDefController.getReportDefinition().getReportHeaderArea();
      Section chartSection =(Section)reportHeaderArea.getSections().getSection(0);
      clientDoc.getReportDefController().getReportObjectController().add(chartObject, chartSection, 1);
    Further you can format the fields as per your requirement.
    Hope this helps
    Regards,
    Tej

  • How To Convert Multi Page Tiff Image Through open office in application

    I will Appreciate Any Effort Or Reply Which Can Tell Me , To convert a multi-page tiff image in pdf format in application i.e not on desktop using simple open -office but through coding. I doubt if there Exists Ny Plugin Or Separate Library Which Can Do Tht.  Code Or Library inJava Language will Be Preferable

    Your question does not make any sense. First, PDF does not support multi-page TIFFs. DO you have a PDF that you are trying to convert to WORD or what. It is unclear of what you are starting with and what your end goal is. If you are dealing with coding, you may need to check the SDK forum, but trying to understand what you are trying to do would be a good idea first.

  • How to do this page in hibernate

    like this forum, the page is
    Pages: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10... Next �
    how to do it, i can't find the source, i am a junior, who can help me, thank you very much

    I'd start with getting a book or searching the web on "developing web applications" and the technical term for what you're trying to do is called "database paging"

  • Can anyone identify this Canon SLR Image error?

    Good Day Canon enthusiasts,
    &nbsp;&nbsp; Does anyone know what happened to this image? Specifically the 1/3 split in the image.
    This is the only photo that did this out of the 100 photos taken that day.
    Canon 1D Mark 3 + 85mm 1.2
    Thanks in advance!

    Mike... I want to extend out a thank you for taking the time to help out with this issue.  I hope a lot of other canon users find this informational in the event it happens to them in the future.
    to answer your questions:
    Does this occur when using multiple memory cards, or just one specifically.
           Very nice trouble shooting question, but I have bad news.  I already wiped the media cards for another project after backing up original photos.
    2.   How often do you format your memory cards?
           I format after every big project that almost fills up the media cards or if it's multiple smaller projects, I would just create multiple new folders on the same card.
    3.  What shutter speed was used in the provided image?
         1/160. 
    4.  Does the issue go away or become less frequent with slower shutter speed settings?
         That frame as #68 out of about 100 photographs on that set.  I think that was the 2nd time it happened. It doesn't happen frequent enough to test it at lower shutter speeds.  The past few days for another project I have put on about 20,000 shutter clicks tethered to a MPB & to my knowledge I have not seen that error.
    Mike, thank you again!

  • How to Identify a page's GUID?

    I am to a point where I have added a new page using an html editor on a published (by client) website but the page will not show up in the menu. Obviously, by default the "current-page-GUID" that is reflecting is the GUID of the page that I duplicated. I would like to be able to have my new page show up in the menu and add the new page's GUID to the html of the new page so when a visitor is on the page it reflects the correct Title.
    I have located the current-page-GUID in the script on the new page and have deleted the current-page-GUID (the actual number) that coresponds to the page I duplicated but two questions remain:
    1. How do I get my new page to show up in the menu.
    2. How do I find the GUID of the new page I created so that I can add it to the "current-page-GUID" area on the new page html file?

    A huge thanks to Woydor who provided me with the answers I needed (from Modify iWeb from Another Program thread).
    1: Add an entry in the feed.xml file.
    2: Is the page you created in iWeb?
    If it has a menu, the ID is in the code you see above.
    If the page has no menu, then there is no ID.
    To create your own UUID :
    https://www.google.com/search?q=uuid+generator
    In my case I needed to create one. Applied as suggested and it worked perfectly!

  • How to do this Page Numbering

    Hi,
    I am developing a report of customer wise sales analysis report, in this report we can generate range of customer, every customer have more than one page.
    In this report I want to display page no in customer wise, ie; each customer wise I want to re-initialize page no.
    Please give me a solution to solve this.
    Ex.
    Page 1/ 2
    A0001
    Page 2/ 2
    A0001
    Page 1/3
    C0001
    Page 2/3
    C0001
    Page 3/3
    C0001
    Thanks,
    Jen.

    Hi,
    1- In the paper layout view of your report click the Edit Margin button in the toolbar
    2- Create a field object for the customer wise
    3- In the property inspector of the field set the source property to page number,set the visible property to no and the horizontal elasticity to variable.
    4- In the page numbering property under field, double click the page numbering property.
    5- In the page numbering dialogue box choose reset at your customer group, so that the page number will reset at the beginning of each new customer.
    Repeat the five steps for the total number of report pages and put reset at to report.
    Create a boilerplate text object in your margin area and reference the two created fields.
    Regards
    Mostafa Abolaynain

  • How to execute this procedure(having out parameters)

    PROCEDURE emp_cursor (
    v_deptno IN VARCHAR2,
    v_doj OUT DATE,
    v_empno OUT NUMBER,
    v_sal OUT NUMBER
    );

    Hi,
    812809 wrote:
    PROCEDURE emp_cursor (
    v_deptno IN VARCHAR2,
    v_doj OUT DATE,
    v_empno OUT NUMBER,
    v_sal OUT NUMBER
    emp_cursor ( expr_1
               , var_2
               , var_3
               , var_4
               );Where var_2, var_3 and var_4 are variables with the appropriate data types. You must pass variables for the OUT parameters.
    Expr_1 can can a variable, a literal, or any other kind of expression that evaluates to a VARCHAR2.
    I hope this answers your question.
    If not, post a little a simple test script (with as much of the coding as you know how to do) so that people can re-create the problem and test their ideas. Post the results you want from that code. Explain how you get those results.
    Always say which version of Oracle you're using.

  • How to make this type of image - N00b question

    Hi there folks,
    Just wondering, with illustrator, what would be the easiest way of making an image like the one below? I would like to create my own just to practice on Illustrator and change some of the squares to different colours etc. It's an image that is the background of the Public Transport Victoria website (ptv.vic.gov.au) and is not my property of course. I am just wanting to know how would be the best way of creating such an image and how could I do it and change the colours of numerous "triangles". From scratch. I'm new to Illustrator and am keen to learn Thank you in advance.

    Any 3d modeling app can easily create that. It is a mesh object using 3 point polygons, with a few 4 point polygons in it.
    Here I will show you what I mean:

  • How to identify this font?

    I have to re-create two logos because the original psd file was lost by the owner. The one thing I need help with is identifying the font they used. I don't use a ton of fonts, so this isn't my strong point. Links to the two logos are below. It's the text in black I'm concerned with. At first I thought it was Arial, then I noticed the horizontal bar in the "t" extends farther to the right in the logo than it does when I type this in Arial in a text document. Suggestions?
    http://www.keithpurtell.com/kthings/TMlogo.png
    http://www.keithpurtell.com/kthings/TNlogo.png

    To me they look like different fonts for each logo...  Note the difference in the curvature of the lower case a for example.
    To me, TNLogo appears to be Verdana, and TMLogo appears to be Helvetica.
    -Noel

  • I created a navigation page and published as portlet now how to add this pg

    I created a navigation page and published as portlet now how to add this page... i dont see in the portlet staging area.... i left the check mark publish as portlet on when i created the page...
    how do i add this to the page...

    The Navigation Page Portlet should be available in the Portlet Repository - select Published Portal Content -> Your Page Group Name
    Lisa

Maybe you are looking for

  • Logical problem in Purchase Order Release (urgent)

    Hai Guys ,                         I am defining a workflow for PO release and i did the release procedure for 3 levels of approve. My workflow running successfully. the workitem send to the appropriate users and they release the workitem as very wel

  • What needed to save in move from 8.6 to 9.2.2 and new HD?

    I'm installing a new 40G HD in my 266 iMac with OS 8.6. I was going to burn the files and applications I want to keep to a disc, then move them over after I install 9.2.2 on the new drive. Most of the applications and data files I use are on my deskt

  • I am confused with Mac OS X Server Time machine backup plan

    I just purchased a Mac mini with Snow Leopard server. I just start use this Mac mini for home file sharing server, iTune musics, photo processing (under my user/Picture directory) and iPhone coding (under my user/Document directory). Since there are

  • DTP failed due to exception error

    Hi there, DTP failed due to an exception error message An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor declared in a RAISING clause Please Help Thanks J

  • HT4113 How would i un-freeze my iphone 3G?

    How would i un-freeze my iphone 3G?