Unable to set columns under Layout Margins and Columns

On certain pages in my 40 page document, I am unable to set the number of columns by using Layout>Margins and Columns. The columns option is dimmed out. I have tried to set them on a blank page and pages where columns were previously set (I can see the guides). I am using a single Master for page numbering and it is applied to every page in the document. There are pages where I can set the columns. I've done some page comparison and can't find the setting that might control this. Using InDesign CS6 on Windows. Thank you.

Why are you not using multiple column text frames instead of 2 text frames with columns on the master page? This would give more flexiblity.

Similar Messages

  • Service Desk Unable to set status to Customer Action and Proposed Solution

    Hi Everyone,
    We are unable to set a service desk issue to the status Customer Action or Proposed solution.
    I have someone create a new issue in the bakend system and when I receive the issue I assign it to myself as the processor. When I try to set teh status to Customer action it is grayed out.
    I have checked the following:
    1. As a test I assigned My user with sap_all profile so does not appear to be authroisation related
    2. The status profile has all six standard values (New, customer action, In Process, Sent to SAP, Proposed Solution, Confirmed).
    3. The transaction types have been defined using the standard profiles for Text Det. Procedure, Partnet Determination Procedure, Status Profile. The Partner Function ORG is set to Sold-To-Party , The date profile is a SRV_SLA_ITEM and the Action profile is set to SLFN0001_ADVANCED. The Org Data Prof is set to a customer defined one: ZSSC000000001.
    4. I have checked transaction ppoma_crm and the org structure and my user is assigned to a team lead position.
    Your assistance is greatly appreciated.
    Michael

    Hi Michael,
    please check your status profile for the "lowest status no." and "highest status no." values of the status values as Alex mentioned!
    You can find this in SPRO under "SAP Solution Manager> Scenario-Specific Settings>Service Desk>Service Desk>Status Profile".
    If the "high" value of the status "New" is lower than the status number of status "Customer Action" than you can not set the message from "New" to "Customer Action"!
    Hope this helps,
    Christoph

  • Setting cursor to appropriate row and column in JTextArea

    Hi
    this is kranthi from Hyd
    iam unable to point out the cursor to the appropriate row and column in the JTextArea
    are there any methods to do so
    plz help me

    Yup, look at setCaretPosition(int pos)

  • JTable about selection mode, setting a Color to rows and column.

    I need an application with a table containing Double and String data. When the table is shown the Double data must be shown as selected. I need a special kind of selection mode similar to MULTIPLE_INTERVAL_SELECTION but it must be a mode as if CONTROL was pressed when the user left clicks the table so he or she can select and deselect columns without deselecting those wich have been selected previously... Besides I need to paint columns and rows only if they have certain conditions. This is an example of what I have done so far... The selection mode is what is really important.
    UsingJTable.java
    package mytables;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.table.TableColumn;
    public class UsingJTable extends JFrame {
    private static final long serialVersionUID = 1L;
    private JPanel panel = null;
    private JTable table = null;
    private JButton[] buttonArray = null;
    private JPanel buttonsPanel = null;
    public UsingJTable() {
    panel = new JPanel(); 
    table = new JTable( new MyOwnTableModel() );
    JScrollPane sPane = new JScrollPane( table ); 
    sPane.setHorizontalScrollBarPolicy( JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED );
    sPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED );
    panel.setOpaque( true );
    panel.add( sPane );
    buttonsPanel = new JPanel();
    buttonsPanel.setLayout( new FlowLayout() );
    buttonArray = new JButton[ 5 ];
    for( int i = 0; i < buttonArray.length; i++ ) {
    buttonArray[ i ] = new JButton( "columna " + i );
    buttonArray[ i ].addActionListener( new ColumnListener( i ) );
    buttonsPanel.add( buttonArray[ i ] );
    table.setRowSelectionAllowed( false );
    table.setColumnSelectionAllowed( true );
    ListSelectionModel csm = table.getColumnModel().getSelectionModel();
    csm.setSelectionInterval( 0, table.getColumnCount() );
    csm.removeSelectionInterval( 0, table.getColumnCount() - 3 );
    csm.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION );
    this.setTitle( "Using JTable" );
    this.getContentPane().add( panel );
    this.getContentPane().add( buttonsPanel, BorderLayout.SOUTH );
    this.setSize( 500, 500);
    this.setVisible( true );
    this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    class ColumnListener implements ActionListener {
    private boolean pressed = false;
    private int column = 0;
    public ColumnListener( int col) {
    this.setColumn( col );
    public void actionPerformed(ActionEvent e) {
    TableColumn tColumn = table.getColumnModel().getColumn( column );
    Color c;
    if ( !pressed )
    c = Color.YELLOW;
    else
    c = Color.WHITE;
    table.setVisible( false );
    tColumn.setCellRenderer( new MyCellRenderer( c ) );
    table.setVisible( true );
    pressed = !pressed;
    public int getColumn() {
    return column;
    public void setColumn(int column) {
    this.column = column;
    public static void main( String args[] )
    new UsingJTable();
    } MyOwnTableModel.java
    package mytables;
    import javax.swing.table.AbstractTableModel;
    public class MyOwnTableModel extends AbstractTableModel {
    private static final long serialVersionUID = 1L;
    private Object data[][] = null;
    private String columnNames[] = null;
    private int rowCount = 0;
    private int columnCount = 0;
    public MyOwnTableModel() {
    initData();
    initColumnNames();
    this.setRowCount( data.length );
    this.setColumnCount( columnNames.length );
    public int getColumnCount() {
    return columnCount;
    public int getRowCount() {
    return rowCount;
    public Object getValueAt(int r, int c) {
    return data[ r ][ c ];
    private void initData() {
    data = new Object[4][5];
    data[ 0 ][ 0 ] = new String("Hern�n");
    data[ 0 ][ 1 ] = new String("Amaya");
    data[ 0 ][ 2 ] = new Integer( 23 );
    data[ 0 ][ 3 ] = new Double( 61.5 );
    data[ 0 ][ 4 ] = new Double( 1.71 );
    data[ 1 ][ 0 ] = new String("Mariana");
    data[ 1 ][ 1 ] = new String("Amaya");
    data[ 1 ][ 2 ] = new Integer( 25 );
    data[ 2 ][ 3 ] = new Double( 75 );
    data[ 2 ][ 4 ] = new Double( 1.65 );
    data[ 2 ][ 0 ] = new String("Nicol�s");
    data[ 2 ][ 1 ] = new String("Coniglio");
    data[ 2 ][ 2 ] = new Integer( 23 );
    data[ 2 ][ 3 ] = new Double( 88.5 );
    data[ 2 ][ 4 ] = new Double( 7.85 );
    data[ 3 ][ 0 ] = new String("Juan Pablo");
    data[ 3 ][ 1 ] = new String("Garribia");
    data[ 3 ][ 2 ] = new Integer( 24 );
    data[ 3 ][ 3 ] = new Double( 70.2 );
    data[ 3 ][ 4 ] = new Double( 1.76 );
    private void initColumnNames() {
    columnNames = new String[ 5 ];
    columnNames[ 0 ] = "Nombre";
    columnNames[ 1 ] = "Apellido";
    columnNames[ 2 ] = "Edad";
    columnNames[ 3 ] = "Peso";
    columnNames[ 4 ] = "Altura";
    public String[] getColumnNames() {
    return columnNames;
    public void setColumnNames(String[] columnNames) {
    this.columnNames = columnNames;
    public Object[][] getData() {
    return data;
    public void setData(Object[][] data) {
    this.data = data;
    public void setColumnCount(int columnCount) {
    this.columnCount = columnCount;
    public void setRowCount(int rowCount) {
    this.rowCount = rowCount;
    public Class getColumnClass(int c) {
    return data[0][c].getClass();
    public String getColumnName(int c) {
    return columnNames[ c ];
    } MycellRenderer.java
    package mytables;
    import java.awt.Color;
    import java.awt.Component;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableCellRenderer;
    public class MyCellRenderer extends DefaultTableCellRenderer {
    private static final long serialVersionUID = 1L;
    private Color cellColor = null;
    public MyCellRenderer( Color c )
    setCellColor( c );
    public Component getTableCellRendererComponent
    (JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    // Obtains default cell settings
    Component cell = super.getTableCellRendererComponent ( table, value, isSelected, hasFocus, row, column);
    cell.setBackground( getCellColor());
    return cell;
    public Color getCellColor() {
    return cellColor;
    public void setCellColor(Color cellColor) {
    this.cellColor = cellColor;
    }

    Interesting concept! This is what I have tried and it works, but in the application I need the user to deselect the columns he wants only by left clicking on them... This is the main idea: there will be lots of columns (String and Double data). The user must deselect the Double columns he or she does not want to be processed... Maybe with a boolean array that changes it state if a user left clicks a column... but I suppose this method is called only once to initialize the table, isn't it? Thanks.
    <code>
    table = new JTable( new MyOwnTableModel() ) {
    public boolean isCellSelected(int row, int column) {
    MyOwnTableModel model = (MyOwnTableModel) this.getModel();
    if( model.getColumnClass( column ) == Double.class )
    return true;
    return false;
    </code>

  • Unable to save the ALV layout variant and display of selection screen on F4

    Hi All,
    The end user wants to directly select the layout variant (SLIS_VARI). I have used the following code to display the layout variant on selection screen. But, I am unable to save the variant on ALV. Whenever I am trying to select the layout variants (by doing F4 on selection screen) its displaying "No Layout found".
    Following is the code for displaying layout variant:
    PARAMETERS: p_var TYPE slis_vari.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_var.
      PERFORM f4_variant CHANGING p_var.
    FORM f4_variant  CHANGING c_variant TYPE slis_vari.
      DATA: ls_variant TYPE disvariant,
                l_exit     TYPE char1.
      ls_variant-report = sy-repid.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = ls_variant
          i_save     = 'A'
        IMPORTING
          e_exit     = l_exit
          es_variant = ls_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF l_exit EQ space.
          c_variant = ls_variant-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                    " f4_variant
    and following is the code for displaying the ALV:
    FORM edition_alv.
      ws_variant2 = ls_variant.
    * Call ALV editor in list mode
      IF p_list = 'X'.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            is_layout               = ws_layout
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
    * Call ALV editor in grid mode
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
      ENDIF.
    ENDFORM.  
    I am not sure whats going wrong, but I am unable to save variants.
    Please help.
    Thanks,
    Vishal.

    The F4 will display you the existing layouts only. So you need to save the layout first & then execute the report again & check if you are getting F4 values for that field.
    The Layout needs to get stored with variant.
    Regards,
    Mahesh

  • When I pull down my bookmarks I don't see the tabs I set up under uncatagorized bookmarks and can't access the bookmarks I've sorted there

    When I used Internet Explorer and used the pull-down menu, the categories I set up displayed and the bookmarks under each category displayed as well. I've now set up folders in Firefox under "uncategorized bookmarks," but when I pull down Bookmarks, neither the categories nor the bookmarks appear. Have I set up the categories properly? If so, how can I make the sorted bookmarks appear?

    "Show All Bookmarks" = "Organize Bookmarks" in Firefox 4 & 5.

  • Unable to set wireless connection with imac and Canon MX860 printer ...

    I recently converted to a Mac and bought a Mac Book, iMac, Airport Extreme, and a Canon MX860 printer. i have installed the canon software numerous times on my iMac to set up the wireless connection. yes, the airport extreme recognizes the printer and i am able to connect to my private and guest networks. the signal strength is good. It's the next part that I'm always stuck at. The Printer settings does not display when i choose More Printers and select Canon IJ Network. I called Apple support and we tried changing my network settings to an unsecured network and it still has the same issue. It was recommended this may be Canon driver issue and advised me to contact Canon. I reset the Airport, changed my network name and password .. i think i tried everything and it still does not work. What was I thinking when i said i wanted to convert to Mac? I can't move forward and connect my macbook or pc yet until I successfully connect the imac. Yes, i installed the latest canon IJ Network tool. of course the USB connection is fine but that defeats the whole purpose if why i bought this printer. please advise how to fix. this is getting very frustrating.

    Some help at http://store.apple.com/us/product/TV352LL/A perhaps in the comments.
    And maybe at http://www.amazon.com/Canon-PIXMA-MX860-Wireless-Printer/product-reviews/B001R4C 5BK in the comments.
    "I ran into the same network installation issue that I've seen in other Canon printers. Canon's network setup forces you to connect by USB cable first. Only after you tell the program that you want to use the computer over the network can you remove the USB cable, move the printer if needed, and if you're using a wired connection, reconnect a network cable. The process isn't particularly difficult, but it's more cumbersome than what other printers let you do, which is simply put the printer where you want it, plug in an Ethernet cable, and install the software." source = http://shop.pcmag.com/shop/product/pcmag/84634068.aspx?SB=6&OB=1
    "MAC wireless network printer setup requires turning off firewall, and works fine if you leave firewall off (not recommended). If you set firewall at "essential connections only," wireless networked MX860 won't work. You must add MP navigator and solution apps to your firewall enabled list. Then it worked fine on the admin account, but still won't work on users account which required additional permission settings and selections. After 2 hours it worked fine, but I would've expected better instruction manual for MAC." source = http://cnet.nytimes.com/multifunction-devices/canon-pixma-mx860/4852-3181_7-3352 9769.html
    "The only trouble that I have had with this machine is setting up the wireless network. The manual instructions are impossible for me to understand and I ended up having to call for assistance. Which easily solved the problem. And again when I had to reconfigure my network settings it was impossible to follow the logarithm of instructions in the manual. Again I needed to call for assistance. If I need help after the year manufacture's warranty I will be charged for these calls." source = http://www.zimbio.com/InkjetPrinter+Reviews/articles/1932/Canon+PIXMA+MX860+Wireless+One+PhotoPrinter
    Even Windows people have trouble:
    "I NEED INTRUCTIONS ON HOW TO CONNECT MY HP LAPTOP TO THE CANON MX860 PRINTER."
    "I'm with you. I have my mx860 connected usb to my pc with the printer being shared but my wireless laptop can't find it no matter what I try."
    And, unhappy Vista person:
    "I had high hopes for this printer - it seemed to have it all. But the wireless feature never worked, it only worked on my gigabit network for about two weeks (only THREE print jobs including the test print), and never observed it to work via USB - Vista (x64 Ultimate) would throw an error saying it could not attach the device."

  • How do I sync itunes playlist from old account into a new account.  Playlist was set up under old username and password, which I've forgotten.  Set up new iTunes account and need to sync up my iPod.

    How

    feemacbee wrote:
    the only option available to me is to set up a new iPhone or to Restore from a backup.
    Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • How to set tabs and how to set them outside the margins of my main body of text

    I type lots of docs where I have a body of text, indented, and then there is an action letter, A,B,C etc, out to the right.  Can't see how to set the body of text plus separate tab outside the margin in Pages.  Could do it in MS Word.  Pages looks great, but I'm stuck on a few things I used to do.  Can anyone help?
    Thanks

    Hi Peter
    Thanks for the reply.
    Here is a sample of the text:
    you'll see that the D, C, B etc are squashed up to the text, I can't move their tab outside the margin.  On Word (dare I say it?) I could set my right hand margin and still have a tab further out.  Don't know that your anchoring idea is the thing.  Is there another way to limit my text?  I wonder about columns, although then all the ABCs will be in the second won't they?
    Any ideas?
    Thanks again
    Nonie

  • Setting number of rows and columns

    How do I set the number of rows and columns of a table, say 2348 rows by 3 columns?
    Then how do I quickly select the last row?
    Also, if I enter a formula in row 1 column 2, how do I quickly copy that formula down to row 1435, or to the end of the column? Dragging seems slow and awkward.

    I wish to add a few words to Jerrold responce.
    gjf12 wrote:
    How do I set the number of rows and columns of a table, say 2348 rows by 3 columns?
    Then how do I quickly select the last row?
    Also, if I enter a formula in row 1 column 2, how do I quickly copy that formula down to row 1435, or to the end of the column? Dragging seems slow and awkward.
    The process that you describe is inefficient.
    The efficient one is :
    create a table
    enter the formulas in a single row
    delete the rows below.
    Now, each newly inserted row will contain the formulas.
    From my point of view, it's when this is done that it will be interesting to apply a script adding rows.
    Here is a script inserting rows.
    --[SCRIPT insertRows]
    Enregistrer le script en tant que Script : insertRows.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner une cellule au-dessous de laquelle vous voulez insérer des lignes.
    menu Scripts > Numbers > insertRows
    Le script vous demande le nombre de lignes désiré puit insère celles-ci.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: insertRows.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select a cell below which you want to insert rows.
    menu Scripts > Numbers > insertRows
    The script ask you the number of rows to insert then it does the required insertion.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Save this script as a … Script in the "Folder Actions Scripts" folder
    <startupVolume>:Library:Scripts:Folder Action Scripts:
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/01/13
    --=====
    on run
    set defaultValue to 100
    if my parleAnglais() then
    set myInteger to my askAnumber("Insert how many rows ?", defaultValue, "i")
    else
    set myInteger to my askAnumber("Combien de lignes voulez-vous insérer ?", defaultValue, "i")
    end if
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    repeat myInteger times
    add row below row rowNum2
    end repeat
    end tell
    end run
    --=====
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
    end if
    return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
    apply to named row or named column !
    on decipher(n, d, s, t)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    Asks for an entry and checks that it is an floating number
    set myInteger to my askAnumber(Prompt, DefaultValue, "i")
    set myFloating to my askAnumber(Prompt, DefaultValue, "f")
    on askAnumber(lPrompt, lDefault, ForI)
    local lPrompt, lDefault, n
    tell application (path to frontmost application as string)
    if ForI is "f" then
    set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
    try
    set n to n as number (* try to convert the value as an number *)
    return n
    on error
    if my parleAnglais() then
    display alert "The value needs to be a floating number." & return & "Please try again."
    else
    display alert "La valeur saisie doit être un nombre décimal." & return & "Veuillez recommencer."
    end if
    end try
    else
    set n to text returned of (display dialog lPrompt default answer lDefault as text)
    try
    set n to n as integer (* try to convert the value as an integer *)
    return n
    on error
    if my parleAnglais() then
    display alert "The value needs to be an integer." & return & "Please try again."
    else
    display alert "La valeur saisie doit être un nombre entier." & return & "Veuillez recommencer."
    end if
    end try -- 1st attempt
    end if -- ForI…
    end tell -- application
    Here if the first entry was not of the wanted class
    second attempt *)
    tell application (path to frontmost application as string)
    if ForI is "f" then
    set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
    try
    set n to n as number (* try to convert the value as an number *)
    return n
    on error
    end try
    else
    set n to text returned of (display dialog lPrompt default answer lDefault as text)
    try
    set n to n as integer (* try to convert the value as an integer *)
    return n
    on error
    end try -- 1st attempt
    end if -- ForI…
    end tell -- application
    if my parleAnglais() then
    error "The value you entered was not numerical !" & return & "Goodbye !"
    else
    error "La valeur saisie n’est pas numérique !" & return & "Au revoir !"
    end if
    end askAnumber
    --=====
    on parleAnglais()
    local z
    try
    tell application "Numbers" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mercredi 13 janvier 2010 12:43:34

  • New User Question:  How do I find ALL of my setting for my layout once I'm working on it?

    I'd like to get screen captures of my settings for each project I do so that I have them for refference.
    Thank you!!!

    OK, I think you're basically on the right track, but I think converting your files to templates might be more useful than printouts. Templates contain the master pages (which is where margins and columns are typically changed from the defaults set during initial Document Setup (or they may not be changed from those defaults at all), all the styles defined for the project, and all the color swatches that have been defined, so you don't need to reinvent the wheel, only choose from among the available selections. They can also have page elements (headers and footers, page numbers, placeholder frames for standard layouts, etc.) predefined or in place.
    You can make any file into a template just by saving as one (File > Save As... and choose Template from the file type dropdown), or by changing the file extension to .indt. The only functional difference between a document file and a template file is that when opened "normally" documents open as original, so you are editing the actual document, and templates open as an untitled copy, so you are editing the copy and won't accidentally change the template. You can delete essentially all the content (other than objects on a master page) from any file and save as a template and have everything you need to make a new file using the same parameters.
    There are scripts available to tell you what styles are defined in a document (you can google for InDesign Style Reporter script, I think), and there may be others that will give you other parameters. There may be something like that in the Blatner Tools plugin, too. If you want one comprehensive script you may need to pay someone to custom write it for you, but it would be worth a trip to the scripting forum (InDesign Scripting) to see what is already written that might help you if you want reports.

  • Layout Margins | Second page of section marked 'first page is different'

    I have some custom formatting for the first page of a section, marked in Inspector with 'First page is different': with a 3cm upper margin to set text to start below a banner image embedded in the section master.
    However the second page of that section is not settable with a separate layout margin, and since the the banner on the second page is different, I need it to be.
    Any ideas?

    j,
    You would have to put the Page Break and Section Break into your Template, so you would begin with two pages and two layouts already there.
    You are getting into Page Layout territory here. At some point it's just easier to pre-define the whole document in a Page Layout format. It all depends on where you are going with this.
    Jerry

  • Unable to set bounding box

    Hi,
    I´m trying to reduce scale on a group of objects;a map, some lines with arrows and shade and also text blocks. When I´m trying to reduce the size of the group the message "unable to set bounding box" pops up and its impossible to continue scaling. It has happened with different files and objects, always the same message.
    I´m using Indesign CS3 5.03 on Xp professional

    Okay....stupid fix worked. I was having this problem with a dieline for a package. Came out of the blue as I have done this countless time before with out any problem. Today, however, CS4 is feeling stubborn.
    Well, I ungrouped it. Grouped it again. Now it works fine.
    Go figure.
    Hope this works for someone else as well!

  • I had to change my password on my email password, but went to my setting under mail accounts and it is grey and I am unable to update it there.  Can someone tell what I can do? This on an iPad2.

    I had to change my password on my email password, but went to my setting under mail accounts and it is grey and I am unable to update it there.  Can someone tell what I can do? This on an iPad2.

    Duffygibbs wrote:
    I did go to settings, restrictions....and there was a list of things...but no "off" or "on" to change. 
    If the word "Off" is sort of cloudy and the settings are greyed out - that means you do not have restrictions enabled - but just in case - do you use a passcode to lock the iPad?
    Exactly what message are you getting and where are you getting the message - what does the "email icon" mean?

  • How to create a document with sections that differ in margin and layout

    I'm trying to add a pages document 'B' into my new pages document 'A'.
    A and B have two entirely different layouts and different document margins. So whenever i copy B into A, B's margins become A's margins and thus B's layout turns into a mess.
    I tried adding a section break, column break, layout break.. None resolves the issues.
    All ideas on this are appreciated.
    Thank you.

    A document has the same size, orientation and margins throughout.
    You can however set the minimum margins and use Layout breaks to position text and images within that.
    In practice it is best to keep the two separate and combine the finished sets as .pdfs.
    Peter

Maybe you are looking for