Index property CS4

Hi there,
I have issue with index property.
Running this script with this same document o have different index values for rectangles.
frames = doc.rectangles;
for (var i=0;i<frames.length;i++) {
        var frame = frames[i];
       $.writeln(frame.id+" "+frame.index+" "+frame.label);
desktop Indesign
33175 0 i12
33176 1 i6
33177 2 i9
33178 3 i3
33272 4 i10
33273 5 i4
33274 6 i7
33275 7 i1
33465 8
33460 9 i11
33461 10 i5
33462 11 i8
33464 12 i2
Indesign Server
33175 4 i12
33176 5 i6
33177 6 i9
33178 7 i3
33272 8 i10
33273 9 i4
33274 10 i7
33275 11 i1
33465 12
33460 0 i11
33461 1 i5
33462 2 i8
33464 3 i2
So index on Server is different. Index property on desktop edition works well and can be used as z-index.
Is there workaround for this?
Regards
Piotr

After many test now i'm sure, it's just bug in CS4 server, in CS5 server works fine.
regards

Similar Messages

  • System generated index property not generated in database

    Hi,
    I created an offline table by copying it from an (first) online database to my project. The table contains a unique key constraint, which references a system generated index. Now I used this offline table to generate a table in another (second) online database. This all works well except, that the "System Generated" property of the index is "false" and not "true" as in the offline table (and the first online database). When I manually reconcile the same table to the second online database again, there is always a difference shown for this index property. When I try to continue the reconcile process to change this property I get an error message, that the index cannot be dropped because it is obviousely referenced by the unique constraint.
    When I drop the constraint and try to generate the index only I get the following warning message:
    Jan 11, 2012 2:08:59 PM oracle.javatools.db.property.AbstractPropertyManager processDiffs
    WARNING: Unsupported property: systemGenerated
    Is there a way to work around this annoying behavour? Is it possible to change this index property by an ALTER INDEX statement?
    Im using JDeveloper 11.1.2.1.0 (Build JDEVADF_11.1.2.1.0_GENERIC_110907.2314.6081)
    Thanks for help and hints
    Thomas
    Edited by: thmayr on 11.01.2012 05:08

    Hi,
    it might be due to some BUG in RDBMS...
    First Check the Secondary index in TEST system
    Look at the Transport Number in DEV system, If this is having error, then it will show you the error details also,
    If that not moved Properly then you need to create another request for the INDEX and move it again
    See the threads with similar problem...
    Warning: Index does not exist in database system MSSQL
    Index does not exist in database system ORACLE??????
    Re creation of database index
    Hope it will solve your problem...
    <b>Reward Points if useful</b>
    Thanks & Regards
    ilesh 24x7

  • Index page CS4 doesn't display properly for google chrome users

    index page CS4/ Dreamweaver doesn't display properly for google chrome users, shows as a blue page /  version of Chrome is 17.0.963.56 m. version of flash is 11.1.102.62.  Operating system is Version 6.1 (Build 7601, Service Pack 1).  Javascript version 1.7.  Quicktime is not installed. 

    www.pianofortemusicschool.com

  • Indexed property - editor needed?

    Folks,
    I have a bean (MyBean) with a indexed property (array of class type ClassX). It has setter and getters (total of 4) according to Java Beans specification.
    On Netbeans, the indexed property appears on Properties list. But, I can�t add itens to it, like it occurs when the property is not indexed or is a String indexed property. I think I should assign an 'editor' to it.
    Does anybody knows how to do this?
    The idea is: the ClassX is a JComponent and the Frame has some of them (10, for example). This indexed property from MyBean should allow users to add as many as they want, but limited to those already added to the Frame. They could add, for example, 4 of 10 to the array.
    Thanks!

    Did you try selecting portal components like books, pages, portlets. I have seen this problem too. But it would go away when you restart workshop.
    --SJ                                                                                                                                                                                                                                                                                                               

  • Indexed property

    i have 20 Text fileds in my form and this may vary when the database data is changed
    so i want to use index property to that.
    how can i achive in the staruts
    i have declared in struts-config.xml as my property
    <form-property name="captionId" type="java.lang.String[]"/>
    but i dont know how to implement this
    please help

    Hi konkodi221,
    Hi had a similar problem where i was populating my form from a database and updating the form contents back to the database.I solved the problem using Dynamic action forms in Sturts.
    Here is the link :
    http://javaboutique.internet.com/tutorials/strutsform/index.html

  • Help with array / indexed property

    Hi,
    I am trying to save the value of multiple dropdowns in the Session Bean. Therefore, I created an index property "rule" in the Bean.
    Each time the page is loadad, a different dropdown appears depending on the previous choices. If the ok button is clicked, the action is performed to save the current dropdown value in the index property:
    public String button1_action() {
    int cnt = 1;
    // if page was loaded before, replace count
    if (getAdminBean().getCount() > 0) {
    cnt = getAdminBean().getCount() +1;
    } else {
    // save current count in Session
    getAdminBean().setCount(cnt);
    setValue("#{AdminBean.rule[cnt-1]}", selectme.getValue());
    This is the error message:
    Exception Details: javax.faces.el.PropertyNotFoundException
    Error setting property '-1' in bean of type null
    Possible Source of Error:
    Class Name: com.sun.faces.el.PropertyResolverImpl
    File Name: PropertyResolverImpl.java
    Method Name: setValue
    Line Number: 153
    I have played around and even the following code would not work to save a value at the first position of the index property:
    setValue("#{AdminBean.rule[0]}", selectme.getValue());
    Can anyone help?
    Thanks,
    Nils

    You can not set the index as you use here i.e
    #{AdminBean.rule[cnt-1]}
    is not correct. Because in JSF the "[" is used for some other purpose.
    I would suggest you to use another property called "index"
    setValue("#{AdminBean.index", cnt-1);
    setValue("#{AdminBean.rule", selectme.getValue());
    Inside the session bean, in the method setRule get the index (already set) and place your value in the correct indexed array.
    Same logic you can use to get the value too
    setValue("#{AdminBean.index", cnt-1);
    getValue("#{AdminBean.rule");
    the method getRule() should get the value for the index and return it.
    - WInston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Indexed property question

    I have several forms each containing a unique product. Each product has 'other' items that can be associated with each product.
    Rather than creating setter and getter methods for each 'other' item (too many to do), I thought I'd send the values of those 'other' items to an indexed property like String[] other. A user will be presented with a list of 10 or so 'other' items for each, and each 'other' item will have a checkbox. I'd like only the checked values to show up on another page.
    Is an indexed property the way to go with this? Plus I could iterate through the 'other' list on the seperate page. Any examples anyone knows of I can look at for some help? Thanks!

    public String button1_action() {
    setValue("#{AdminBean.rule[1]}",
    selector.getValue());
    How about
    getAdminBean().setRule(1, selector.getValue());Assuming that selector.getValue() returns a Long and that AdminBean is either an Application, Session, or Request Bean.
    Best regards
    Antonio.

  • Indexed Property Example Code

    Is there an example out there for a Java Newby - I am trying to save data in an array - that is using the indexed property in a SessionBean.
    I have then added the indexed property and bound the value to it:
    * Indexed getter for property rule.
    * @param index Index of the property.
    * @return Value of the property at <CODE>index</CODE>.
    public Long getRule(int index) {
    return this.rule[index];
    * Indexed setter for property rule.
    * @param index Index of the property.
    * @param rule New value of the property at <CODE>index</CODE>.
    public void setRule(int index, Long rule) {
    this.rule[index] = rule;
    public String button1_action() {
    setValue("#{AdminBean.rule[1]}", selector.getValue());
    I am getting the followong error:
    Exception Details: org.apache.jasper.JasperException
    Error getting property 'rule' from bean of type magicwheel.AdminBean
    Possible Source of Error:
    Class Name: org.apache.jasper.servlet.JspServletWrapper
    File Name: JspServletWrapper.java
    Method Name: service
    Line Number: 384
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Can anyone help, possibly with some example code?
    Thanks,
    Nils

    public String button1_action() {
    setValue("#{AdminBean.rule[1]}",
    selector.getValue());
    How about
    getAdminBean().setRule(1, selector.getValue());Assuming that selector.getValue() returns a Long and that AdminBean is either an Application, Session, or Request Bean.
    Best regards
    Antonio.

  • Binding to an indexed property

    Hi
    Not sure if this is the correct way to do this, but I created
    an indexed property ( String array ) in the session bean
    with the intention of binding a TextField value to an
    indexed position on the indexed property. When attempting
    to perform the Property Binding for the TextField component
    I don't see the indexed property to bind to.
    Is this possible ?
    Thanks

    Hi Colinodo,
    I am just interacting with people so as to where an external customer can view the filed bugs.
    Once i get the link I would be providing you the reference number and the link.
    Regards.

  • Indexed Property, html:select

    Hello,
    Dev. Env. : JSP/Struts - Indexed Properties
    <c:forEach var="lines" items="${MbrLines.map.lines}">
    <td>
    <html:select name="lines" indexed="true" property="loc" >
    <%
    StringBuffer sb = new StringBuffer();
    DBAccess dba = new DBAccess();
    sb = dba.fillDropdown("ALLLOC",0,"");
    out.println(sb);
    %>
    </html:select>
    </td>
    </c:forEach>
    This is the code I have in a JSP used for edits. I fill the dropdown with all available locations(e.g. Chicago, Miami etc) from a database table.
    How do I set the current value in the record to be edited, say "Chicago", to be "selected" in the dropdown? Or, is there a way to pass the property�s current value to the DB method ?
    Any help is greatly appreciated. Thanks in advance.

    the HTML generated as folllows:
    as you may see, the bean has been interpreted to array, which I have correspondent set method in form. Please check the code for form in my previous post.
    If I radio button of any row, it sets all the rows. which looks very strange to me, because it shows to me that the beans has been seperated by using different names. as poDisplayVO[0] ; poDisplayVO[1] ; poDisplayVO[2.
    <! ------------------------ html genterated ------------------------------------------------>
    <tr>
    <td>
    Accounting Studies
    </td>
    <td>
    <input type="radio" name="poDisplayVO[0].fosVO.select" value="Accounting">
    Accounting
    </td>
    <td>
    <input type="radio" name="poDisplayVO[0].fosVO.select" value="no"> NO
    </td>
    <td>
    <input type="radio" name="poDisplayVO[0].fosVO.select" value="yes"> YES
    </td>
    </tr>
    <tr>
    <td>
    Accounting Studies
    </td>
    <td>
    <input type="radio" name="poDisplayVO[1].fosVO.select" value="Bookkeeping">
    Bookkeeping
    </td>
    <td>
    <input type="radio" name="poDisplayVO[1].fosVO.select" value="no"> NO
    </td>
    <td>
    <input type="radio" name="poDisplayVO[1].fosVO.select" value="yes"> YES
    </td>
    </tr>
    <tr>
    <td>
    Accounting Studies
    </td>
    <td>
    <input type="radio" name="poDisplayVO[2].fosVO.select" value="Computerized Accounting(Duplicate)">
    Computerized Accounting(Duplicate)
    </td>
    <td>
    <input type="radio" name="poDisplayVO[2].fosVO.select" value="no"> NO
    </td>
    <td>
    <input type="radio" name="poDisplayVO[2].fosVO.select" value="yes"> YES
    </td>
    </tr>

  • Again need indexed property

    Hi,
    I have in a jsp this nested...
    <nested:nest property="myList[0]">
    <nested:nest property="param[0]">
    <nested:text property="name">
    </nested:nest>
    </nested:nest>
    The problem is what struts invoke method getList() and not getList(int index), i have need what invoke getList(int index) because the list have to grow dinamically.
    any suggest???

    Im finding on web but now nothing solution.
    HELP!

  • BUG CSS Editor z-index property

    I use JDeveloper 10.1.3.1 to edit CSS.
    span.dialog { z-index: 100; } is underlined in red, although span.dialog { z-index: 99; } and span.dialog { z-index: 101; } are OK.

    Hi,
    thanks. I filed a bug with very low priority because a) a work around exists (to set it to 101) and b) at runtime it behaves as designed
    Frank

  • Trouble with tabs (index edition) - CS4

    I'm curring laying out a 136-page cumulative index for a magazine and I'd like to limit the amount of manual work as much as possible. The paragraphs are set up with a .875" right indent and a -.875" last line indent, which helps keep the entries from encroaching into the space where issues appear. However, I'm still seeing instances where the entries are not responding to the tab stops as I would like (see below).
    Is there any solution that will keep the text from being pushed into the gutter without me having to manually put in forced line breaks? Techincally, this is the last line of the paragraph so there is nothing to make it "hang" the way I want. Ideas? Am I setting up my tab stops incorrectly?

    Okay, I think I have a solution that can be applied with find & change only.
    1. Add a tab into the tab ruler, right before the Right Indent setting:
    You need to do this for all of the styles, if not every style is based upon one common base style.
    After this, the document goes out of whack:
    2. Use Search-and-Replace: GREP to look for this
    \t(?= *\u\l\l/\u\l\l \d\d)
    and replace with this
    \t\t
    with the added attribute of No Break.
    3. Now it ought to be fixed -- nothing extends beyond the tab you just set
    4. It creates a new problem, though. (Which I spotted just in time, too.) Look at the dots -- the 'left half' is bold, presumably picked up from the bold text, the right half is not, and there is a little amount of space between the two tabs. No sweat: apply a character style to just the tabs, using a GREP style:
    -- you can just add this to your paragraph styles.

  • Handle z-index property in chrome browser (was : Is there another issue with Chrome?)

    Hi,
    I'm just wondering is there another issue with Edge and Chrome.
    I know some stuff got sorted out but I am now having a problem with rectangles (as hitboxes) not showing up within Chrome.
    Does anyone know why this is happening?

    Hi Aibun and Vivekuma,
    I am running the most up-to-date version of Edge, because I knew about the other Chrome issue since it was affecting a lot of my work.
    But I haven't seen anything else to do with it since the update and now I'm getting another issue. Not sure if its the same kind of thing or not.
    Here is my composition : Dropbox - Work_fa
    Basically on the page with "Meet Jeff" there are two little white semi-circles and the hit box should be in the right button but its actually off set and further right than it should be.
    I've looked through the composition and the hitbox is within a symbol (s_cpl_fa_0_guide_page1) so also not sure whether its because of that?

  • Problems in CS4: Double entries while indexing

    How to prevent double entries from occuring while indexing in CS4, please comment
    Audacity
         Audacityabout  8
         Audacityalign tool  116, 118
         Audacityamplify effect  160-162
    How to prevent the double entries of Audacity
    Thanks

    If the cursor is the only problem, my guess is that you haven't updated your video card drivers.

Maybe you are looking for