Using Workbench for Batch Editing a PDF

I want to take information entered in a form and place it into certain locations in a PDF. Is workbench a good solution for a problem like this? Or is there another way that would be better? Thank you.

you may want to clarify the question a bit...
but it is possible to "move" data from one section of a form to 'another'.... either via Javascript (client-side) or Xpath in Workbench (server-side)

Similar Messages

  • Using Actions in batch editing??

    Is there any way to use Actions in Batch Editing in Photoshop Elements 10 or any Elements??  Thanks!

    No, this is one of the lines adobe has drawn to differentiate between PS and PSE. In PSE you can only run an action on one file at a time, not on a folder as in PS. It might be possible with an add-on like elements+, which claims to allow scripting for batch processing, but I've never tried that. Perhaps someone else will know for sure.

  • How to Use BAPI_OUTB_DELIVERY_CHANGE for Batch Split

    Hi Experts, I have the follow delivery:
    Item        Material   Deliv.Qty    Un
    10     739911     2     PQT
    And I want to obtain this:
    Item        Material   Deliv.Qty    Un                            Batch
    10     739911     0     PQT
    900001     739911     1     PQT          ZZ00060
    900002     739911     1     PQT          ZZ00061
    But, after using the Bapi I obtained this:
    Item        Material   Deliv.Qty    Un                            Batch
    10     739911     1,372     PQT
    900001     739911     0,314     PQT          ZZ00060
    900002     739911     0,314     PQT          ZZ00061
    So as you can see the problem is with the "Deliv.Qty". I expected:
    Item        Deliv.Qty
    10            0
    900001     1     
    900002     1     
    But I obtained:
    Item        Deliv.Qty
    10     1,372
    900001     0,314
    900002     0,314
    The parameters that I am using in the Bapi are:
    HEADER_DATA                                   
    DELIV_NUMB = 801174646
    HEADER_CONTROL                                
    DELIV_NUMB = 801174646
    DELIVERY = 801174646
    TECHN_CONTROL
    UPD_IND = U
    ITEM_DATA (three records):   
    DELIV_NUMB = 801174646
    DELIV_ITEM = 000010  
    MATERIAL = 739911  
    FACT_UNIT_NOM = 1   
    FACT_UNIT_DENOM = 1   
    DELIV_NUMB = 801174646  
    DELIV_ITEM = 900001     
    MATERIAL = 739911     
    BATCH = ZZ00060    
    HIERARITEM = 000010     
    USEHIERITM = 1          
    DLV_QTY = 1
    DLV_QTY_IMUNIT = 1
    FACT_UNIT_NOM = 1      
    FACT_UNIT_DENOM = 1      
    DELIV_NUMB = 801174646  
    DELIV_ITEM = 900002     
    MATERIAL = 739911     
    BATCH = ZZ00061    
    HIERARITEM = 000010     
    USEHIERITM = 1          
    DLV_QTY = 1
    DLV_QTY_IMUNIT = 1
    FACT_UNIT_NOM = 1      
    FACT_UNIT_DENOM = 1
    ITEM_CONTROL (three records):
    DELIV_NUMB = 801174646
    DELIV_ITEM = 000010  
    CHG_DELQTY = X
    DELIV_NUMB = 801174646
    DELIV_ITEM = 900001  
    CHG_DELQTY = X
    DELIV_NUMB = 801174646
    DELIV_ITEM = 900002  
    CHG_DELQTY = X
    So I am missing something but I don't know what.
    Can any one help me with this please?
    PD: I have looked the following forums in order to use the Bapi:
    How to Use BAPI_OUTB_DELIVERY_CHANGE for Batch Split
    batch split using BAPI_OUTB_DELIVERY_CHANGE
    Re: Help in BAPI_OUTB_DELIVERY_CHANGE(batch-split)
    BAPI_OUTB_DELIVERY_CHANGE - Batch Splits don't work
    Help for BAPI_OUTB_DELIVERY_CHANGE

    Hey,
    My code is for the inbound delivery but it should work the same.
    Give this a try.
    REPORT  z_delivery_batch_split.
    DATA:header_data  LIKE  bapiibdlvhdrchg,
    header_control  LIKE  bapiibdlvhdrctrlchg,
    delivery  LIKE  bapiibdlvhdrchg-deliv_numb,
    ls_return LIKE bapiret2,
    item_data  TYPE TABLE OF  bapiibdlvitemchg,
    item_control  TYPE TABLE OF bapiibdlvitemctrlchg,
    ls_item_data  LIKE  bapiibdlvitemchg,
    ls_item_control LIKE  bapiibdlvitemctrlchg,
    return TYPE TABLE OF bapiret2 WITH NON-UNIQUE KEY type.
    header_data-deliv_numb = '1800005005'.
    header_control-deliv_numb = '1800005005'.
    delivery = '1800005005'.
    ls_item_data-deliv_numb = '1800005005'.
    ls_item_data-deliv_item = '900001'.
    ls_item_data-material = '000000000020067722'.
    PERFORM create_batch CHANGING ls_item_data-batch.
    ls_item_data-hieraritem = '000010'.
    ls_item_data-usehieritm = '1'.
    ls_item_data-dlv_qty = 80.
    ls_item_data-dlv_qty_imunit = 80.
    ls_item_data-fact_unit_nom = '1'.
    ls_item_data-fact_unit_denom = '1'.
    ls_item_data-sales_unit = 'EA'.
    ls_item_data-base_uom = 'EA'.
    APPEND ls_item_data TO item_data.
    ls_item_data-deliv_numb = '1800005005'.
    ls_item_data-deliv_item = '900002'.
    ls_item_data-material = '000000000020067722'.
    PERFORM create_batch CHANGING ls_item_data-batch.
    ls_item_data-hieraritem = '000010'.
    ls_item_data-usehieritm = '1'.
    ls_item_data-dlv_qty = 60.
    ls_item_data-dlv_qty_imunit = 60.
    ls_item_data-fact_unit_nom = '1'.
    ls_item_data-fact_unit_denom = '1'.
    ls_item_data-sales_unit = 'EA'.
    ls_item_data-base_uom = 'EA'.
    APPEND ls_item_data TO item_data.
    ls_item_control-deliv_numb = '1800005005'.
    ls_item_control-deliv_item = '900001'.
    ls_item_control-chg_delqty = 'X'.
    APPEND ls_item_control TO item_control.
    ls_item_control-deliv_numb = '1800005005'.
    ls_item_control-deliv_item = '900002'.
    ls_item_control-chg_delqty = 'X'.
    APPEND ls_item_control TO item_control.
    break cgavin.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
       EXPORTING
         header_data          = header_data
         header_control       = header_control
         delivery             = delivery
    *   TECHN_CONTROL        = TECHN_CONTROL
       TABLES
    *   HEADER_PARTNER       = HEADER_PARTNER
    *   HEADER_PARTNER_ADDR  = HEADER_PARTNER_ADDR
    *   HEADER_DEADLINES     = HEADER_DEADLINES
         item_data            = item_data
         item_control         = item_control
    *   ITEM_SERIAL_NO       = ITEM_SERIAL_NO
    *   EXTENSION1           = EXTENSION1
    *   EXTENSION2           = EXTENSION2
         return               = return
    *   TOKENREFERENCE       = TOKENREFERENCE
    *   HANDLING_UNIT_HEADER = HANDLING_UNIT_HEADER
    *   HANDLING_UNIT_ITEM   = HANDLING_UNIT_ITEM
    *   PARTIAL_GR_OBJECTS   =          PARTIAL_GR_OBJECTS
    READ TABLE return
    INTO ls_return
    WITH TABLE KEY type = 'E'.
    IF sy-subrc = 0.
       MESSAGE ID ls_return-id TYPE ls_return-type NUMBER ls_return-number WITH ls_return-message_v1 ls_return-message_v2
       ls_return-message_v3 ls_return-message_v4.
    ENDIF.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait          = 'X'.
    break cgavin.
    *&      Form  CREATE_BATCH
    *       text
    *      <--P_LS_ITEM_DATA_BATCH  text
    FORM create_batch  CHANGING p_ls_item_data_batch.
       DATA: ls_bncom TYPE bncom.
       ls_bncom-matnr = ls_item_data-material.
       ls_bncom-werks = 'C333'.
       ls_bncom-lgort = '3000'.
       SELECT SINGLE mtart
         FROM mara
         INTO ls_bncom-mtart
         WHERE matnr = ls_bncom-matnr.
       CALL FUNCTION 'VB_NEXT_BATCH_NUMBER'
         EXPORTING
           matnr                          = ls_bncom-matnr
           werks                          = ls_bncom-werks
           check_batch                    = 'X'
           check_material                 = ''
           message_when_auto              = ' '
           x_bncom                        = ls_bncom
           lock_batch                     = ' '
         IMPORTING
           new_charg                      = p_ls_item_data_batch
         EXCEPTIONS
           no_material                    = 1
           no_plant                       = 2
           material_not_found             = 3
           plant_not_found                = 4
           no_batch_handling              = 5
           batch_exist                    = 6
           no_number                      = 7
           illegal_batch_number           = 8
           interval_not_found             = 9
           object_not_found               = 10
           interval_overflow              = 11
           error_automatic_batch_number   = 12
           cancelled                      = 13
           automatic_batch_num_not_active = 14
           OTHERS                         = 15.
       IF sy-subrc = 0.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             wait = 'X'.
       ENDIF.
    ENDFORM.                    " CREATE_BATCH

  • Thinking to buy a new 15inch macbook pro retina display. Aim to use it for video editing and compositing... Is ıt worth for it?

    Hi... I am a freelance filmmaker. Now I have 2008 model mac pro and I am thinking to buy a new macbook pro 15 inch retina display. Do you think its worth for it? I aim to use the macbook mainly for video editing, video compositing (after effects) and photo editing. My current old mac pro has 12 GB and the graphics card is ATI Radeon HD 2600 XT 256 MB (Yes I still use it). My main question is, do you think its better to move to macbook pro or upgrading the old one? Making it 32 GB of RAM and buy a new NVIDIA cuda capable graphic card? I dont have enough budget to make it together... Want to hear your suggestions...

    I'm not sure, I've seen pro animators use MBPs but usually with a large monitor. Especially doing video editing, compositing and editing it might make more sense to upgrade the Mac Pro to an SSD as the boot drive. What kind of CPU setup is in your Pro?
    Check these out:
    mac pro SSD upgrades?
    SSD as system disk while users folder + data on HDD
    Early 2008 8-Core Mac Pro GPU Upgrades
    I deal exclusively with OWC. I'd call them and walk them through your system and see what they say.
    What you do takes a lot of CPU, RAM, graphics and boot disk power.
    I've upgraded my two computers to SSDs and the first thing I noticed was that Photoshop CS6 opens in 7 seconds vrs. 50 seconds when the application was on a HDD.

  • What is the best tablet for using photoshop for professional editing??

    Okay, I know Apple and their ipads are popular.  But popularity is not what I'm looking for.  I'm looking for compatibility, between photoshop and the tablet itself.  I want to get over using the mouse for everything.  I'm not quite sure if apple is the best choice.  Or is it? 
    I'm very new to all this tablet stuff. lol  Please advise
    Oh my goodness.  Is the Ipad not advanced enough for a full blown photoshop program?! I geuss I overestimated them. Goodness.  It really is just a on the go kind of thing?....  Again. I'm new to this whole tablet thing.  So if you guys know anything. Please advise lol.  I'm a complete Newbie.

    Windiv, 'Tablet' - the generic term is used differently for each context. iPad is a generic tablet. While for Photoshop editing, you need a tablet such as Wacom Intuos - they're 'design tablets' in specific. They have 'full-blown' capabilities with Photoshop and majority of other Professional Graphic softwares.
    Visit this link for more information: http://www.wacom.com/en/products

  • When using IPhoto for basic editing, it runs really slow.

    My wife and I have a photography business and we use Apple IPhoto 09 for basic editing. It takes forever to edit. In between each photo the spinning wheel spins and spins and spins, probably for around 1 to 2 minutes or more. We only have aprox 11,000 photos in 43 event folders. They are jpeg files and are around 3 to 5kb per photo. We are using an IMac w/ 2 gigs of ram and 300gigs of storage, we have over a 100 gigs of free storage space. Ever other program we run seems to be fine. No problems w/ CS5 or Lightroom just IPhoto. Anyone have any ideas would be appreciated.
    Thanks, Paul

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Using BAPI_OUTB_DELIVERY_CONFIRM_DEC for batch split?

    Dear All,
    I have an existing DO in SAP with one line item.
    I would like to use BAPI_OUTB_DELIVERY_CONFIRM_DEC to update the this line item with Batch Split.
    For example, the existing line item has a material M001 with quantity 5. I need to update the DO to split this line into two batchs - qty 3 from Batch A and qty 2 from Batch B.
    In the BAPI's ITEM_DATA - I filled 3 lines:
    Line 1 - DO Number 1014---, Item number 00001, Material Number M001, qty 0
    Line 2 - DO Number 1014---, Item number 90001, Material Number M001, qty 3, HIERAR 00001, USEHIERITM 1, Batch Batch A
    Line 3 - DO Number 1014---, Item number 90002, Material Number M001, qty 2, HIERAR 00001, USEHIERITM 1, Batch Batch B
    I also updated the ITEM_CONTROL with Deliv_NUMB ---, DELIV_ITEM 00001, CHG_DELQTY X, GROSS_WT_FLG X.
    I get no errors after calling this BAPI and the RETURN table is empty, yet, the document was not changed!
    I did a bapi call via remote and there is a commit work after the bapi call.
    Best Regards,
    Junwen
    Message was edited by: Junwen Huang

    Hi Junwen,
    Did you call the BAPI_TRANSACTION_COMMIT afterwards?
    Before this the data is not saved. After that it is saved.
    Regards,
    Rob.

  • I just bought the new 2014 Mac Mini 2.6 8Gig for $699 at the Apple Store Online. I want to use it for light editing in iMovie making video's for YouTube, I couldn't afford the higher priced models. Is this going to work for me? I hope so..

    Will this do basic video editing for YouTube Video's in iMovie, I hope so.  It's all I could afford.
    Just under $800 with tax and Applecare.
    It's stock 2.6 8gigs 1 terabyte hard drive.
    I have two monitors DVI that I plan to hook to it.
    I know it's weak but will it get me going without too much hardship.
    I want to grow into the more high priced computers and Final Cut Pro later on.
    I know I will need a bigger computer then.
    Thanks

    There are many people using the basic (i5) 2012 MacMini and even older ones to edit complex films in FCP X so you should have no problems.
    I have been using FCP 7 and FCP X since they came out on my 2008 iMac Core 2 Duo and am thinking of getting the same model as you rather than pay the astronomic price for a new 27" iMac.
    The performance won't be quite as fast but it will be at least 4 times faster at rendering than my old iMac.

  • I need to get away from iphoto.   I use pixelmator for editing almost exclusively.  I have a Sony disc hx200v camera and a Kodak.   I will need to know if my cameras (on mac) will be seamlessly supported and how to get all my existing photos safely to lig

    I have several questions.   iPhoto does not meet my needs.    I would use lightroom mainly for organization and downloading photos from my camera cards.   My cameras are Sony disc-hx200v and a little Kodak  I will need to know if they are fine with light room.  Also I use pixelmator for photo editing and likely will use iskysoft dvd maker for mac to create my dvds once edited.      I am desperate to find a way to make my work flow work.   i.e.   I need to get photos somewhere on my mac,  in this case it would be lightroom then I need to edit them in lightroom and pixelmator,  then be able to get that  album/slideshow/folder whatever you call it Into the dvd maker to voiceover and finish the project.      It looks like aperture would have been more to my taste but they are
    also taking that away.   Yeah!  Go Apple.   About all I will have left of use is an operating system and mail.     Will appreciate any help.  I am 73 and doing dvd's for Amazon so I really can't afford any more programs that are snatched away and learning curves that change every 6 months. 

    Are you shooting in raw or jpeg?
    I’m not sure there is raw support for your Sony model and you don’t say which Kodak you have. But for jpegs Lightroom will normally work.
    For your existing photos it would usually be necessary to export versions to the desktop or create new folders in Finder. Those duplicates will contain the editing adjustments you have already made and can be imported into Lightroom using “Add” in the import dialog.
    I would suggest you download Lightroom and use it free for 30 days. You can then test it to ensure it meets your needs. You can download from this link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5856

  • Using an External Hard Drive for iMovie Editing and Burning to DVD

    Between iPhoto, iTunes and other applications I am rapidly running out of hard drive space on my 2003 iMac. Because of this, I recently purchased a Lacie 250 GB Firewire external hard drive and was hoping to use it for iMovie editing and buring of DVDs, because of the large amount of disk drive space video eats up. Is it it possible to "load" iMovie and iDVD to the external drive and edit/burn videos on that drive? If not, is there some other way to use that external drive in this process? Thanks in advance for any assistance that can be provided.

    Scooper
    see my reply to Trollus, just posted:
    That's how I do all my stuff now - via external lacie 'brick' drive. The only trick is when you begin your iMovie project, hit save immediately after creating the new project, and save the project file in an appropriately named folder on the external hard drive (don't call it 'Movies' as it'll be confused with your Powerbook's movies folder). Then as you import all your clips from your movie camera, they will be written to the external drive, rather than you G4's drive. Very handy.
    I do all my iMovie and iDVD stuff via the external Lacie drive - the FireWire 400 interface is quick enough (ie never had skipped clips, etc). I also save all iDVD finished projects as disc images on the external drive and burn DVDs from those at slow speed via Disc Utility. No coasters...:-)
    Greetings from Canberra
    Dave
    iBook G4   Mac OS X (10.4.8)  

  • Using Distiller for .dwg to PDF conversion

    Hi all,
    I am bit confused about using distiller for converting .dwg to PDF conversion. I need a server application which takes a .dwg file as an input and depending on the file attributes, converts it into a suitable PDF file (A4, A3, etc. depending on the .dwg file). Is using distiller a good idea or I should be looking into other tools?? Can Livecycle PDF generator handle such a thing??Kindly help me in this regard..

    Distiller converts PostScript to PDF, nothing else. Distiller Server
    is technically identical.
    So to do this with Distiller you would
    (a) need Distiller Server and
    (b) need to make your own process to convert DWG to PostScript,
    perhaps by automating AutoCAD.
    LiveCycle PDF Generator, however, includes a package of conversion
    tools for a list of specific file types. I don't know if DWG files are
    in the list - there is a LiveCycle PDF Generator forum, so I recommend
    trying there.
    Aandi Inston

  • Using Final Cut Express for video editing without attaching external device

    Hello,
    I am a newbie to Final Cut Express as well as Mac's in general. I am wanting to use Final Cut Express for video editing of files, but without an attached camera. Is there any way to have Final Cut Express startup without having it prompt for an external A/V device? I just want to do some basic editing and use the chroma key feature. Can anyone help?
    Greatly Appreciated,
    Knight2000
    iMAC   Mac OS X (10.4.9)  

    Hi Zak,
    Unfortunately, I've tried that and I get into an issue that was addressed in this posting: http://discussions.apple.com/thread.jspa?threadID=836595&tstart=120 where FCE will show the splash screen and then the program doesn't start. I then have to delete FCE preferences and then I will get the Easy Setup dialog box prompt me again for choosing the external device.
    I am looking for a way to use FCE for video editing of files that I already have on my computer that I created using iClone software and is in .avi, or .mp4 format. I get FCE to work one time without the external device actually being attached, but then when restarting the program I get the dialog box asking for the external device and if it's not there, the program just closes, and to get it to work again, I have to delete the preference files and go through the process all over again which is time consuming especially when this is at work. If FCE is not the right program, can anyone suggest a good video editing program that doesn't require an external device and is as good or better than FCE?
    Thanks again for your help and support,
    Knight2000
    iMAC   Mac OS X (10.4.9)  

  • Batch Conversion of PDF to Postscript

    I've been trying write a script for Batch conversion of PDF to PS files, using "silent" printing. I'm apparently missing something, because acrobat keeps crashing after executing the script (and the .ps files are not being created). Its also still prompting me for a filename. Not really sure of the syntax for keeping the same filename? I'm new to java script, so I'm sure its something I have wrong. My code is below, if anyone can help me out. I'm using Acrobat 7.0.9
    this.print ({bUI: false,bSilent: true,bShrinktoFit: true,});
    var pp = this.getPrintParams();
    pp.interactive = pp.constants.interactionLevel.automatic;
    pp.printername = "Xerox Docuprint 92C NPS PS2 C1";
    pp.filename = "c:\temp\$filename$.ps";
    this.print(pp);
    Thanks

    Why are you calling the print method twice?
    Your syntax in the first call to print is in error. You have a comma after bShrinkToFit: true which is telling the JS interpreter to expect another argument.
    Use this for filename (not the capital N in filename ... use proper case for property names):
    pp.fileName = "/c/temp/" + this.documentFileName + ".ps";
    Also, when printing to PostScript you shouldn't specify a printer name. Use this (again, note the proper case for properties):
    pp.printerName = "";
    It says exactly this in the documentation for the fileName property of the PrintParams object. I suggest you read the documentation relating to the methods you're trying to use ... always a good place to find answers.
    > When printerName is an empty string and fileName is specified, the current document is saved as a PostScript file.
    Although it may not consider C:\temp a "safe path" (I can't remember off the top of my head). You'll want to read the documentation regarding JavaScript "safe paths". If it is still prompting you for a filename it is most likely ignoring your path due to security restrictions.

  • Creating MetaData using workbench

    Hi all,
    I'm trying to create metadata for some of my files, using the workbench,
    without success. When I followed the instructions for the sample classes,
    I can load the classes and manipulate them.
    However, when I try to do the same with my classes, I can see one of two
    things:
    1. When choosing to create a class level metadata file, I can choose the
    class file from the explorer like window, but the class name does not
    get placed on the 'class name to add' edit box in the 'Choose classes'
    dialog.
    2. When trying to mount a jdo file, I get an exception (SAXException)
    and a message that states that a class (the first listed in the file)
    cannot be instantiated.
    the workbench is configured with class paths that include the correct path,
    i.e. my classes are in <classes>\company\product\model\beans and this path
    is listed in the classpath config dialog. The workbench was started in
    <classes>. The classes are of course compiled. the jdk is on the path
    (JDK 5)
    When using ant to perform the mapping (that I want to use workbench for)
    it all works well.
    What gives? What am I doing wrong and how can I get this to work?
    Bonny
    What am I missing

    Hi all,
    I'm trying to create metadata for some of my files,
    using the workbench,
    without success. When I followed the instructions for
    the sample classes,
    I can load the classes and manipulate them.
    However, when I try to do the same with my classes, I
    can see one of two
    things:
    1. When choosing to create a class level metadata
    file, I can choose the
    class file from the explorer like window, but the
    the class name does not
    get placed on the 'class name to add' edit box in
    in the 'Choose classes'
    dialog.
    2. When trying to mount a jdo file, I get an
    exception (SAXException)
    and a message that states that a class (the first
    rst listed in the file)
    cannot be instantiated.
    the workbench is configured with class paths that
    include the correct path,
    i.e. my classes are in
    <classes>\company\product\model\beans and this path
    is listed in the classpath config dialog. The
    workbench was started in
    <classes>. The classes are of course compiled. the
    jdk is on the path
    (JDK 5)
    When using ant to perform the mapping (that I want to
    use workbench for)
    it all works well.
    What gives? What am I doing wrong and how can I get
    this to work?
    Bonny
    What am I missing
    Ok, so I've found in another post that you need to explicitly specify the path to the compiled classes in the classpath arg when starting the kodo workbench. Previously however, I had only specified the path to the root of my project (the directory with bin & src as children) as the value of the "directory" argument. I'm assuming that the previous src & bin directories that were showing up (they still show now ...) are because of this setting. Although I can successfully choose a class to create metadata for, this still doesn't seem like things are configured correctly. More insight would be helpful!
    Thanks,
    P$

  • To buy or not to buy an entry level 13in MBP? Have a 30in display I would like to connect it to for photo editing and a little video. Any advice?

    In the last year the logic board in both my 17in MBP (5yrs old) and Mac Pro (4yrs old) have died.  The local techies have advised due to cost and age that replacing them would not be worth it in the long run.
    I am thinking to buy the most basic MBP and connecting it to my 30in cinema display would give me the best of both worlds - a desktop option when at home and a laptop for travelling.  Is this a viable option?  I would be using it for photo editing (photoshop) mainly and a little video editing with Final Cut Pro when connected to the cinema display and a little light internet usage, emails and such when on the go. 
    My other question is, do all MBP come with airport/wireless capabilities as standard?  (I had to purchase airport separately when I bought the other computers.
    Thanks in advance

    The 13" MBP is c**p, it's a consumer MacBook quality in a silver case with a "Pro" sticker, comes with poor integrated graphics that overheat when it even looks at a web video, all shiny screens poor for video. Scores a mere 11 on Cinebench.
    Like Sig said, 15" 2.0 (scores 18) or better, 2.2 (scores a decent 30) or better preferred, it has the hefty video card you need to power the external monitor.
    also you get a anti-glare option, excellent for avoiding glare and reflections in portable uses.
    also you may need the quad core i7 for processing video faster, dual cores are toast.
    17" high res has true 1920 x 1080 (1080i) with it's 1920 x 1200 pixel screen, I've got one. Sweet.
    Sad to hear you have been having such a bad run with Mac's, it used to be they lasted 5-7 years or longer easy.

Maybe you are looking for

  • How to get the focus of particular UI Element

    Hi All, How to get the focus of particular UI Element in webdynpro Page, I have a page where i am creating a ALV, I want to get that keyboard focus is on that element is there or not? Can anyone please give some update? Best regards, Rohit

  • Forward Error Correction

    I'm trying to find a way to implement Forward Error Correction (FEC) in Java, and if possible, find a code that someone has wirtten b4. Can any1 plz help me? I need this FEC in a one way communication.

  • I updated to mountain lion and now mail cannot connect to my server

    I updated to mountain lion and now mail cannot connect to my server.  It says check your user name and password are correct.  Well they are, and were.  Nothing has changed except the mac OS.  Has anyone else suffered this and knows a way around it? 

  • SAP B1Go-Global Problem

    Dear all ,             when  go-global user save document  in excel then file was saved go-global server it not saved in user PC. who to save it user PC . Please give me the solution. Thanks Arabinda

  • Download pop-up

    Hi, I'm creating a servlet and creating an html page within it. In the html page, i'm providing a link to a pdf file. Currently, the pdf file opens on the user's browser window, where he/she can save it. I wish to implement it in a way that when the