How to emulate Word tables behaviour in Pages

I am trying to create a document which has the text of a book in English in the left column of each page and the same text in Japanese in the right column. I want the beginning of each paragraph to align with the beginning of each corresponding paragraph in the other language.
I was doing this in Word previously, but because I'm in the beta program, Word (2011 beta) starts to freak out with documents over about 300 pages. In Word, I did it by having a 2-column table, using a single row for each chapter. I then used line breaks to align the paragraphs within a chapter.
Is there any way to get similar functionality in Pages? I tried doing it with a table (by importing the .docx I had been working on) but Pages only shows one row per page, hiding all the text in any row which doesn't fit on a single page. Can I make column rows flow over more than one page?
I also tried working with text boxes, but they are such a clunky solution and it seems (unless I'm missing a trick) that I'd have to manually put new text boxes in the same position on each page, then manually create the link between each one.
Many thanks

Blahah404 wrote:
As I understand it I can use Applescript to interact with Pages, is this correct? If so, is it possible to write a script which creates a new table row and fills it with content overflowing from the previous row, ad infinitum until all the content is visible in successive rows? It seems strange that there would be no tool available for this functionality.
You may feel that it's strange.
What is sure is that there is no such a feature.
The support of tables in AppleScript is really short :
just a command allowing us to create a table with a given contents, with or without a header row or/and a header column.
no provision to rule columns widths, rows heights.
I built a small script able to extract the contents of a table but at this time, I found no way to edit them.
tell application "System Events" to set (UI elements enabled) to true
tell application "Pages"
activate
set table_name to "Table 1"
tell document "Sans titre 3"
set window_name to name
set existing_graphics to name of every graphic
if existing_graphics does not contain table_name then
add table data {{"Year", "Mac", "iPad"}, ¬
{2009, 100, 0}, {2010, 200, 220}} with header column and header row
end if
-- get properties of every graphic
set name of graphic 1 to table_name
end tell -- document
end tell -- application Pages
Now we use GUI scripting
tell application "System Events" to tell application process "Pages"
tell table table_name of UI element 1 of group 1 of UI element 1 of scroll area 1 of splitter group 1 of window window_name
-- get every attribute
get properties of attribute "AXRowCount"
-- {class:attribute, name:"AXRowCount", value:3, settable:false}
(* We can get the Row Count but we can't change it *)
tell first static text of UI element 2 of row 2
get properties
get attributes
get properties of attribute "AXFocused"
-- {class:attribute, name:"AXFocused", value:false, settable:false}
(* We can get the value but we can't change it *)
get properties of attribute "AXEnabled"
-- {class:attribute, name:"AXEnabled", value:false, settable:false}
(* We can get the value but we can't change it *)
get properties of attribute "AXSelectedText"
-- {class:attribute, name:"AXSelectedText", value:missing value, settable:false}
(* We can get the value but we can't change it *)
get properties of attribute "AXSelectedTextRange"
-- {class:attribute, name:"AXSelectedTextRange", value:missing value, settable:false}
(* We can get the value but we can't change it *)
get properties of attribute "AXValue"
-- {class:attribute, name:"AXValue", value:"100", settable:false}
(* We can get the value but we can't change it *)
end tell -- first static…
end tell -- table…
end tell
With such tool, I feel that it's difficult to achieve your goal.
It's why I responded :
If this doesn't fit your needs, you must use an other tool.
Yvan KOENIG (VALLAURIS, France) dimanche 11 juillet 2010 18:03:07

Similar Messages

  • How to keep a table on one page

    Hi,
    Is there any way to prevent a pagebreak in a table?
    If a table is selected, then the Inspector-Text-More-Pagination&Pagebreak is grayed out.
    I tried Inspector-Wrap-Object Placement-Floating, which indeed keeps the table on one page, but has all kinds of nasty side-effects. I really need to keep the table inline.
    Thank you!

    Archon,
    In the Wrap Inspector, change the Table's property from Inline to Floating. Now you can position it on the following Page and avoid the split. Be careful though, because now you are fully responsible for the table position on the page and it will not split even if it grows larger than a page in length.
    Jerry

  • How to implement attachment table in create page

    Hi
    I tried to add an attachment table in create page,but the table is not appearing.
    Is it because that the primary key attribute mapped to attachment table is committed only after clicking submit button in create page?.
    I am using a sequence for primary key.
    Thanks,
    Sridharan

    Hi ,
    Please see following post in forum
    Attachment table is not appearing in the page.
    Thanks ,
    Ashish

  • How to convert word documents to html page in sharepoint online 2013

    Hi,
    I am new SharePoint and still learning it.
    I have been tasked to do the following on office 365 E3 SharePoint 2013 Online edition.
    1) I have to create a Web page in asp.net
    2) This page needs to show document from a given SharePoint folder and bind them in a grid or dropdown on the asp .net web page
    3) On selecting the document from the drop down or gird (on asp .net webpage), I need to show the SharePoint word document as HTML on the webpage (something like word to html) Note: These SharePoint word document may contain Images, bullets, tables etc. 
    What I have been able to do till now
    1) I have been able to connect to SharePoint from ASP .net application.
    2) I have been able to retrieve document from a specific SharePoint folder.
    3) Read the document from SharePoint folder and bind them to a drop down on the asp .net page.
    What is missing?
    I am not aware about any API that SharePoint Online provides to convert Word document to HTML. Any code sample or reference on how to will be much appreciated. 
    I am not also not sure what is the best way of achieving the functionality this?
    Thanks 
    Krishna

    If this was SharePoint server then it would be easy however in O365 You need to create a app which will use the word automation service and below is  powershell which you can use for the conversion:-
    # This script will convert Docx to PDF using word automation and similarly it can be used to convert to HTML
    $wordFile="http://contoso/kick.docx"
    $pdfFile="http://contoso/kick.pdf"
    $wasp = Get-SPServiceApplicationProxy | where { $_.TypeName -eq "Word Automation Services Proxy" }
    $site = Get-SPSite "http://contoso"
    $ConvertJob = New-Object Microsoft.Office.Word.Server.Conversions.SyncConverter($wasp)
    $ConvertJob.UserToken = $site.UserToken
    $ConvertJob.Settings.UpdateFields = $false
    $ConvertJob.Settings.OutputFormat = "PDF"
    $ConvertJob.Convert($wordFile, $pdfFile)

  • How to create dynamic tables in jsp page

    Hi,
    Iwant to create a table with 8 rows.each row will have two select boxes and one text box.besides i have add button.intially the screen shows only one row.if user clicks on add button then another row is added.like this upto 8 rows.
    how can solve this problem..
    regards,

    Hi I am not a big programmer but i can suggest a method to u
    try something like this..
    this could be quite adjusted in html page itself.....
    <html>
    <head>
    <script language="javascript">
    var count=1
    fucntion addRow(){
    if(count<8){
    count=count+1
    row.innerHTML=row.innerHTML+"<tr><td><input type='text' name="+count+"></td><td><input type='button' onclick=addRow() value='Add' name='add'></td></tr>"
    else if(count==8){
    row.innerHTML=row.innerHTML+"<tr><td><input type='text' name="+count+"></td><td></td></tr>"
    </script >
    </head>
    <body>
    <form action='Myservlet" method='post'>
    <table>
    <div name='row' name='row'><tr><td><input type='text' name=1></td><td><input type='button' onclick=addRow() value='Add' name='add'></td></tr></div>
    </table>
    </form>
    </body>
    </html>
    I believe it could be quite adjusted @ client side itself.... as per your description...

  • How to format this table in jsp page?

    I have a table in database and there are four data field in it.They are "id","name","email","registetime".
    In javabean,I add all this data to a vector:" ResultSet rs;
    while(rs.next()){
    vec.add(rs.getString("id");
    vec.add(rs.getString("name");
    vec.add(rs.getString("email");
    vec.add(rs.getString("registetime");} ";
    I use a Iterator to read all the data to jsp page:"
                   iter=vec.iterator();
                   while(iter.hasNext()){
                   int i=0;               
                   %>
                   <table border="1" bordercolor="#FF6699" bgcolor="#CCCC99">
                   <%
                   if(i==0|i%8==0){
                   out.println("<td><tr>");
                   %>
                   <%=iter.next()%>
                   </td>
    <%
                   if(i%8==0)
                   out.println("</tr></td>");
                   i++;
                   %></table>
    I use a variable i for change range.I want to output a '\n' after output 4 data.But now the data in IE is this:
    1
    lyo
    [email protected]
    2003-6
    2
    Yashnoo
    [email protected]
    2003-7
    It not that I want to get.I means I want to get data like this:
    1 lyo [email protected] 2003-6
    2 Yashnoo [email protected] 2003-7
    How can I do? :(

    Anyone has idea?But I change it to this:
    <body>
    <table border="1" bordercolor="#FF6699" bgcolor="#CCCC99">
    <%
    Iterator iter=null;
    ResultSet rs=null;
    Vector vec=new Vector();
    vec=lyo.addData(rs,vec);
    iter=vec.iterator();
    try{
    while(iter.hasNext()){
    int i=0;
    %>
    <%
    if(i%8==0){
    out.print("<tr>");
    out.print("<td>");
    %>
    <%=iter.next()%>
    <%
    out.print("</td>");
    if(i%8==0){
    out.print("</tr>");
    i++;
    %></table>
    <%
    }catch(Exception e){
    out.println(e.toString());
    %>
    It can't help? Why?

  • How to generate dynamic table in JSPX page?(Use ADF to realize OAF)

    Dear all,
    My requirment is to realized the a EBS standard OAF page(PDH module) function by ADF technique. The key point is to realize Dynamic Search Layout and Dynamic Result Table Layout by ADF.
    If anyone who is skill at OAF and ADF, proficient in PDH module is prefered, your question will be highly appreciated.
    Because it is hard to paste image into this thread, so I will appreciate it very much if you can refer the attachment ifile of SR 3-1397372841 for detail information. Sorry for the trouble, I really thanks for your help.
    Edited by: user12264776 on 2010/02/22 17:32

    Hi,
    Thanks for the quick reply. I am using JSF for my ADF application.Could u please elaborate how to use the PhaseListener for Auditing user navigation?
    Arijit

  • How do create a table of contents page from a series of bookmarks?

    I am compiling bundles of documents for printing, starting from single PDFs. I combine them using Acrobat Pro X for Mac which gives me a single PDF, with a series of bookmarks for each document. I then insert page numbers.
    What I need is a way of creating a table of contents for printing (as opposed to a "digial T.O.C" - ie the bookmarks list). Ideally, I would need a script that would copy the list of bookmarks and the page numbers for each and dump them to a new page in the PDF bundle (or a text file).
    That way I can print the PDF with a Table of Contents at the front.
    There was an entry on the Acobrat for Legal Professionals blog a while back (http://blogs.adobe.com/acrolaw/2009/12/list_bookmarks_with_a_free_scrip/) - as far as I can tell that hint only works for Acrobat 9.
    Any help gratefully received

    Rick Borstein created an Action in Acrobat X Pro., that allows you to create a Bookmark Report. You might see if that does the trick.

  • How do I arrange tables on a page in numbers?

    I have multiple tables on the same page in a Numbers document. Unfortunately, the tables are overlapping, so that they are illegible. Is there a way to arrange them, say vertically, so that they do NOT overlap?
    Neither the Arrange menu item or the Arrange item in the inspector do this. They both arrange the handles in the upper left corner of each table, but leave the tables overlapping.
    Here is my scenario. I have a travel document with three pages, one for a trip template with a single table; one for upcoming trips with one table per trip; and one for trips I have finished, with one table per trip. When I plan a trip, I copy the table from the template into the Upcoming page, and fill in the details. After the trip is over, I drag that table into the "Finished" page. But now I have a jumble of overlapping tables, one per trip, in my Finished page.
    I COULD drag and drop each one by hand. But that is horribly inefficient and crude. Isn't there an automatic way to arrange them??

    That is an unfortunate answer. My use of the tool is limited by the imagination of the Apple employees who built the examples? Surely it isn't too much to ask that the design elements on a sheet be arrangeable without overlap, so that one can SEE THEM?!
    in my case it seems a good design to have tables for upcoming trips and then to archive them somehow. a separate sheet for each trip is clearly a poor design. Moving the tables to something other than numbers is unnecessarily cumbersome.
    Two obvious solutions are to switch to Excel or to switch back to the previous version of numbers, both of which would support this workflow.
    A Well designed tool does not tie the users hands like this. Is Numbers really incapable of doing an automatic layout of a sheet?

  • How do I centre Tables ?

    Hi,
    Could someone please tell me how to centre a table on the
    page?
    I am doing a lesson which tells me to start building a page
    by placing a table 700px wide but I cant find anything that lets me
    shift it to the centre of the screen. I am using Dreamweaver CS4.
    In FrontPage I just put Table Properties 700px wide –
    centre - and its done.
    Everything else is fine.
    Cheers
    John

    Select the table. Use the Property inspector to set the Align
    drop list to
    "Center". Or manually add this attribute/value pair to the
    <table> tag -
    align="center"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Buringee" <[email protected]> wrote in
    message
    news:gk4seq$abm$[email protected]..
    > Hi,
    >
    > Could someone please tell me how to centre a table on
    the page?
    >
    > I am doing a lesson which tells me to start building a
    page by placing a
    > table
    > 700px wide but I cant find anything that lets me shift
    it to the centre of
    > the
    > screen. I am using Dreamweaver CS4.
    >
    > In FrontPage I just put Table Properties 700px wide ?
    centre - and its
    > done.
    >
    > Everything else is fine.
    >
    > Cheers
    > John
    >
    >

  • How do I run a table over multiple pages?

    Hi I write TV scripts using a simple two column table which can be many rows long - how can I get Pages to automatically run the table over multiple pages whilst still allowing me to cut and paste and rearrange the script? This is simple in Word and must work in pages but I can't work out how to get it to work. I've tried looking at the Page Break feature but it won't come up from the table?
    many thanks

    At this time, There is no way to drive tables in Pages with AppleScript.
    Do your job in Numbers which allow that.
    Yvan KOENIG (from FRANCE vendredi 6 février 2009 13:54:35)

  • How do you change/adjust border width for all the cells in a table created in Pages?

    How do you change/adjust border width for all the cells in a table created in Pages?
    Note- I am trying to figure out how to create and format tables in the latest version of the Pages app on an iPad air (iOS 8.1.1.1) . Creating tables, adding or removing borders for individual/all cells in a table seems straight forward. However the default border style seems to be a heavy black line. How do I change this?
    I found the option add or remove borders for all/ individual cells in a table, however I can't find any option within style/format dialogue screens for changing colour or line thickness for table cells. Likewise I can't find any clear instructions on how to do this in apple help pages or support website
    Btw- I'm assuming  it is possible to customize/adjust the colour & thickness of selected lines in a table created in this app (it's fairly easy to do this word processing apps like MS Word) please let me  know if this is not actually possible in Pages

    They know perfectly well what they took out of Pages '09.
    Well over 90 features.
    Do you think you posting feedback is going to remind them of what they did?
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5 and rate/review it in the App Store, then get back to work.
    Peter

  • How do I Hide a Row in a Table in a Pages document?

    How do I hide a row or column? There is a command to "unhide" but not to hide. Because I cannot hide anything, the unhide command is greyed out - what did Apple do with the Hide Rows command for Tables in Pages? Hide it? lol!
    It does not show up in a search of Help - in fact, there isn't even a mention of "unhide" despite there being a command for it!
    Why do I want to hide a row? Because if I have an 8 row table in a Pages Template and I only need six of them, deleting the other two breaks all the formulae and inserts #Ref! errors across each formula, rather than automatically altering cell references as other spreadsheets do. In Numbers hiding the cells makes them disappear and does not break the formulae, but this behaviour seems to be missing from Pages.
    Or is it me that has missed somethng?

    I thought that the descriptions given in the Help are clear.
    The ADDRESS function constructs a cell address string from separate row, column, and table identifiers.
    ADDRESS(row, column, [type], [style], [table])
    row: The row number of the address.
    column: The column number of the address.
    I dropped the comments about type, style and table as I don't use them here.
    =IF(ISBLANK(INDIRECT(ADDRESS(ROW(),1))),"",INDIRECT(ADDRESS(ROW(),2))*INDIRECT(A DDRESS(ROW(),3)))
    INDIRECT(ADDRESS(ROW(),1))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 1st one)
    INDIRECT(ADDRESS(ROW(),2))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 2nd one)
    INDIRECT(ADDRESS(ROW(),3))
    returns the contents of the cell whose row is the same than the one containing the formula \[the row number is given by ROW()] and whose column is the 3rd one)
    In short, when the formula is applied in row 9 it behaves like:
    =IF(ISBLANK(A9),"",B9*C9)
    The long syntax is required to be able to enter it only once in the header cell as described in the Help and in the PDF User Guide in a chapter entitled "Applying a Formula Once to Cells in a Column or Row".
    As we want to use such a formula, it would be odd to destroy its ability using a different formula in a standard bottom row.
    More, in a footer row, we may use shorter formulas than in other rows.
    In a standard row 10 we would have to write =SUM(D2:D9)
    in a footer row we enter only =SUM(D) which add the contents of every standard cells of the column D.
    This feature is also described in the named resources.
    Yvan KOENIG (from FRANCE vendredi 3 octobre 2008 18:21:13)

  • How to paste a Word table into email without showing the guidelines.

    When I paste a Word table into an email using Explorer, the guidelines don't show. When I paste into an email while using Firefox, the lines show. I don't want the guidelines to show.

    BigEnd wrote:
    When pasted from Word, the graphics are Inline by default.  You can correct each one by selecting the graphic and then Anchored Object, Options and selecting Above Line (centered etc).  What I do then is create an object style to these specs and this makes it quicker to apply to the graphics.
    You say that there are very many graphics in the doc - does anyone know how to make the above settings the default when graphics are pasted from Word?
    M
    Thank you M, but I believe I figured it out:
    I made styles in Word to make things a bit simpler when changing large sections of text, so within the settings of the images style select Format>Paragraph>Line and Page Breaks. Under 'Textbox Options' the Tight wrap defaults to 'None' - Select 'All'.
    When the file is placed into InDesign, the images don't overlap, and are exactly where they need to be.

  • I just had my old operating system reinstalled, and i can't save pages documents, don't know how to install word

    i just had my old operating system reinstalled after a breakdown, and now i can't save pages documents. i don't know how to install word.

    What was your old system?
    What is your new System?
    What version of Pages?
    How did you install it?
    I don't know if you can see what's on my screen, but I definitely can't see what's on yours.
    To Install Word, buy it and follow the instructions.
    Peter

Maybe you are looking for

  • List view problem in iTunes 10.  How to move Album/Artist description text.

    Starting with iTunes 10, in list view the Artist and Album name info was moved from underneath the Album Art in the "Artwork" column to the right of it. like the 1st screenshot below Is there a way to revert to having that info placed underneath the

  • Cannot connect to remote speakers through Airport Express

    Please help me! Please for the love of the mac guy on tv who encouraged me to switch. I've been a happy mac user. I am not all that technically saavy and hence switched to a mac because "it just works." I bought the airport express and hooked it up t

  • Yosemite - Samsung 840 Pro Significant Slowdown

    I have upgraded my MacbookPro 15" Early 2011 with a Samsung SSD 840 Pro 512GB. It was performing extremely smooth and well using OS 10.9 (Mavericks). Last week, I have upgraded the OS X to Yosemite and now I'm experiencing frequent significant slow d

  • Error in application log for transaction FPSA

    Dear Colleagues, The application log for this transaction returns the following message, 'Run SELA 15.01.2008 V00001 is not ready Message no. >REP 014 Diagnosis The run was probably terminated as a result of an error System Response The interval was

  • Wrong excise calculations in MIRO

    Dear All,     we have created a PO and partial MIGO and MIRO has been done and all the entries has been posted correctly. Now while doing MIRO for the remaining partial quantity excise values are calculating wrong in MIRO. GRN has been done and part