Pages running slowly when using tables

Hi,
Pages is running very slowly whenever I try to type into a table. It also will do things like doing commands twice i.e. doubling the letters I press.
My software and app is up to date, and nothing I have found here has fixed it.
since iOS 7 Pages has also been a lot slower than it used to be.
Thanks.

Are you sure that the internet is running slowly?  Or, because you're using an external monitor, you're using more memory than before and you're having some issues with memory access?  You can open Activity Monitor and see how much free memory you have.
One other thing.  Are you using discrete video when you're connected to a monitor?  Or are you using the integrated Intel HD3000 video.

Similar Messages

  • Page break handeling when using table type field

    Hello everyone
    I've created an adobe form using tcode SFP.
    A table, "T1", is containing fields where one of it is a TABLE TYPE (Let give the following name "T1-FT1").
    So the structure can look like:
    T1-F1
    T1-F2
    T1-FT1-FTF1
    T1-FT1-FTF2
    basically the structure is like to have documents containing several items where those items have several serial number.
    I need to have page break per documents, per items and serial number where those one have specific header page different than the document itself.
    I need to have a page break per T1 records with specifc header.
    So for each new records of T1, I have to create a new page with it's specific header.
    The table T1-FT1 is starting on the current page, but if I have to many records to stay on the page I need to create another page with it's specific header that is different than the page 1.
    My problem is the page break handling.
    I can have the pagination tab at the Table1 and row1 level but I don't have the pagination tab at the T1-FT1 level.
    Here is what my hierarchy:
    _MasterPage
    __Page1
    __Page2
    _MainSubForm
    __Subform1
    ___Table1
    ____Row1
    _____Subform
    ______Table2
    ________Row2
    Example of Data:
    T1-F1 ___ T1-F2 __ T1-FT1-FTF1 __ T1-FT1_FTF2
    A _______ B _____  1 ___________  1
    A _______ B _____  1 ___________  2
    B _______ C _____  1 ___________  1
    B _______ D _____  1 ___________  2
    B _______ D _____  1 ___________  3
    The final page break layout should look like:
    Page1
    Header1
    A B
    ___ 1 1
    ___ 1 2
    Page2
    Header1
    B C
    ___ 1 1
    ___ 1 2
    Page 3
    Header2
    B C
    ___ 1 3
    Because there is not enough room on page 2 for the last record of the table T1-FT1, a new header is used on page 3.
    Actually several problems occurs. I cannot have the proper page break set to avoid empty pages as first or last page.
    The pagination tab stop to be available after the Row1. So we cannot set page break at the table2 and row2.
    The page break contidion doesn't work. "Well I didn't succeed to make it work".
    Any idea on how to handle those page break at table2 level?
    Is anyone had to create a PDF form where we have the date into several level of structure?
    Regards
    dstj
    Edited by: dstj on Feb 18, 2010 10:59 PM
    Edited by: dstj on Feb 18, 2010 11:00 PM

    I have the exact same issue. Could not find a solution. In my case, there are multiple subforms printed one below the other. If an expandable subform overflows into a new page, the last line overlaps with the text of next subform. I have added blank spaces between the subforms but, that does not solve the issue.
    Finally, I have managed to minimize the occurrence of the issue by doing the following. Only turn on the flag "Allow Page breaks within content" for subforms that can really spread over many pages. All other subforms, turn the flag off. This minimizes the possibility of overlapping.

  • Why would my i7 Quad-core with 20 GB RAM run slowly when using PE12 for Mac

    Hi, I am evaluating the trial version of PSE 12 for Mac but it is so slow. Are there any good reasons for this as all other programs run fine.

    I don't know if you can do this with the trial, but try going to editor>help>updates and running the update to 12.1. It greatly improves performance on the mac.

  • Why does Photoshop CC running slow when using Mixer brush tool

    Why does Photoshop CC and Photoshop C6 running SOOO slowly when using Mixer brush tool??
    Only to create one stroke it takes several seconds.
    I have to wait a long time to do next stroke. I can't work with this. How do I fix this??
    I have a new computer, a Mac Book Pro with 16 GB ram, so I have plenty of ram.

    You really have to keep your brush size small with the Mixer Brush tool.  And that necessitates keeping your canvas failry small as well.
    Back a few years ago I did a whole painting with the Mixer Brush once and some of the bristle brushes - just to see if I could - and I found I had to really limit the brush size (e.g., to 50 to 75) in order to get enough responsiveness to keep painting.  In that case my canvas was 4096 x 5120.  It's not impossible to get a good, professional result, but you have to be careful about sizing things right.
    -Noel

  • Query runs slower when using variables & faster when using hard coded value

    Hi,
    My query runs slower when i use variables but it runs faster when i use hard coded values. Why it is behaving like this ?
    My query is in cursor definition in a procedure. Procedure runs faster when using hard coded valus and slower when using variables.
    Can anybody help me out there?
    Thanks in advance.

    Hi,
    Thanks for ur reply.
    here is my code with Variables:
    Procedure populateCountryTrafficDetails(pWeekStartDate IN Date , pCountry IN d_geography.country_code%TYPE) is
    startdate date;
    AR_OrgId number(10);
    Cursor cTraffic is
    Select
              l.actual_date, nvl(o.city||o.zipcode,'Undefined') Site,
              g.country_code,d.customer_name, d.customer_number,t.contrno bcn,
              nvl(r.dest_level3,'Undefined'),
              Decode(p.Product_code,'820','821','821','821','801') Product_Code ,
              Decode(p.Product_code,'820','Colt Voice Connect','821','Colt Voice Connect','Colt Voice Line') DProduct,
              sum(f.duration),
              sum(f.debamount_eur)
              from d_calendar_date l,
              d_geography g,
              d_customer d, d_contract t, d_subscriber s,
              d_retail_dest r, d_product p,
              CPS_ORDER_DETAILS o,
              f_retail_revenue f
              where
              l.date_key = f.call_date_key and
              g.geography_key = f.geography_key and
              r.dest_key = f.dest_key and
              p.product_key = f.product_key and
              --c.customer_key = f.customer_key and
              d.customer_key = f.customer_key and
              t.contract_key = f.contract_key and
              s.SUBSCRIBER_KEY = f.SUBSCRIBER_KEY and
              o.org_id(+) = AR_OrgId and
              g.country_code = pCountry and
              l.actual_date >= startdate and
              l.actual_date <= (startdate + 90) and
              o.cli(+) = s.area_subno and
              p.product_code in ('800','801','802','804','820','821')
              group by
              l.actual_date,
              o.city||o.zipcode, g.country_code,d.customer_name, d.customer_number,t.contrno,r.dest_level3, p.product_code;
    Type CountryTabType is Table of country_traffic_details.Country%Type index by BINARY_INTEGER;
    Type CallDateTabType is Table of country_traffic_details.CALL_DATE%Type index by BINARY_INTEGER;
    Type CustomerNameTabType is Table of Country_traffic_details.Customer_name%Type index by BINARY_INTEGER;
    Type CustomerNumberTabType is Table of Country_traffic_details.Customer_number%Type index by BINARY_INTEGER;
    Type BcnTabType is Table of Country_traffic_details.Bcn%Type index by BINARY_INTEGER;
    Type DestinationTypeTabType is Table of Country_traffic_details.DESTINATION_TYPE%Type index by BINARY_INTEGER;
    Type ProductCodeTabType is Table of Country_traffic_details.Product_Code%Type index by BINARY_INTEGER;
    Type ProductTabType is Table of Country_traffic_details.Product%Type index by BINARY_INTEGER;
    Type DurationTabType is Table of Country_traffic_details.Duration%Type index by BINARY_INTEGER;
    Type DebamounteurTabType is Table of Country_traffic_details.DEBAMOUNTEUR%Type index by BINARY_INTEGER;
    Type SiteTabType is Table of Country_traffic_details.Site%Type index by BINARY_INTEGER;
    CountryArr CountryTabType;
    CallDateArr CallDateTabType;
    Customer_NameArr CustomerNameTabType;
    CustomerNumberArr CustomerNumberTabType;
    BCNArr BCNTabType;
    DESTINATION_TYPEArr DESTINATIONTYPETabType;
    PRODUCT_CODEArr PRODUCTCODETabType;
    PRODUCTArr PRODUCTTabType;
    DurationArr DurationTabType;
    DebamounteurArr DebamounteurTabType;
    SiteArr SiteTabType;
    Begin
         startdate := (trunc(pWeekStartDate) + 6) - 90;
         Exe_Pos := 1;
         Execute Immediate 'Truncate table country_traffic_details';
         dropIndexes('country_traffic_details');
         Exe_Pos := 2;
         /* Set org ID's as per AR */
         case (pCountry)
         when 'FR' then AR_OrgId := 81;
         when 'AT' then AR_OrgId := 125;
         when 'CH' then AR_OrgId := 126;
         when 'DE' then AR_OrgId := 127;
         when 'ES' then AR_OrgId := 123;
         when 'IT' then AR_OrgId := 122;
         when 'PT' then AR_OrgId := 124;
         when 'BE' then AR_OrgId := 132;
         when 'IE' then AR_OrgId := 128;
         when 'DK' then AR_OrgId := 133;
         when 'NL' then AR_OrgId := 129;
         when 'SE' then AR_OrgId := 130;
         when 'UK' then AR_OrgId := 131;
         else raise_application_error (-20003, 'No such Country Code Exists.');
         end case;
         Exe_Pos := 3;
    dbms_output.put_line('3: '||to_char(sysdate, 'HH24:MI:SS'));
         populateOrderDetails(AR_OrgId);
    dbms_output.put_line('4: '||to_char(sysdate, 'HH24:MI:SS'));
         Exe_Pos := 4;
         Open cTraffic;
         Loop
         Exe_Pos := 5;
         CallDateArr.delete;
    FETCH cTraffic BULK COLLECT
              INTO CallDateArr, SiteArr, CountryArr, Customer_NameArr,CustomerNumberArr,
              BCNArr,DESTINATION_TYPEArr,PRODUCT_CODEArr, PRODUCTArr, DurationArr, DebamounteurArr LIMIT arraySize;
              EXIT WHEN CallDateArr.first IS NULL;
                   Exe_pos := 6;
                        FORALL i IN 1..callDateArr.last
                        insert into country_traffic_details
                        values(CallDateArr(i), CountryArr(i), Customer_NameArr(i),CustomerNumberArr(i),
                        BCNArr(i),DESTINATION_TYPEArr(i),PRODUCT_CODEArr(i), PRODUCTArr(i), DurationArr(i),
                        DebamounteurArr(i), SiteArr(i));
                        Exe_pos := 7;
    dbms_output.put_line('7: '||to_char(sysdate, 'HH24:MI:SS'));
         EXIT WHEN ctraffic%NOTFOUND;
    END LOOP;
         commit;
    Exe_Pos := 8;
              commit;
    dbms_output.put_line('8: '||to_char(sysdate, 'HH24:MI:SS'));
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_CUSTNO ON country_traffic_details (CUSTOMER_NUMBER)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_BCN ON country_traffic_details (BCN)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_PRODCD ON country_traffic_details (PRODUCT_CODE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_SITE ON country_traffic_details (SITE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_DESTYP ON country_traffic_details (DESTINATION_TYPE)';
              execDDl(lSql);
              Exe_Pos:= 9;
    dbms_output.put_line('9: '||to_char(sysdate, 'HH24:MI:SS'));
    Exception
         When Others then
         raise_application_error(-20003, 'Error in populateCountryTrafficDetails at Position: '||Exe_Pos||' The Error is '||SQLERRM);
    End populateCountryTrafficDetails;
    In the above procedure if i substitute the values with hard coded values i.e. AR_orgid = 123 & pcountry = 'Austria' then it runs faster.
    Please let me know why it is so ?
    Thanks in advance.

  • Why my mac book running slowly when i see the movie online?

    why my mac book running slowly when i see the movie online?
    Many time i hv seen tht whn i start it n in few mins it shows me the colored corsor as its working hard....

    Go to System Preferences > Displays > use the underscan slider to adjust picture size on the TV.

  • Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery

    Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery args.get_isPartialLoad().
    My page is loaded into a palcehold within the Ajax update panel within the current Masterpage, so page loadload doesn't occur. But if my Muse page can capture  the partial pageload then I can tell jquery to run the Muse formating routine.

    Jackie,  I am having the same issue and agree that it obscures our site analytics.
    I only have the "WebMarketing" subscription - so I cannot see how often people visit my site (unless I just dont know how to view that).  Here is a screen shot of how many different locations I have and how much it affects my site visitor count based on the other locations which seem "legit" because they have more page views than visits.
    I hope there is a way to fix or block this.

  • Web pages are black when using Safari 4.0.3 on Windows 7

    Web pages are black when using Safari 4.0.3 on Windows 7. It does not matter what page I try to view, all page are black. Sometime I can see pictures and white text box.
    Screen capture:
    http://users.jyu.fi/~ksalone/virhe/Safari403_Problem_onWin7.PNG

    Hi and welcome....
    Try deleting the temporary internet files (cache)
    How to Delete the Contents of the Temporary Internet Files Folder
    Carolyn

  • Hello, I have a problem, my macbook pro runs slowly when unplugged but if I plugged it, it runs perfectly.

    Hello, I have a problem, my macbook pro runs slowly when unplugged but if I plugged it, it runs perfectly.

    The battery needs to be replaced, or there is some other hardware problem.

  • Help: Jbo Exception non blocking when using table cell renderer?

    Hi,
    JClient 9.5.2.
    When using Table Cell Renderer on an table cell attribute that is defined mandatory and activating the insert button, the (oracle.jbo.AttrValException) JBO-27014 exception is caught but it is not blocking and a new row is still inserted.
    The JClient component demo, table attribute list, has the same behaviour.
    You can add multiple rows even if not all required attributes have been documented.
    Can a Swing specialist help me on this one?
    Example of Table Cell Renderer:
    public class TableBasicStatusRenderer extends DefaultTableCellRenderer
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
    int row, int column)
    JLabel lb = new JLabel((String) StaticData.getStatusName(value)); // retrieves label from Map
    return lb;
    Regards
    Frederic

    Hi,
    I found something interesting, it could be a WORKAROUND!
    I noticed that in another detail panel with table layout the JBO exception was blocking and adding another row before completing the row was NOT possible.
    In the create method of the entity object of the displayed View Object I iterate over the detail row iterator to retrieve a maximum value.
    By the end of the method the pointer is positionned after the last row.
    So I added to the detail panel that doesn't block following code:
    In create method of detail Entity Object Impl (only one entity object involved for this View)
    // Retrieve master EntityObjectImpl from association:
    PostalTariffImpl postalTariffImpl = getPostalTariffAssoc();
    // Retrieve detail default row iterator
    RowIterator ri = postalTariffImpl.getPostalDetailGroupAssoc();
    // Position pointer after last row
    ri.last();
    ri.next();
    Question: Why does this solve the problem?
    Regards
    Frederic
    PS Les mysteres de l'informatique!

  • Internet running very slowly when using external monitor.

    I've used my HDTV as an external monitor for my various MacBooks for years with no problems. I bought a 17-inch MacBook Pro, and it worked perfectly doing the same thing for the first few months that I had it. Recently it has started to have very poor Internet speed, but only when I connect it to my TV. The Internet and my Airport Extreme are not the cause, as no one else in the house has this issue and my iPad loads sites as fast as it ever has. Plus, the MacBook Pro in question has an excellent connection once I disconnect it from the external monitor.
    What could be the cause of this? I updated to 10.7.2 way back when it was released and only had problems very recently. Is there anything I can do without having to take it to the Apple Store?

    Are you sure that the internet is running slowly?  Or, because you're using an external monitor, you're using more memory than before and you're having some issues with memory access?  You can open Activity Monitor and see how much free memory you have.
    One other thing.  Are you using discrete video when you're connected to a monitor?  Or are you using the integrated Intel HD3000 video.

  • Printer Driver Problem?  Page margins shift when using paper tray vs. manual feed

    I am printing to an Apple LaserWriter 12/640 PS. The printed page and page margins are PERFECT (WYSIWYG; "What you see is what you get") when printing either to: (a) the MANUAL FEED TRAY of the Apple LaserWriter 12/640 PS; or (b) PDF to view on screen.
    HOWEVER, when printing to the LaserWriter using the (ordinary/usual) paper cassette (you know, the thing that holds the 200+ sheeets of blank paper), two margin problems occur: (1) the uppermost portion of page content is shifted down 3/4" (maybe closer to 11/16") vs. its position on the manually fed paper.  This, in turn, causes the botttom portion of the page content to run off below the printed page.  (2) The "unprintable region" on the right edge of the paper expands from 1/8" with the manually fed paper to 7/16" when using the paper cassette.  This shows up as an extra 5/16" (7/16" - 1/8" = 5/16") of white space/missing page content on the right edge.
    The problem is consistent and reproduceable.  It happens with cassette fed output from Safari, Word 2011, Acrobat X, TurboTax, Quicken Essentials for Mac, and TextEdit.
    BIG problem when printing long documents whose content and margin settings I cannot control (e.g., third-party documents from Acrobat, anything from Quicken Essentials or TurboTax, pages from Safari, etc.).  The only workaround is to feed everything manually (UGGH!).
    I suspect the printer driver is faulty since the problem detailed above happens with so many applications.  Is there a way to edit a plist (using the application/utility "Pref Setter" or similar) to overide the driver's margin settings?
    I believe the print driver is "Apple LaserWriter 12/640 PS v2015.105" (from Sytem Prefences->Print&Scan->Options and Supplies->Driver).
    Any help greatly appreceated.

    Thanks!  It works perfectly!  I even saved my original "oversize" document by printing it to PDF with the scaling so the problem is permanently cured, at least for this document.

  • Button "Position" can't work in sm30 when use Table maintenance generator

    Hello guys,
      i have created a table and use 'Table Maintenance Generator' to generate the code. When i run sm30 and click the button 'Position', it can not work.
       i enter '/h' to debug it and find the value'POSI' is not assigned to ok_code.
        Some tables created before are OK. What's the matter with it?
    Many Thanks

    hello daniel,
    there is very possibility that some inconsistency might be occured while generating table maintenance generator. So i would advice u to create ur table maintenance generator once more after deleting the current one.
    Reward properly.

  • Hp probook 4403s run slowly when copy data

    Why do my hp probook 4430s core i3-2330 with 4GB ram, 500GB HDD run slowly while copying data? (tested in win8-64bit, win 7-64 bit, win 7-32bit) My HDD is tested. It is in good condition, no bad sector. When i copy data (between logical drives or external drives), my laptop is running slowly and lad. It runs like a old computer with pentium 4 and ram 500MB. So, when i copy data, i do nothing and waiting it completed.. My old laptop with core2duo and ram 1GB give me both copying data and do another things like browse web easily?
    Please help me solving it.

    Hey mayouly,
    While "slow" is a subjective term, I want to give you some things to consider. You may already be aware of these things but I wanted to put the information out there, just in case. Over time, hard drives accumulate data and the more full they are, the more time it will take a to access data, in turn slowing down the copying process. Also as you use your computer, the services running in the background accumulate and can be set to run on start up without you being aware. To check what is running in the background,
    Bring up Task Manager (Ctrl + Shift + Esc) > Click on the Processes tab > Click on the Memory column to put in descending order. 
    This will put the heavier, resource-hogging processes at the top. Sometimes anti-viruses may have an updater service going, or another 3rd party program may have an updater service running without you knowing about it. Like I mentioned, these processes could be installed set by default to start up when you power on the computer, even if you don't open that program. For instance, after installing iTunes, the applepush (iTunes' updater service) will run every time you power on the computer. This is not the only program that sneaks these services in. Browser toolbars will sometimes do the same thing. You can also check to see what is starting up at power on by using msconfig.
    Click the Start button > Type "msconfig" > click "msconfig.exe" > Click the Start Up tab.
    Every thing that is checked must start at power on. There may be some unnecessary processes in that list which can simply be unchecked. You'll want to use caution though because something that may look unfamiliar might be a required driver for your computer, like audio or touchpad software. When you're done making changes, Click Apply. It will prompt you to Restart. You should see a difference, if you can get rid of some unnecessary processes running.  Of course, every computer can use a recovery periodically, to clean up the clutter in the registry and get rid of unused applications and processes. You'll need to save your personal files on an external hard drive before performing a recovery because everything on the hard driver will be removed and Windows will be reinstalled. 
    If you go through these steps and the computer still seems slow, or if the computer has always seemed slow since you got it, you may see an increase in performance by installing additional RAM. If you haven't already used HP System Diagnostics to test your hard drive you will to follow these steps for a Hard Drive test.
    Turn off the computer.
    Use one of the following methods:
    Turn on the computer and immediately press the F2 key repeatedly, about once every second, until the HP System Diagnostics program opens.
    OR 
    Turn on the computer and immediately press the Escape key repeatedly, about once every second, until the Startup menu opens. Then press F2 .
    The System Diagnostics window allows you to run several diagnostic tests. Each test determines if the hardware is functioning properly, and displays an error message and a warranty ID if there is a hardware failure.
    I hope these steps help. Let me know if you have any questions. I'll keep an eye out for your reply

  • Error when using Table view

    Hi Folks,
    I m getting this problem frequently when i m using table view in reports. Im using SQl server2008 and working on BIApps.
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 16001] ODBC error state: 28000 code: 18456 message: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'DWH'.. (HY000)
    SQL Issued: SELECT 0 s_0, "Financials - AP Overview"."Time"."Fiscal Quarter" s_1, "Financials - AP Overview"."Time"."Fiscal Year" s_2, "Financials - AP Overview"."Facts - AP Turnover"."Days Payables Outstanding" s_3 FROM "Financials - AP Overview" FETCH FIRST 65001 ROWS ONLY
    Thanks in advance.
    Raghava.

    Hi,
    As per you query shown above, I am assuming that the query limit exceeds the maximum number of rows to show in your result. because it showing only 65001 rows fetched but your data may be more than that.
    So try to extend the maximum rows for table view in instanceconfig.xml file.
    Regards,
    Pandian

