PDF - paginating table

Hi,
please, how to break a table in pages automatically in the PDF Form?
I'm using Adobe LiveCycle Designer.
Thanks.

Hi Sumit,
I am facing one problem very simillar to this. Suppose I have designed the master page and i have the company logo as header in all the pages. I have choosen Flow Layout for all the table but when the tables has many rows, it is extending to the next page but problem is that these rows are overlapping with the header of the next page(Company Logo). Is there any way we can keep the Master page header fix and the extra table rows from the first table will be displayed that only.
Your sugestion is highly welcome.
Regards
Satya

Similar Messages

  • OTF to PDF - Getting blank PDF Internal table with CONVERT_OTF func module

    All
    i've captured OTF from smartforms and tried converting to PDF through 'CONVERT_OTF_2_PDF' FUNCTIOn module and after emailing to external email id, i found logo is completely disturbed (characters in logo got mixed up)..... later i tried converting with ''CONVERT_OTF' function module, but here i'm getting blank PDF internal table....
    what am i missing in both ?
    my intention is converting otf to pdf and emailing...though there are thousands of similar threads are available , none of them are related to my exact problem, which is logo is getting mixed up or disturbed.... any suggestions ?
    Thanks in advance

    Hi,
    You need to use the function module SX_OBJECT_CONVERT_OTF_PDF to create the PDF from OTF ..
    Here is an example program
    report ZPDFPRNT no standard page heading.
    TABLES: TST05.
    DATA: BEGIN OF ITAB OCCURS 0,
       TLINE(255),
    END OF ITAB.
    DATA: BEGIN OF ITAB2 OCCURS 0,
      TLINE(255),
    END OF ITAB2.
    DATA: BEGIN OF ITAB3 OCCURS 0,
      TLINE(255),
    END OF ITAB3.
    DATA: BEGIN OF OTF_TAB OCCURS 0,
      TLINE(255),
    END OF OTF_TAB.
    DATA: LEN_OUT LIKE SOOD-OBJLEN.
    DATA: LEN_IN LIKE SOOD-OBJLEN.
    DATA: BEGIN OF DATA_SET OCCURS 200,
      DATA_LENGTH(5),
      PRECOL(1),
      DATA_LINE(1000),
    END OF DATA_SET.
    DATA: BEGIN OF OTF_PAGE OCCURS 200.
      INCLUDE STRUCTURE ITCOO.
    DATA: END OF OTF_PAGE,
    OTF_PAGES TYPE P,
    OTF_MAX_PAGES TYPE P VALUE 10.
    DATA: BEGIN OF OTF_CONTROL.
      INCLUDE STRUCTURE ITCPP.
    DATA: END OF OTF_CONTROL,
    FORCE_RAW_OTF VALUE ' ',
    L100_EXCLUDE(4) VALUE 'OTFJ',
    BEGIN OF OTF_PAGE_INDEX OCCURS 20,
      LINE_NUM TYPE P,
    END OF OTF_PAGE_INDEX,
    CUR_OTF_PAGE VALUE 1.
    DATA: DATA_SET_LINECOUNT TYPE P,
    DATA_SET_MAX_LINES TYPE P VALUE 100000,
    DATA_SET_VALID TYPE C VALUE ' ',
    DATA_SET_IS_OTF TYPE C VALUE ' ',
    DATA_SET_LENGTH(5) TYPE C,
    LINE_SPECIAL LIKE DATA_SET-DATA_LINE,
    NEED_LINE_SPECIAL TYPE C,
    DSN_TYPE(8) TYPE C.
    DATA: FCODE(4) TYPE C,
    DATE TYPE D,
    TIME TYPE T,
    RC(10) TYPE C,
    ERRMSG(100) TYPE C,
    PRINTJOB_CREATED(1) TYPE C,
    PRINTJOB_CLEARED(1) TYPE C,
    PRINTJOB_LIST(1) TYPE C,
    DISPLAY_MODE(1) TYPE C,
    LINE_MAX TYPE P VALUE '100000',
    NEW_SCREEN_300(1) TYPE C,
    MULTI_PRINT_300(1) TYPE C,
    PRINT_ALL_300(1) TYPE C,
    PRINT_COUNT_300 TYPE I,
    SHOW_USER_100 TYPE C VALUE ' ',
    ERROR_DISPLAY_LEVEL TYPE C VALUE '9',
    NEXT_ERROR_DISPLAY_LEVEL TYPE C,
    PREV_ERROR_DISPLAY_LEVEL TYPE C,
    START_300(5) TYPE C, END_300(5) TYPE C,
    SEP LIKE SY-VLINE,
    DEFAULT_PRI,
    TSP01_BUF LIKE TSP01,
    TSP01_CURLINE LIKE SY-STARO,
    TSP01_CURCOL LIKE SY-CUCOL,
    TSP01_CURROW LIKE SY-CUROW.
    DATA: BEGIN OF DATA_SET_LINE,
      DATA_LENGTH(5),
      PRECOL(1),
    DATA_LINE(1000),
    END OF DATA_SET_LINE.
    DATA: STATUS LIKE SY-SUBRC.
    DATA: WGF_MESSAGE(80).
    DATA: H_PATH(20) TYPE C.
    DATA: H_MASK(20) TYPE C VALUE ',.pdf ,.pdf. '.
    DATA: FILE_NAME(20).
    DATA: FILENAME LIKE RLGRAP-FILENAME.
    DATA: IMPORT(132).
    PARAMETERS: IDENT(5) TYPE C.
    PERFORM GET_OTF_TAB.
    LOOP AT OTF_PAGE.
       OTF_TAB-TLINE = OTF_PAGE.
       APPEND OTF_TAB.
    ENDLOOP.
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
    EXPORTING
      FORMAT_SRC = 'OTF'
      FORMAT_DST = 'PDF'
      DEVTYPE = 'ASCIIPRI'
      LEN_IN = LEN_IN
    IMPORTING
      LEN_OUT = LEN_OUT
    TABLES
      CONTENT_IN = OTF_TAB
      CONTENT_OUT = ITAB2
    EXCEPTIONS
      ERR_CONV_FAILED = 1
      OTHERS = 2.
    PERFORM GET_PATH USING 'PDF_FILE'.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
      FILENAME = FILENAME
      FILETYPE = 'BIN'
      BIN_FILESIZE = LEN_OUT
    TABLES
      DATA_TAB = ITAB2
    EXCEPTIONS
      FILE_OPEN_ERROR = 1
      FILE_WRITE_ERROR = 2
      INVALID_FILESIZE = 3
      INVALID_TABLE_WIDTH = 4
      INVALID_TYPE = 5
      NO_BATCH = 6
      UNKNOWN_ERROR = 7
      OTHERS = 8.
    *& Form GET_OTF_TAB
    FORM GET_OTF_TAB.
    DATA: PART(4) VALUE '0001',
    BEGIN OF MSG,
      A(40),
      B(40),
      C(40),
    END OF MSG.
    REFRESH DATA_SET.
    DATA_SET_LINECOUNT = 0.
    DATA_SET_IS_OTF = ' '.
    OTF_PAGES = 0.
    REFRESH OTF_PAGE_INDEX.
    CALL 'RSPOACSD'.
    SELECT * FROM TST05 WHERE DTHREAD = 'X'.
    CALL 'RSPOAOSD'
    ID 'ID' FIELD IDENT
    ID 'TYPE' FIELD TST05-DTYPE
    ID 'RECTYP' FIELD 'VYL----'
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    STATUS = SY-SUBRC.
    IF STATUS = 0.
      DSN_TYPE = TST05-DTYPE.
      IF DSN_TYPE(3) = 'OTF'.
        DATA_SET_IS_OTF = 'X'.
      ENDIF.
    ENDIF.
    IF STATUS <> 24. EXIT. ENDIF.
    ENDSELECT.
    DATA_SET_VALID = 'X'.
    DATA_SET_MAX_LINES = ( LINE_MAX * '1.1' ) + 100.
    DO.
    CLEAR: DATA_SET_LINE, DATA_SET_LENGTH.
    CALL 'RSPOARSD'
    ID 'BUFF' FIELD DATA_SET_LINE+5
    ID 'DATALEN' FIELD DATA_SET_LENGTH
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    STATUS = SY-SUBRC.
    IF STATUS = 36.
    WHILE STATUS = 36.
    CALL 'RSPOACSD'
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    ADD 1 TO PART.
    IF DATA_SET_IS_OTF = ' '.
    CALL 'RSPOAOSD'
    ID 'ID' FIELD IDENT
    ID 'TYPE' FIELD DSN_TYPE
    ID 'PART' FIELD PART
    ID 'RECTYP' FIELD 'VYL----'
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    ELSE.
    CALL 'RSPOAOSD'
    ID 'ID' FIELD IDENT
    ID 'PART' FIELD PART
    ID 'TYPE' FIELD DSN_TYPE
    ID 'RECTYP' FIELD 'VYL----'
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    ENDIF.
    IF SY-SUBRC NE 0. EXIT. ENDIF.
    CLEAR: DATA_SET_LINE, DATA_SET_LENGTH.
    CALL 'RSPOARSD'
    ID 'BUFF' FIELD DATA_SET_LINE+5
    ID 'DATALEN' FIELD DATA_SET_LENGTH
    ID 'RC' FIELD RC
    ID 'ERRMSG' FIELD ERRMSG.
    STATUS = SY-SUBRC.
    ENDWHILE.
    ENDIF.
    IF STATUS <> 0 AND STATUS <> 40. EXIT. ENDIF.
    DATA_SET = DATA_SET_LINE.
    IF NOT ( DATA_SET_LENGTH IS INITIAL ).
    DATA_SET-DATA_LENGTH = DATA_SET_LENGTH - 1.
    ENDIF.
    APPEND DATA_SET.
    ADD 1 TO DATA_SET_LINECOUNT.
    IF DATA_SET_IS_OTF = ' '.
    IF DATA_SET_LINECOUNT >= DATA_SET_MAX_LINES.
    CLEAR DATA_SET.
    APPEND DATA_SET.
    MOVE '----
    ' TO DATA_SET-DATA_LINE.
    APPEND DATA_SET.
    CLEAR DATA_SET.
    APPEND DATA_SET.
    WRITE: 'Abbruch nach'(029) TO MSG-A.
    WRITE: DATA_SET_MAX_LINES TO MSG-B.
    WRITE: 'Zeilen.'(030) TO MSG-C.
    CONDENSE MSG.
    DATA_SET-DATA_LINE = MSG.
    APPEND DATA_SET.
    EXIT.
    ENDIF.
    ELSE.
    MOVE DATA_SET_LINE-DATA_LINE TO OTF_PAGE.
    APPEND OTF_PAGE.
    IF OTF_PAGE(2) = 'EP'.
      ADD 1 TO OTF_PAGES.
      IF OTF_PAGES >= OTF_MAX_PAGES.
        MESSAGE S229(PO) WITH OTF_MAX_PAGES.
        EXIT.
      ENDIF.
    ELSEIF OTF_PAGE(2) = 'OP'.
      OTF_PAGE_INDEX-LINE_NUM = DATA_SET_LINECOUNT.
      APPEND OTF_PAGE_INDEX.
    ENDIF.
    ENDIF.
    ENDDO.
    IF STATUS <> 0 AND STATUS <> 12.
      CALL 'RSPOACSD'.
      MESSAGE E112(PO) WITH STATUS RC ERRMSG.
    ENDIF.
    CALL 'RSPOACSD'.
    STATUS = SY-SUBRC.
    IF STATUS <> 0.
      MESSAGE E112(PO) WITH STATUS RC ERRMSG.
    ENDIF.
    ENDFORM. " GET_OTF_TAB
    *& Form GET_PATH
    FORM GET_PATH USING P_FILENAME.
    CLEAR: H_PATH, FILE_NAME.
    FILE_NAME = P_FILENAME.
    CALL FUNCTION 'WS_QUERY'
    EXPORTING
    QUERY = 'CD' "// Current Directory
    IMPORTING
    RETURN = H_PATH.
    CONCATENATE FILE_NAME '.pdf' INTO FILE_NAME.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
      DEF_FILENAME = FILE_NAME
      DEF_PATH = H_PATH
      MASK = H_MASK
      MODE = 'O'
    IMPORTING
      FILENAME = FILENAME"dbname
    EXCEPTIONS
      INV_WINSYS = 1
      NO_BATCH = 2
      SELECTION_CANCEL = 3
      SELECTION_ERROR = 4
      OTHERS = 5.
    ENDFORM. " GET_PATH
    Regards
    Sudheer

  • When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    Please try with latest version of MS Word and Acrobat.
    Regards,
    Anoop

  • PDF - Dynamic Table

    Hi,
    I am facing one problem related to PDF-dynamic table generation. Suppose I have designed the master page and i have the company logo as header in all the pages and my body page has one table designed. I have choosen Flow Layout for the table but when the tables has many rows, it is extending to the next page but problem is that these rows are overlapping with the header of the next page(Company Logo). Is there any way we can keep the Master page header fix and the extra table rows from the first table will be displayed that only.
    Your sugestion is highly welcome.
    Regards
    Satya

    Hello,
    You can create multiple master pages with different layouts for 1st and following pages.
    Regards,
    Francois

  • How can I put a .pdf (or table) in iWeb that one sees on the web site on a web page without downloading?

    How can I put a pdf (not downloadable, but viewed on the website) or a table in iWeb?

    If it's a one page PDF file just drag it onto the webpage and resize to fit. If it's a multi page PDF file you can add it as in this demo page: Scrolling Text Box
    OT

  • How to correctly and automatically convert a pdf having tables with embedded figures to MS Word format?

    I'm a language translator. My source files are very often pdf's containing huge tables with hundreds of embedded figures as well as text. So far, I've been unable to find a way to automatically convert such a structure to MS Word format. When selecting the table, the figures do not copy. Figures can be selected and copied only one at a time. Tried Reader, tried Acrobat, tried third party software like ABBYY PDF Transformer+ to no avail. Is there a way to do it?

    Hi pielassss,
    Could you share a sample file with me at [email protected]  so that I can check at my end?
    What version of Acrobat are you uisng?
    Regards,
    Rave

  • PDF form table

    Hello,
    I have a PDF-based form and I have the following problem.
    I need to print a footer table on the last page.
    I am controlling the presence of the table thru formcalc.
    The problem is that the table lines are only shown if the table is on the first page. Otherwise it does not show any lines. Can anyone help me on this?
    Thank you,
    Nuno Silva

    Hello
    I am controlling the presence of the table thru formcalc. ===> please share your code, how can you get help on this if you have a code which doesn´t work and the people around can´t see it:))
    The problem is that the table lines are only shown if the table is on the first page. Otherwise it does not show any lines. ====> maybe you can describe the structure of your form, because this doesn´t help much.
    In fact I don´t get the problem: is that with table presence at all? presence on the right page? lines presence? lines data?
    I guess your problem is not a big issue, but you didn´t provide enough details, thats why you didn´t get any replies.
    Otto
    p.s.: how many master pages do you have? or how do you control the forms placing on pages on the tab paging?

  • Adding Tags in PDF for Tables and Figures

    Please let me know how to add tags for Table and Figure in the PDF and also about setting up attributes for that

    You can add tags to a PDF Document. If the PDF is untagged you can use the advanced, accessabilty, add tags to the document. If the PDF is already tagged or after you have run the add tags you can use the "touch up reading order" menu and then make the item you want to be a table a table etc....
    Be Well

  • Word 2003 to PDF conversion -- tables

    When converting MS Word 2003 documents to PDF, some of the lines in tables do not appear properly when viewed onscreen (lines disappear or vary in thickness). Which lines are affected varies by user. Any suggestions?

    Dear All
               I have one MS word file which have near about 2000 pages. In word file, the table of contents (TOC) are working on ctrl+mouse click. But when I convert this file
    in PDF then this TOC is not working properly. I have observe that initial pages near about to 800 are in working condition but other topic in TOC are not click able. Any one know the solution of this problem
    in pdf. If any have the solution then please let me know ASAP.
    Thanks
    Muhammad Waseem Alvi

  • PDF pagination works find in Reader 8, but failed in lower version 7.

    Hi, All
    Here's my situation
    One dynamic PDF form:
    Contents in subforms are flowed layout. And for every section (e.g. Chapter 1, Chapter 2 etc) in pdf, create "New Page" to make sure that they start their contents in seperate new pages, not following the previous flowed content.
    The pagination for Flowed content in subforms works ok.
    But the pagination for "New Page" only works in Reader 8 and failed in lower version 7.
    Any clues?
    Thanks
    Alan Ji

    Adobe Reader 9 can't save the old FDA forms. FDA must update their forms.

  • Pdf with table of contents from a Pages file

    I discovered in a pdf file sent to me that it has a table of contents in the sidebar where thumbnails, and annotations also reside.
    When I create a pdf from my pages document this is not available.
    In the table of contents sidebar are the words 'No Sections'. How do I create sections for every para styled as a heading so that they show in the table of contents sidebar of the pdf file.
    I have been using outline to navigate in the pages file but the pdf would be simpler for me to do under meeting conditions.
    PAM

    Your son was probably referring to *Adobe Acrobat Pro*. But I can't see how that would help with the sidebar automatically.
    In *Acrobat Pro* it would be a matter of selecting each head to make a bookmark from that and then resave the .pdf file with the bookmarks sidebar showing upon opening.
    You can also add and edit bookmarks in Preview.
    +Preview > Menu > Bookmarks > Add Bookmark/Edit Bookmarks…+
    I did a further experiment with a Pages document with bookmarks to see if that created the sidebar with bookmarks, but it didn't work.
    There are differences in the ways Preview and Acrobat Reader display .pdfs even with what seem to be straight forward settings. I can never depend on a uniform display.
    Particularly where PC users are involved.
    Peter
    btw When you viewed your Pages document with your TOC did you set the Preview sidebar to show "Table of Contents" in the little icons at the foot of the Preview sidebar.

  • How to retrieve PDF form table's data in workflow?

    I have employee table in PDF form?How I retrieve the data in workflow using XSD mapping?

    You need to use either the processFormSubmission operation of the LiveCycle Forms service or the exportData operation of the Data Integration service to get the xml out of the PDF.
    Then you can use xPath to get to the appropriate node in the xml.
    Jasmin

  • PDF and tables (10Dukes)

    Hi,
    I have big problem.I'm servlet that will be generating pdf document that contain large table ( with many colums and rows). It is important that the generated PDF will be printer friendly, with no data lost, and columns and rows not broken in the middle. If there is not enough room for all the columns in the printed page I want that the next page will print the columns that couldnt fit in the previous page. The same with rows.
    Please tell me, which library should I use, and how:
    iText ( but I think there is only manual column split)
    fop (http://marc.info/?l=fop-user&m=109395969429242&w=2)
    anything else?
    Is it possible?
    Please help

    I use iText and it works fine for me.
    For the rows, it's done automatically. See http://itext.ugent.be/library/com/lowagie/examples/objects/tables/AddBigTable.java
    Create your document as follows: Document document = new Document(PageSize.A4.rotate(), 2, 2, 2, 2); to fit the page size..
    For the columns, I split the table into many ones. Every single table deals with a predefined columns range.
    the number of columns per table depends on the the width of the cells you have to insert into your PDF document.

  • Error converting DOC to PDF, corrupt table

    Hello,
    Using XP, MS Word 2003, Adobe Acrobat 8 Pro.
    Trying to convert a 15MB doc to pdf.  After 14 minutes, I get a MS Word error, "This error message may be the result of a corrupt table in the current document.You can recover the contents..."  The steps for recovery involves "open & repair", which is an option that I can't find (maybe MS Word 2007?)
    If I take the original doc & compress the photos to reduce the file size to about 11MB, then the PDF is ok.  I can also split up the doc into two documents.  Each part converts ok, then I can combine them.  Both options works, but both are time consuming.  (So I'm not buying the "corrupt table" error.)
    I have other doc's that convert ok.  One is 29MB and converts in 2 minutes.  The difference that I can note is that the 15MB doc uses primary nothing but text boxes for the entire doc.  Text & photos are inserted into each text box.  A dozen of these are smaller than 11MB & will convert, but very slowly.  Over that size & I get the above error.
    I can't change Word Doc format. (customer's requirements)
    Any help or suggestions are appreciated!
    Thanks
    Mike
    (contract mfg in VT)

    There has been a change with AA9 that does the create PDF option a bit differently than before. I am not sure of the details, but if you are assuming the same process as I will describe you will at least have an idea of what is happening. In prior versions of Acrobat, there are basically 2 conversion processes. The right click in explorer to convert and opening the file in Acrobat both go back to the create PDF process in WORD, so let me just describe the WORD process. When you print to the Adobe PDF printer, then you are simply doing a conversion (or print) just like you would to paper. Excluding the printer metric issues with WORD (2007 turns these off by default), you should get a replica of the WORD file in appearance. Choices include down sampling the graphics and embedding the fonts, both of which are recommended. These are part of the printer properties.
    The end result of the print is effectively an electronic paper version of your original file. It is not recommended for editing (except for form fields and such), in just the same way it is preferred to not use whiteout on a typed paper version. The process of creating this print file is a two step process where a PS file is created (can be very memory intensive) and then the PS file is put through Distiller in the background to create the PDF (these require AcroTray to be active to do this automatically).
    PDF Maker (create PDF) adds several features to the file, but it is only available in selected applications like MS OFFICE. These features are added by including PDF Marks in the PS file created in the print process. You can include bookmarks, links, and tags for accessibility (tags tend to really bloat the file big time). The items to be included are in the preferences of PDF Maker in the application. It is also a good idea to use the Standard job settings as a minimum, but I typically recommend print or press options. I use a job settings file provided by a publisher that is optimize for journal publication.
    The fact that PDF Maker adds all the extra bits is likely why you are having problems. You can try turning all the added features off and then go back and add only the ones you need. That may help your situation. Keep in mind that graphics will be expanded (are not compressed) when sent to the PS file -- causing a huge file in some cases. The temporary storage is limited by your TEMP folder and not by the size of your hard disk and that is the route of the problem for large files.
    As I said, PDF Maker has apparently changed a bit for AA9, but the idea is likely similar.

  • HELP ME PLEASE !!! dynamic pdf with table grows each time it's saved and reopened??? HELP PLEASE !

    Hi, I hope someone can help me. I created a form (dynamic pdf) with Livecycle ES 8.2.
    This document has a table in which rows are added when the user clicks on a button.
    The document in design stage takes up no more than 1/2 an A4. Here are my two problems;
    1. When the document is opened in Reader (9.3) it is all formatted correctly accept the one row, in it's default state (which can be added to by clicking button) is now three rows????
    2. Whether the two extra rows are deleted or filled in or whether more rows are added and filled in, if the document is saved and opened again with reader it has grown to a full page (of empty default rows). If saved again, it grows to 4 pages and so on.
    Can somebody please help me. I can supply a copy of my file if necessary.
    I don't know if this makes a difference, but the document is protected with a password to open in Livecycle and it also has user rights assigned for the user to be able to save a copy on their local machine (not just allowed to fill out and print).
    My email is [email protected]
    Would appreciate any help that can be offered. My document is ready (accept for this issue) for me to use in my job.
    Regards
    Bradd

    Bradd,
    Please forward the form and I can take a look. If you want to forward a version of the form that is not password protected or send the password in a separate email, that is up to you.
    [email protected]
    Steve

Maybe you are looking for

  • Sender File Adapter - Not Running

    Hi, I have developed a very simple scenario which uses the File adapter within the sender communication channel. I have done this sort of thing before and it always worked as expected. All that should happen is the file is picked up via FTP and turne

  • Microsoft Exchange Health Manager worker process (15200) received restart request and will be stopped. Server 2013

    Hi everyone, Anyone seen this before? The Health Manager seems te stop and restart rapidly. Microsoft Exchange Health Manager worker process (15200) received restart request and will be stopped. Restart reason: Unknown.  Error message:  System.Unauth

  • Aperture crashes in OS 10.9

    Im at Aperture 3.5 but it won't open in OSX 10.9

  • Flash on Mac question

    when i'm in flash on my Mac at work, i cant scroll through the Layers of the Timeline, i have to grab and drag.. on my PC at home, i can use the scroll wheel to scroll through the Layers of the Timeline... does that make sense? I'm not very knowledge

  • N73 New SW V 4.0750.31.2.1 Available!

    it is being reported to be available now, specially for APAC phones... it is faster and demand paging is now included...