Problem with Figure numbering

HI,
I am new to InDesign, so can anyone help me with my problem
i am creating a document in which i need unique figure numbering
and is working properly in my main text box
like  Figure-1, Figure-2......
the problem is when i create another text box for the numbering the figure number changes
in this image Figure 3 and Figure 4 are in main text box
and i made separate text box for Figure 46.
actually instead of 46 it should be 4 and instead of figure 4 it should be figure 5

First mistake, posting in the Print Design forum rather than the InDesign Forum:
http://forums.adobe.com/community/indesign

Similar Messages

  • Application Express 3.1 + BI-Publisher + problem with formating numbers

    Hello together!
    I use the Oracle BI Publisher Template Builder for Word (10.1.3.4) to generate RTF-Templates. I upload these templates in Oracle Apex (Advanced support-->BI-Publisher/OC4J as print service).
    It works well, but I have a problem with formating numbers.
    In Template Builder I define following number formats, for example: #.##0 for numbers like 1.454.234 and #.##0,00 for numbers like 54,80
    In Template-Builder Preview it looks well.
    But whatever I do, in use with Oracle Apex dots and comma are allready interchances in the printout.
    That means,
    1.454.234 become 1,454,234 in PDF-Report
    54,80 become 54.80 in PDF-Report
    Other than that, the layout is exactly the same like in Template Builder defined.
    What's wrong?
    Do I have to change any country parameter?
    Juliane

    I also had the same problem. I tried with normal formating of 99g99g999d99 instead of ##,##,##0.00 and it has resulted correct way.

  • Problem with page numbering in Acrobat XI Pro

    Hello community,
    I got a problem with page numbering with certain documents in Acrobat XI Pro.
    The next error comes up:
    Translated in English:
    There is an error occured when getting up of page-content.
    This is occured with certain pdf-documents (i cannot uploading this file).
    Is someone have similar problem, or has someone hev a sollution for this?
    Greetings,
    Bart

    This usually means the file is corrupt, probably because it was not created
    using a standard application like Adobe Acrobat.

  • Problem with decimal numbers..

    hi i posted the other day with a problem I had. I thought it was all sorted but I have just realised that there is another problem.
    I have the following code for an applet:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextFieldExample extends Applet implements ActionListener {
    TextField textInput;
    String text = "";
    public void init() {
    textInput = new TextField (20);
    add(textInput);
    textInput.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    text = textInput.getText();
    repaint();
    public void paint(Graphics g) {
         int x = Integer.parseInt(text);
         double y = Math.abs(x);
    g.drawString("You wrote " + text,20,500);
         g.drawString("The absolute value is: " + y,20,100);
    I am trying to do the applet so when you type in an angle, it tell you the sine, cosine etc. I can get it to work with whole numbers like 1,10,300, but it won't work when i try to use decimal numbers. Can anyone help?
    Thnk you in advance!
         

    Hi,
    you are using Integer.parseInt() to convert the input, so it will only work if the text is an integer. Use Double.parseDouble() instead.
    Andre

  • Problems with line numbers (building via ant).

    We use ant for our builds and are having a problem with getting line numbers into call stacks. When running on linux we do not get the lines for our projects (not all projects have debug option), just (Unknown Source), however we do see line numbers for the tib jars. Eclipse is fine, we can see all line numbers as appropriate.
    I have tried "lines", "lines,source" and "lines,var,source" - all build a different sized jar which suggest something is getting added. However as we see line nums for tib it suggests it's some strange java runtime option. We're using sunjdk 1.5.10 and also jrockit.
    Any ideas/answers most appreciated.
    Many thanks, Declan
    Ant task
    <target name="compile" depends="init">
         <javac target="1.5" destdir="${classes}" debug="on" debuglevel="lines,source">
              <src path="${src}"/>               
              <classpath refid="default.classpath"/>
         </javac>     
         <javac target="1.5" destdir="${classes-test}" debug="on" debuglevel="lines,source">
              <src path="${testsrc}"/>
              <classpath refid="default.classpath"/>
              <classpath location="${classes}"/>
         </javac>
    </target>
    Example output
    java.lang.IllegalArgumentException: Field data is null
    at com.tibco.tibrv.TibrvMsg._addImpl(TibrvMsg.java:1503)
    at com.tibco.tibrv.TibrvMsg.add(TibrvMsg.java:1020)
    at com.lehman.fid.jdt.channel.tibrv.TibrvMessage.putObject(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.publishDepth(Unknown Source)
    Cmd line
    VM_OPTS="-Dlogfile=../../log/CmdOrderBook.log"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.authenticate=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.password=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.ssl=false"
    PARAMS="-springcfg orderbook-context.xml -instancename CmdOrderBook"
    exec ${JAVA_HOME}/bin/java -DappInstance=CmdOrderBook -server -Xmx500M -Xms250M -Xincgc ${VM_OPTS} com.lehman.cmd.etrading.orderbook.CommoditiesOrderBook ${PARAMS} >> ../../log/Cm
    dOrderBook.out 2>&1

    We use ant for our builds and are having a problem with getting line numbers into call stacks. When running on linux we do not get the lines for our projects (not all projects have debug option), just (Unknown Source), however we do see line numbers for the tib jars. Eclipse is fine, we can see all line numbers as appropriate.
    I have tried "lines", "lines,source" and "lines,var,source" - all build a different sized jar which suggest something is getting added. However as we see line nums for tib it suggests it's some strange java runtime option. We're using sunjdk 1.5.10 and also jrockit.
    Any ideas/answers most appreciated.
    Many thanks, Declan
    Ant task
    <target name="compile" depends="init">
         <javac target="1.5" destdir="${classes}" debug="on" debuglevel="lines,source">
              <src path="${src}"/>               
              <classpath refid="default.classpath"/>
         </javac>     
         <javac target="1.5" destdir="${classes-test}" debug="on" debuglevel="lines,source">
              <src path="${testsrc}"/>
              <classpath refid="default.classpath"/>
              <classpath location="${classes}"/>
         </javac>
    </target>
    Example output
    java.lang.IllegalArgumentException: Field data is null
    at com.tibco.tibrv.TibrvMsg._addImpl(TibrvMsg.java:1503)
    at com.tibco.tibrv.TibrvMsg.add(TibrvMsg.java:1020)
    at com.lehman.fid.jdt.channel.tibrv.TibrvMessage.putObject(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.buildSubMessage(Unknown Source)
    at com.lehman.cmd.etrading.orderbook.dp.DefaultDepthPublisher.publishDepth(Unknown Source)
    Cmd line
    VM_OPTS="-Dlogfile=../../log/CmdOrderBook.log"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.authenticate=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.password=false"
    VM_OPTS="${VM_OPTS} -Dcom.sun.management.jmxremote.ssl=false"
    PARAMS="-springcfg orderbook-context.xml -instancename CmdOrderBook"
    exec ${JAVA_HOME}/bin/java -DappInstance=CmdOrderBook -server -Xmx500M -Xms250M -Xincgc ${VM_OPTS} com.lehman.cmd.etrading.orderbook.CommoditiesOrderBook ${PARAMS} >> ../../log/Cm
    dOrderBook.out 2>&1

  • Problem with a numbered list

    I recently upgraded to RoboHelp 8 and I opened my old project to update an HTML online help. Whenever I generated the online help and I clicked to view the result on the PC with RoboHelp 8, everything looked fine. Then, I copied all generated files to a server to be part of a web application. Today, I found out that when I viewed the online help on the server using the same PC with RoboHelp 8, all numbers of numbered lists displayed against the left side of the main body of the help are not displayed correctly. Part of each number got chopped off. Again, if I go to the !SSL! folder and display the online help that I generated, it looks fine. I also found out that when I used another PC to view the same online help file from the server, all the numbered lists looked fine. The PC with RoboHelp 8 runs with Windows 7 Enterprise 64 bit and the PC that I could see the numbered lists correctly runs with Windows 7 Professional 64bit. I don't understand why the two PCs do not display the same online help the same way. I asked someone to use his PC running Windows XP with IE7 and the numbered lists were not displayed correctly.
    I read some discussions and there were a suggestion to use the "Convert RoboHelp Edited Topics to HTML" option to correct some problems with RoboHelp 8, so I tried it and it seemed to help. When using the option, I could see the numbered lists correctly. I am still wondering why two PCs did not display the same online help the same way. I am trying to see if there is an option with IE that can be used to solve this problem instead of deploying a new version of the online help. Does anyone know what the "Convert RoboHelp Edited Topics to HTML" option actually does. Will I be introducing more problems using this option?
    RJ

    Thank you very much for replying. The convert option seems to fix the problem and I will probably redo my lists later because I did not seem to be able to make any changes to them.
    I am still puzzled why one PC running the 64 bit Windows 7 Pro is able to display all numbered lists correctly and the other PC running the 64 bit Windows 7 Enterprise using the same version of Internet Explorer is not able to display any numbered lists correctly. I looked around with all the options for Internet Explorer and they are the same. I also noticed that when I used Google Chrome and FireFox, the numbered lists are displayed fine. I also noticed that if all the online help files are saved locally on the PC that is not able to displayed the numbered lists correctly, when I display the online help, the numbered lists look fine. It does not work when displaying the online help from a server. If you know an option that might make the online help to work properly with Internet Explorer without deploying a new version, please let me know.
    Thanks,
    RJ

  • Problem with serial numbers for Lightroom 5

    I bought a physical copy of Lightroom 5, 38 days ago. As my Mac doesn't have a CD driver, I downloaded the 30 days trial version on Adobe website and now my trial time is over I try to enter the serial number I had with the physical package I bought 38 days ago and it doesn't work. Take in note than I converted the serial number from the box (serial number with letters and numbers) into a the active serial number on Adobe website (serial number with numbers only) 38 days ago. This ''active serial number'' doesn't work now ..

    I figured out than my ''active serial number'' was too old. Now I have a new one and I don't know what to do with it. I login Lightroom 5 and my development page is blocked .. It's written I know have 29 days left remaining for my trial version of Lightroom... I have an activation number, what does I do with it know ?

  • Problem with Document Numbering

    hi
       i have created user form and UDO also.If i press the add button i got a error like <b>"to generate this document,first define the numbering series in the admin. module"</b>.
      but i gave the document number in the numbering setup.how can i solve this problem ? please help me
    thanks in advance

    Questions:
    - Does the user have full authorisations (Test if user can open a AR invoice (if they can, then not the problem))?
    - If no data in the underlying tables. Try deleting and recreate them
    - Perhaps old data gives problem. If possible try creating the UDO with another UID

  • Problem with document numbering file

    Hi,
    i created today a new period 2007 and set the numbering serie. After all I connected the document with the current period 2007. Now when i open for example an invoice i get the system message: "Problem in Datei zur Belegnumerierung. Datei wiederherstellen und bei Wiederholung Kontakt mit Software-Lieferanten aufnehmen."
    Sorry but i work with an german language SAP B1 Client.
    Thx, for reply
    Frank

    Frank,
    The forum that you have posted your question in is for questions related to the SAP Business One SDK.  Your question seems to be an application related question.  For SAP Business One application questions, you should post these in the SAP Business One Discussion Forum located at ...
    http://cpsn-channel.sap.com/businessoneforum
    Eddy

  • Safari Problem with All Numbers Look Strange

    All of the numbers accept for the Apple website look odd. I have taken a screenshot of the issue, but I'm not sure how to post it. The numbers are in individual boxes separated by dashes. Similar to old clocks with the flipping numbers. Software updates are all up-to-date. Any help would be great before I take it in to the Mac store.

    MRS --
    Welcome to Apple Discussions!
    We're all other Mac users here, sharing solutions.
    If you go to yfrog, skitch or photobucket, and upload your screen shot.
    They will give you a URL. Paste it in your next response
    so we can see it, OK?
    Did you by any chance load on any new fonts lately?

  • Problem with reading numbers from file into double int array...

    Okay, this is a snippet of my code:
    public void readMap(String file){
            try {
                URL url = getClass().getResource(file);
                System.out.println(url.getPath());
                BufferedReader in = new BufferedReader(new FileReader(url.getPath()));
                String str;
                String[] temp;
                int j=0;
                while ((str = in.readLine()) != null) {
                    temp = str.split(",");
                    for(int i=0;i<temp.length;i++){
                        map[j] = java.lang.Integer.parseInt(temp[i]);
    j++
    in.close();
    } catch (IOException e) {
    System.out.println("Error: "+ e.toString());
    map[][] is a double int array. Now, the code is running through each line of the text file (with each line looking like this: 0,3,6,2,2,3,1,5,2,3,5,2), and I want to put the numbers into a corresponding double int array (which is where map[][] comes in). Now, this code WOULD work, except I need to set the sizes of each array before I start adding, but I don't know how to get the exact sizes.. how can I get around this issue?
    Message was edited by:
    maxfarrar

    You can do a two-dimensional ArrayList? That syntax
    you wrote didn't work.
    I tried doing:
    private ArrayList<ArrayList><Integer>> map;
    Your syntax is just wrong -- or, this forum software has bug in handling angle brackets.
    ArrayList<ArrayList<Integer>>...The closing angle bracket after the second 'ArrayList' is the one generated by the bug. Basically, it should be T<T<T2>> without spaces. Oh, for that matter:
    Arraylist<ArrayList<Integer>>

  • ID CC 2014 problem with page numbering book

    I have 9 documents in this book, introduction, chapters 1 through 7, and endnotes. I have section numbering selected in all documents. I have the Book Page Numbering Options set to continue from previous document. Also in the Book Page Numbering Options I have "Automatically Update Page & Section Numbers" selected. Each document is based on the same template. The book starts renumbering pages at chapter 2. I can't figure out what is wrong or how to fix it. Could this be a bug in 2014?

    I figured it out. Duh. I didn't have Automatic Page Numbering selected in the Numbering and Section Options of that particular file. That's what I like about ID. There's always a reason when things go wrong.

  • Summarize problem with absolute numbers (derived numbers)

    hi,
    We are using BW 3.1C and Enterprise portal 6.0.
    Data flow in our project: FLAT FILE --> ODS  --> InfoCube --> Enterprise portal (Reporting).
    We are using some KPIs which are derived numbers e.g.,- % of scrap. This is derived from scrap amount divided by material cost ). These KPIs are then summarized at higher level in portal (say from region to corporate level). When summarizatin takes place the system ends up adding the % scrap from region level rather than deriving the % scrap at the corporat level
    E.g.,
    Region 1- Scrap amount USD 100, Material Cost - USD 1000.
    Region 2- Scrap amount USD 200, Material Cost - USD 1000
    At the portal side, the system calculate the scrap % as 10 and 20 for Region 1 and 2 respcetively. When we summarize this at corporate level the system display the % scrap as 30 (1020). However we want the system to calculate the % scrap as 15 ((100200)/(1000+1000)).
    Need your advice.
    Thanks in advance.
    VPR

    hi ajay,
    Thank you very much for your response.
    We have already defined the proerties as 'nothing defined'. But it has not resolved the problem. It is affecting the whole  column where as we want this to happen for specific cells (intersection of rows and columsns). By default it is summarizing (adding up all the values at region level) and showing at the corporate level.
    Regards,
    VPR

  • Access db: problem with float numbers if access isn't installed

    hi all,
    i wrote a simple application to store/retrieve float values into/from an access db.
    i tried it on my computer (with ms access installed) and i could store float values (ie 136.5), but when i tried my application (copying all classes and the db) on another machine without ms-access, i couldn't store float values, only int (ie 1365.0).
    the column "price" in the db is set as float with 1 decimal number, and there are other columns set as string, with no problem.
    anyone could help me?
    should i install access into the second machine too?
    thanks
    sandro

    Could it have something to do that on one machine '.' is interpreted as a decimal point, but on the other machine it is interpreted as the , you use in e.g. 1,000 (=1000).
    I would check that both macines use the same Regional Settings (in the control panel).
    Do you use any of the java.text.xxxFormat classes?

  • Problem with random numbers

    This is a snippet from a class
    public class Cell {
         private int index;  //index of empire
         private int xCoord;  //X coordinate on the grid
         private int yCoord;  //Y coordinate on the grid
         private double solidarity;  //solidarity value of a cell
         private double power;  //power of a cell
         private Random ran;
         public Cell(int i, int x, int y) {
              ran = new Random();
              index = i;
              xCoord = x;
              yCoord = y;
              solidarity = (double)ran.nextInt(100)/100.0;
    ......I make a couple hundred of these cells when i run the program and at random it seems, every Cell i create ends up having the same exact solidarity value, which really messes up my simulation. It seems to happen once every 5 runs or so. What could be causing this to happen?

    In Java 1.4 Random is initalised with the time.
    Thus if you create many Random objects at the same time, they will generate the same "random" values.
    In Java 5.0 it prevents this behaviour.
    In your case the simplest thing to do is to create one Random and share it.
    Or you could create your own random seed using i,x,y for example. (thus ensure the random seed is different for each cell)

Maybe you are looking for

  • Employees Pension Contribution -EPF

    Hi, For one of the employee we have maintained Info Type 587 with the below conditions Employees PF Contribution -   PF Basis Employer's PF Contribution -  PF Basis Employer's Pension Contribution - Eligible Pay or  PF Basis whichever is less The Emp

  • How do I get rid of iMac always asking for login keychain

    How do I get rid of iMac always asking for login keychain, very annoying

  • Opening Stock + Purcahse+StockIN - StockOUT- Sales

    Hi, Can anybody help me by providing a query for the following requirement. The query parameters are Posting Date FROM and Posting Date TO. We are using SBO 2007B PL8.           Item No******Opening Stock *****PurcahseQty*****GoodsIN QTY*****SalesQTY

  • Offline Adobe - Values entered not getting saved.

    Hello,         Let me explain this step by step;- 1. Some fields are added to already existing online Adobe form. 2. An offline form is downloaded using We Dynpro ABAP. 3. Values are entered in all the fields of the Adobe Form and then saved. 4. The

  • Material no link with WBS element

    Hello Expert, Any chance that this requirement can be set up? I tried to check config but nothing shows to achieve this. Objective is that when user select material no during PR creation,  the respective wbs will be defaulted as well during PR creati