Maybe you are looking for

  • Lync 2013 crashes on startup in Windows 8.1 on Dell latitude E6520 machines

    Lync 2013 crashes on startup in Windows 8.1 on Dell latitude E6520 machines.  Every E6520 with windows 8.1.   Error message is: Log Name:      Application Source:        Application Error Date:          4/15/2014 3:54:06 PM Event ID:      1000 Task C

  • HELP 10.5.1

    I downloaded AOL for mac, but it doesn't work very well. The website says I should have the 10.5.2 update. I tried downloading the update, and I got a message that said I don't have the right system requirements. So I went back and downloaded 10.5.1

  • Transpose or Pivot

    I am a new user to Oracle Reports and I am trying to convert many reports from our current environment in SAS. We have many reports in our current SAS environment in which we basically transpose (pivot) our data before we produce the report. There is

  • SOLMAN_SETUP transaction

    I've just installed Solution Manager 7.0 EhP 1 on a Windows server with MS SQL Server 2005. The install went fairly smoothly (only a coulple of memory issues), although my practise server does not have a Fully Qualified Domain Namae (FQDM) or a conne

  • Wi fi problems E65

    Hi, Can anyone point me in the right direction to configure my E65 for Internet calls? I already have Voip with my Internet provider. I am also having trouble using the wifi connection - it recognizes WiFi networks but then when i try to go to a web