Linking list multi columns selections in ScriptUI

Hello

I have a script that has 8 columns and the elements of each column array.

I want to do an onClick function which selects all items in the same index position in each column.

Here's the script:

var w = new window (' dialog {text: 'Blatchford termbase', alignChildren: 'fill'} "");
Alert ('Welcome to Blatchford Termbase.\nDouble click on a term to be able to copy and paste it into your document.");
w.Spacing = 0;

var headers = w.add ('group');
headers. Spacing = 0;
headers. Margins = [0,5,0,0];
dimH var = [0,0,200,30];

headers. Add ("statictext', dimH, '\u00A0English'");
headers. Add ("statictext', dimH, '\u00A0French'");
headers. Add ("statictext', dimH, '\u00A0German'");
headers. Add ("statictext', dimH, '\u00A0Italian'");
headers. Add ("statictext', dimH, '\u00A0Spanish'");
headers. Add ("statictext', dimH, '\u00A0Norwegian'");
headers. Add ("statictext', dimH, '\u00A0Russian'");
headers. Add ("statictext', dimH, '\u00A0Turkish'");

headers.graphics.backgroundColor = w.graphics.newBrush (w.graphics.BrushType.SOLID_COLOR, [0.5,0.5,0.5],2);

headers. Graphics.font = "Arial bold: 24;

var column = w.add('group{multiselect:true}');
Columns.Spacing = 0;

CGEM var = [0,0,200,600];

var col1 = columns.add ("listbox", CGEM, //English
[' Chassis 1) 4 bolt ",]
"Activity level 2).
"3) add ' for a your dark foot shell."
"(4) alignment.
"(5) unusual noises.
"(6) earlier."
"(7) anti Rotation characteristic."
"8) py move too far back."
"9) py move too far forward,"
"(10) application."
"Assembly instructions 11)."
"(12) available from size 22 to size 30.
"Alignment of base 13)."
"Biomimetic adjustment 14)."
"Biomimetic 15) alignment.
"(16) Blatchford Products Ltd. and ENDOLITE are companies and trademarks of Chas. A. Blatchford and Sons Ltd."
"(17) building height."
"(18) build the line.
"Pylon 19) dynamics."
"Compliance of 20) THIS."
"(21) variations of performance may include,:
"(22) check alignment of base and height of the heel."
"(23) cleansing."
"The clinician 24 Handbook).
"Weight 25) component.
"(26) construction."
«(27) contraindications:»
"(28) description and purpose."
"Adjustment 29) dynamics."
"(30) environment."
"(31) extra large."
"(32) fall back",
'33) falling forward',
"Fitting length 34)."
"Foot 35) shell."
"(36) function."
"(37) sock glide."
"(38) guidance."
"A hyperextension 39)."
"(40) hyperextension."
"(41) identification of components."
"(42) increase in the stiffness in the ankle."
"(43) operating instructions."
"(44) intended to single user,"
"(Life 45) planned."
"46 product features) keys."
"(47) wide."
"(48) liability."
"(49) lifting."
"(50) limitations on use.
"(51) interview."
"Weight 52) maximum of the user."
"(53) average."
"Knee Mercury 54)."
«(55) Note:»
"Operation 56) and storage temperature.
"Example order 57)."
"(58) later."
"(59) main parts."
"(60) proximal connection."
"(70) recommended level of activity."
"(71) reduced their ankle support (free movement)."
'72 safety instructions).
"Service 73) regular in 20 months."
"Catalog Endolite 74) see for more details.
"(75) side."
"(76) size."
"(77) size scope."
"(78) small,.
"(79) Technical Data."
"(80) these instructions are used by the clinician/practitioner."
"81) to be used exclusively in the context of a lower limb prosthesis",
"(82) trans-femorale."
"(83) trans-tibiale."
"(84) trochanter."
"(85) user guide."
"(86) guaranteed for 3 years."
"(87) guarantee']);
var col2 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Party", "Transfémoral"]);        French
var col3 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Trans-tibiale", "Trans-fémorale"]);      German
var col4 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Transtibial", "Transfemorale"]);     Italian
var col5 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Party", "Security"]);        Spanish
var col6 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Party", "Security"]);      Norwegian
col7 var = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Trans-tibiale", "Trans-fémorale"]);      Russian
var col8 = columns.add ("listbox", CGEM, ["Dorsiflexion", "Field", "Party", "Security"]);      Turkish


col1. Selection = 0;

{col1. OnDoubleClick = Function ()}
entry. Text = col1. Selection;
};
{col2. OnDoubleClick = Function ()}
entry. Text = col2. Selection;
};
{Col3.OnDoubleClick = Function ()}
entry. Text = Col3.Selection;
};
{Col4.OnDoubleClick = Function ()}
entry. Text = Col4.Selection;
};
{col5. OnDoubleClick = Function ()}
entry. Text = col5. Selection;
};
{col6. OnDoubleClick = Function ()}
entry. Text = col6. Selection;
};
{col7. OnDoubleClick = Function ()}
entry. Text = col7. Selection;
};
{COL8. OnDoubleClick = Function ()}
entry. Text = COL8. Selection;
};

var user_input = w.add ('group')
entry var = user_input.add ("'edittext', dimH, ' click on the button to the right to convert lowercase");
entry. Characters = 30;
entry. Alignment = 'left';
entry.active = true;


converting the vars = user_input.add ('button', undefined, "Convert to lowercase");
convert.onClick = function () {entry.text = entry.text.toLowerCase () ;}
user_input.orientation = 'row';
user_input. Alignment = 'left';

If (w.show () == 1) {}
(alert ('Welcome to Blatchford Termbase.\nDouble click on a term to be able to copy and paste it into your document."));
} else {}
Alert ("thank you come again")
}

I want to make this hat so I don't need the numbers in the table for col1.

Any advice would be great!

This function updates the French column when you click in the English column (only on the first 4 points, however, otherwise you will get an error that there is no matching element in the French).

col1. OnChange = function() {}

col2. Items [col1. Selection.index] .selected = true;

}

Do the same for the other columns.

But it would be a good idea to use a chart to show all the columns instead of separate variables (col1, col2, etc..)

In this way, you could just browse all columns, instead of typing all individually. And you can easily add columns if necessary, or delete, etc..

Ariel

Tags: InDesign

Similar Questions

  • Add row in table or list multi-column

    Hello

    I discovered Labview (version 8.6) and I am trying to create a program of asquisition of data pour a shock absorber test bench.

    I collects the data and table classes in UN, AND cre a XY graph pour display a Representative force of the shock curve depending on the speed of movement of the stem. Until there all right!

    My problem is that I want that when the cycle is done en continue, new data appears on the next line instead of "crush the Report values as is currently the case. I tried with the tool 'table' and the 'multi-column list' tool but the problem is the same: How do I do?

    It happens that I have the same problem to display the curves on my XY graph, I also need help pay this problem.

    Please pour your attention and your help.

    Kind regards

    Jeremy

    PS: If my spouse VI to image the problem.

    Hello Jeremy,

    First of all, I would like to know what you mean by en run continue? If you specify normal here the double arrow d "performance, I would like to inform you that it must be used only when debugging your application, pour allow you to change values on orders without having to continually again l ' execution of your vi.

    If you want that your program runs continuously, you can add a loop around your code, with a STOP button for example to stop it.

    Then, if you get to write a single line, it is because although you creating a table 2D of your data before sending it to the node of the list property, this table is filled by a single column.

    You will find attached your slightly modified VI pour integrate a loop at the level of the acquisition.

    I used a tunnel with auto-indexation, which allows you to create a new row in the table 2D at each iteration of the loop. It's a simple way, but is not particularly the best, you can also set up your creations of table functions in the loop. In the same way, it will take maybe add functions of timing in the loop, but in your case, I think that the acquisition it even cadencera the execution of the loop.

    The report will be completed once you have clicked the STOP button.

    This solution of hoping to match your need.

    Kind regards

  • How to customize the scroll and symbols bars in a multi column list box

    Hello

    I have recently been design FP and have gotten to a scroll bar in a multi column list box.

    How can I change the decals and colors of the scroll bar as I can't seem to change or select all components of it within the control editor.

    I would change the arrow buttons and arrow the cursor with a custom sticker and have a solid track. In adition to that, I would like to change some of the symbols or add my own custom in the existing list.

    Is this possible to do?

    carbon32 wrote:

    Hello

    I have recently been design FP and have gotten to a scroll bar in a multi column list box.

    How can I change the decals and colors of the scroll bar as I can't seem to change or select all components of it within the control editor.

    I would change the arrow buttons and arrow the cursor with a custom sticker and have a solid track. In adition to that, I would like to change some of the symbols or add my own custom in the existing list.

    Is this possible to do?

    I don't think that you can customize parts of the scollbars.

    Here how to add symbols to a listbox control. The new index of symbols must last for 41 as the indices of standard symbols are included between 1 and 40. The size of your custom symbol must be 16 x 16.

    Ben64

  • Is there a way to get a list of tables with multi-column primary keys?

    I have a model over 1000 tables, each containing primary and some keys with unique indexes.  I need a list of multi-column primary keys and a list of the unique indexes that are not the primary key.  Is there a way this information easily?

    I have a generator that creates the merge instructions and I needed a way to retrieve the PK, if any, UK and otherwise the first Unique Index.  This comes from a cursor, so there are some variables for the schema and the name of the table and a constant for pk 'P' and 'U '.

    -- Primary/Unique Key
    SELECT   *
    FROM     dba_cons_columns concol, dba_constraints con
    WHERE    concol.owner = UPPER ( pv_schema )
    AND      concol.table_name = UPPER ( pv_table_name )
    AND      ( con.constraint_type = const.v_constraint_primary
    OR        ( con.constraint_type = const.v_constraint_unique
    AND        NOT EXISTS
                 (SELECT NULL
                  FROM   dba_constraints conx
                  WHERE  conx.constraint_type = const.v_constraint_primary
                  AND    conx.owner = con.owner
                  AND    conx.table_name = con.table_name
                  AND    conx.constraint_name = con.constraint_name) ) )
    AND      concol.owner = con.owner
    AND      concol.table_name = con.table_name
    AND      concol.constraint_name = con.constraint_name;
    
    -- Unique Index
    SELECT *
    FROM   dba_ind_columns indcol,
           (SELECT   indcol.table_owner,
                     indcol.table_name,
                     indcol.index_owner,
                     MIN ( indcol.index_name ) min_index_name
            FROM     dba_ind_columns indcol, dba_indexes ind
            WHERE    ind.index_type = 'NORMAL'
            AND      ind.uniqueness = 'UNIQUE'
            AND      indcol.table_owner = UPPER ( pv_schema )
            AND      indcol.table_name = UPPER ( pv_table_name )
            AND      indcol.table_owner = ind.table_owner
            AND      indcol.table_name = ind.table_name
            AND      indcol.index_owner = ind.owner
            AND      indcol.index_owner = indcol.table_owner
            AND      indcol.index_name = ind.index_name
            GROUP BY indcol.table_owner,
                     indcol.table_name,
                     indcol.index_owner) ind
    WHERE  indcol.table_owner = ind.table_owner
    AND    indcol.table_name = ind.table_name
    AND    indcol.index_owner = ind.index_owner
    AND    indcol.index_name = ind.min_index_name;
    
  • When I right click on the list box column Multi that I should get the custom options

    Hi all

    In my application, I want to display the custom user menu when it right-click on the Multi column list box. I want to know is - it possible to do like this. Please can someone help me on this?

    in abow picture I get "reset default value, cut, copy the data, past data" so I need to set other options.

    Kind regards

    Santhosh M

    Hi santosh,.

    This one is much better.

  • By programming the auto scroll value multi-column list boxes?

    I have a Multi column list box control that I put off (for indication only) which is used to show the progress.

    When a profile is loaded in the list box if this profile causes the scroll bar to become active it's obviously disabled and if the user cannot scroll

    That the control is disabled, the scroll bar is also disabled is there anyway that I can programmatically on the AutoScroll scroll bar?

    Hello

    You can use the property of the listbox multicoum ' cell upper left Visible.

    If your listbox multicoloum is disabled you can put vertical cursors or something on the front and give the value of the cursor to the line/Coloum (vertical scrollbar) and Coloum for the horizontal scroll bar to the "cell upper left Visible.

    Hope this helps

    Concerning

    David

  • How to create a multi column list control?

    Currently is a single-column listbox using StdListBoxWidgetN.

    How to create a multi columns as an image list control?

    What I see a sample? or add any source?

    Thanks for help.

    You must use the TreeView Widget.

    See the example persistentlistui or wlistboxcomposite in the sdk.

  • Prevention of Mult. Select all THE values column of the pivot table

    All,
    Is there a way to prevent the behavior when viewing a PivotTable and using a Mult. Select guest, choosing mult. values and each pivot has all THE column values for all THE pivots on the screen?

    For example, lets say we had the following in the pivot:
    Column: STATE
    Line: PRODUCT
    and we had a Mult. Select a prompt on the REGION - East, West, Central, West

    If I've chosen is in the prompt, I get all the States of the REGION of the East for the first values.
    If I choose the East and the West in the prompt, I get a pivot showing amounts East and Southeastern States in the Western States AND top (no value, of course) at the top. I also have an another pivot below showing the amounts of the West and Western States, AND the Northeastern States (no values for the Eastern States).

    In other words, all States that are in the mult. REGION show selected in each pivot.

    Thank you.

    Uh, that's what I said...

  • Programmatically change the selected cell/line of control multi-column listbox

    I want to programmatically change the selected cell of a multicolumn list box whose selection Mode is set to highlight the whole line.  I would use this to highlight the line whatever the list box, I chose to.  It would work the same way if the user has clicked on a line to select and highlight that particular line.  Set Active cell does not fulfill this.

    Steve

    Try to use the property value; p

  • Is it possible particularly handy/quick to disable controls (multi-column listbox) when executing the output material associated?

    Please excuse me if the title of the post is not clear, I would try to explain what I need to do here.

    In the application, I am currently in train, UI use multi column listboxes in several places where a set value (one line) is selected, and based on the rowset / selected, relay/material are enabled to match a given configuration (which is then verified with your comments).  The problem is, I can easily rush into the user interface and make program stuttering and choke...

    I just put my finger down in one of the rows in the listbox control and drag my finger up and down the screen as a 5 year old child see a touch screen for the first time - he tries to each entry cache/buffer.  After I stop being 5 years old again I sit and listen to the click click of the relay for a bit.  One of these list boxes, I've already implemented enable and disable to pieces of code to implement the right before the digital output and solve the controls right after that feedback has been verified.  It was kind of a pain to do, so I wonder if there is an easier way to do it.

    Any idea or suggestion appreciated!

    Thank you

    -Pat

    PS - i As training until this weekend so I will probably not be quick to answer, but still thx for any info

    Use a "Mouse Up" event instead of an event of "change the value.

  • Issue by passing the value of the link in the column

    Hello.
    Starting with a simple question, I hope. !!
    I finished the examples supplied by oracle 2 day tutorial, but I can't make it work values between pages.

    Here's what I did.

    I created a page of report interactive (2). In the region of origin, I have the following SQL statement

    Select PUPIL_NAME, class
    of T_PUPILS
    where CLASS = 'P '.
    order of PUPIL_NAME

    In the State of the page attribute section, I created a link in the column on the PUPIL_NAME column.
    In the section "links" column, I put the following

    Target = this Application Page
    Page = 7 (this is the page I want to)
    Clear Cache = 7, CIR
    Name = IR_PUPIL_NAME
    Value = #PUPIL_NAME #.

    I created page 7 in a report. In the source page 7 region, I have the following SQL code

    Select PUPIL_NAME,
    JOIN_DATE,
    HOME_ROOM,
    HOME_FLOOR,
    HOME_TEACHER
    RESULT
    of T_PUPIL_INFO
    where PUPIL_NAME =: IR_PUPIL_NAME;

    When I run the application and go to page 2, I get a list of students and their class. When I select one of the names of the student, the application moves on page 7, but instead to list information for that student, he simply says no data found.

    In the URL of page 7, I can see that the: IR_PUPIL_NAME has the value of the student, I chose, but it doesn't seem to use it in the SQL statement.

    Any help would be appreciated.

    Hello

    You can try this.
    Go to page 7, then on the right, click the report area and select Create page element. Type the name P7_PUPIL_NAME and deposited item text.
    Change your report query page 7 as
    Select PUPIL_NAME,
    JOIN_DATE,
    HOME_ROOM,
    HOME_FLOOR,
    HOME_TEACHER
    RESULT
    of T_PUPIL_INFO
    where PUPIL_NAME = NVL (: P7_PUPIL_NAME, PUPIL_NAME);

    On Page 2 changing the link set the P7_PUPIL_NAME element with the value #PUPIL_NAME #.
    Clear Cache 7.

    Run the 2 page now and click the link

    Thank you
    Mehabub

  • Oracle Text multi column index based query returns no rows

    Hello

    I have a MAH_KERESES_MV table with 3 columns OBJEKTUM_NEV, KERESES_SZOVEG_1, KERESES_SZOVEG_2. I create the following Oracle multi column text index:

    ctx_ddl.create_preference exec ('MAH_SEARCH', 'MULTI_COLUMN_DATASTORE');
    ctx_ddl.set_attribute exec ('MAH_SEARCH', 'COLUMNS', 'OBJEKTUM_NEV, KERESES_SZOVEG_1, KERESES_SZOVEG_2');

    create index MAX_KERES_CTX on MAH_KERESES_MV (OBJEKTUM_NEV)
    indexType is ctxsys.context
    parameters ("DATASTORE MAH_SEARCH");
    But the query returns no rows, although if I make the query with the 'like' operator, and then I get the results as expected:

    SELECT id, OBJEKTUM_NEV
    OF MAH_KERESES_MV
    WHERE CONTAINS (OBJEKTUM_NEV, "C") > 0;

    Can some body please help? TIA,

    Tamas

    You can do it in Oracle Text, well it is not necessarily desirable.

    You can search the

    WHERE CONTAINS(OBJEKTUM_NEV, '%C%')>0;
    

    And it will probably work in a simple test. However, using a leader like this wildcard prevents them the index on the table "list of words" used, so such a request can be very slow on a large system.
    You can improve this by using SUBSTRING_INDEX, but making your much bigger index. And you could always hit the 'expansions too' problem if %C % expansion is more than about 15,000 words (depending on version and different settings).

    Also be aware of differences in case - %C % will match 'fact' or 'FACT', as part of a CONTAINS, but not part of a TYPE.

  • By using the link in the column to pass column values

    Hello

    I have a link to the column in my report which opens a modal page, now I want to use the value of the column clicked in the page that opens.

    I don't want to put any article on the opening page of the column value of click rather I want to use the value of the column of the click in my sql query.

    for example:

    1 P1 has the report < column link by clicking on it opens P2 >

    2. on page 2, I want to use the value of the clicked column.

    So far, I did

    1 link to page 2

    2. ask - #column_value_clicked #.

    3. in the sql query, I use the same above in the where clause.

    Any help...

    Thank you

    Rakesh

    fac586 wrote:

    Sunil Bhatia wrote:

    Hi Rakesh,

    Make use of x 01 parameter included in apex 5.0

    You can create a URL to page 1 as:

    f? p = 103:1:3241341234123: & x 01: #column_value_clicked #.

    Make use on request P2 in the form:

    Select * from test_table where id = APEX_APPLICATION. G_X01;

    You have not tested who, did you?

    I tested it buddy.

    Link https://apex.oracle.com/pls/apex/f?p=56971

    Click any bar chart and then wait that he freshen up.

    Click on report of ENAME and see that he went through the parameter.

    Report URL: f? p = 56971:2: & APP_SESSION. : No.: & x 01 = #ENAME #.

    -Sunil Bhatia

  • How to get a list of column names

    Hello

    I need to test the list of column names that are present in the table with my column list who are in excel. Currently im using Toad, if you press f4 on the name of the table, it will display
    . But I need a sql query to check it out.
    I tried user_tables; not work and tried with information_schema.columns but table does not exist error coming.

    How to get those details using sql querry.

    SELECT column_name

    Of all_tab_cols

    WHERE table_name = 'name of the Table.

    or

    SELECT column_name

    Of all_tab_cols

    WHERE table_name = 'name of the Table.

    AND owner = 'name of the owner.

  • Under certain conditions changing IMG link Standard report column

    Apex 4.0.2

    I have an application that includes photos of employees. I want to display a link to the column in a report of the employee who opens a page to manage the photos of a given employee. Worked well when using an image of compatible icon for all employees.

    But I want to do is have two images of icons. If a photo already exists. Another case a photo has not yet been added.

    I have included a select with the following CASE statement in the Source of my region.

    (CASE WHEN p.person_id IS NULLTHENIMG alt = "nophoto" src ="#WORKSPACE_IMAGES #nophoto.png" > "
    ON THE OTHERIMG alt = "photo" src ="#WORKSPACE_IMAGES #photo.png" > "
    END) "PHOTO".

    I believe it works. I ran in SQL Developer, and it produces the following-

    < img alt = "photo" src = "#WORKSPACE_IMAGES #photo.png" >

    < img alt = "nophoto" src = "#WORKSPACE_IMAGES #nophoto.png" >

    I created a link to the column as a COLUMN of REPORT STANDARD. I put the TEXT of the LINK to #PHOTO #. I put the binding TARGET, PAGE and EMPTY the CACHE settings. The column displays as empty. Firebug shows an empty TD.

    I remove the binding TARGET settings, PAGE and CLEAR the cache. The img is displayed correctly. Firebug shows the < img > properly. But of course, it is therefore more a link.

    I'm doing something wrong here. But do not know what it is.

    Walt K wrote:

    Apex 4.0.2

    I have an application that includes photos of employees. I want to display a link to the column in a report of the employee who opens a page to manage the photos of a given employee. Worked well when using an image of compatible icon for all employees.

    But I want to do is have two images of icons. If a photo already exists. Another case a photo has not yet been added.

    I have included a select with the following CASE statement in the Source of my region.

    (CASE WHEN p.person_id IS NULL THEN 'nophoto'
         ON THE OTHER 'photo'
    END) "PHOTO".

    I believe it works. I ran in SQL Developer, and it produces the following-

    photo

    nophoto

    I created a link to the column as a COLUMN of REPORT STANDARD. I put the TEXT of the LINK to #PHOTO #. I put the binding TARGET, PAGE and EMPTY the CACHE settings. The column displays as empty. Firebug shows an empty TD.

    I remove the binding TARGET settings, PAGE and CLEAR the cache. The img is displayed correctly. Firebug shows the correctly. But of course, it is therefore more a link.

    I'm doing something wrong here. But do not know what it is.

    That's because the behavior of standard report is to strip the HTML code of column values used in the expressions of HTML, links in the column and the report when the data is exported as CSV files. This is controlled by the attribute of HTML report of band, which by default is set to Yes. Change this setting to No. , and link images to be displayed.

    A solution with a better separation of concerns that are compatible with the Strip HTML and display text default settings is:

    1. Select only the image name in the query [ nvl2(p.person_id, 'photo', 'nophoto') photo is simpler than the previous CASE expression] and make this hidden column
    2. Add a link in the column to the State ('add column link' in the bar of tasks )
    3. Set the property of the new column binding Expression in HTML to#PHOTO#
    4. Specify the column link attributes as required

    Last suggestion would be to display thumbnails of the photos used here where they exist rather than an arbitrary generic image...

Maybe you are looking for

  • iCloud for Windows authentication problem

    I have iCloud for V5.2.1.69 Windows running on a current version of Windows 10. I have a version to update to iTunes, without no problem logging into my account. I can connect to the version of the browser to iCloud without problems. I have uninstall

  • I hate Yahoo axis. How can I get rid of him?

    What is the axis of Yahoo that opens all the time when I do a search? It happens even if I change my home page, AND when I use Internet Explorer! Commentators say open tools, Options, add-ons, Extensions and then turn off axis - OF COURSE does not AP

  • You can synchronize the rules of mailbox across from devices (such as mailbox folders)?

    I want an Inbox rule to the letters, I create on a device to synchronize on the other device, so any machine, I'm on my mail goes into the right folder, is transmitted, etc.. I use Mail 9.2 on an early 2009 24 "iMac and a MacAir 2013 and will replace

  • RS-232 interface

    I'm using labview 8.5 and I want interface RS-232 with Labview. It is possible or not. If possible how do I interface RS-232 with labview. My problem: I input RS - 232 in my project I want to the o/p will designate in Labview.

  • Ray [INDD file will not open]

    Try to open an INDD file in CS5 but get .rpln errors. The InDesign icon has INDD in the upper left corner. What this means?[Title edited for clarity... MOD]