[Libreoffice] Save diagram created in Calc as image

Hello guys,
is there any quick way to export a diagram I created in Calc as an image?
I tried to insert it into GIMP but I get the information that there is nothing to paste after I copied it via ctrl+c.
Of course I could take a screenshot but with the bunch of diagrams I have to export this is no real solution.
Regards
Last edited by orschiro (2011-02-25 14:50:48)

Save the spreadsheet in html format: 'File > Save As...'  Along with the spreadsheet saved as, say, 'spreadsheet_x.html', there will be a bunch of files saved as 'spreadsheet_x_html_NNNNddd.jpg.
The jpg files are the charts.
Or you can open the html file in Firefox, right-click on a chart and use 'Copy Image'.
Last edited by thisoldman (2011-02-25 15:55:28)

Similar Messages

  • Unable to create an encrypted disk image in Lion

    disk utility gives the error Unable to create "Volume.dmg." (error - 60008) when creating an encrypted disk image. I am using the following steps:
        1.    Open disk utility
        2.    Select the disk (internal or external) to create the image on
        3.    Select File>New>Blank Disk Image…
        4.    Save As: 'Volume'
        5.    Name: Volume
        6.    Size: 50GB
        7.    Format: Mac OS Extended (Journaled)
        8.    Encryption: 128-bit AES encryption
        9.    Image Format: read/write disk image
        10.    Click the Create button
        11.    Password dialog appears
        12.    When I enter a password the dialog closes after entering only a few characters i.e. before I've finished typing, and the following error message displays:
    Unable to create "Volume.dmg." (error - 60008)
    I have previously, successfully, created encrypted disk images in Snow Leopard, and I don't know why I can't in Lion
    Does anyone have any ideas?

    Thanks for this Thomas.
    I've tried naming the image differently, but still received the error, I did however try different permutations for the password.
    The error seems to happen if I use a purely numerical password string and occurs on input of the 10th numerical character, if I start with numerical character but use an alpha before the 9th number I can continue and create a password, and I can create a password  if I start with an alpha and switch to numerals after the first alpha character, purely alphabetical passwords are fine too.
    It seems that Lion doesn't like purely numerical passwords greater than 9 characters, whereas Snow Leopard wasn't so fussy. Seems it's a bit of a bug.
    Thanks for your help

  • Unable to create an encrypted disk image with Disk Utility

    Hi:
    With our upgrade to Lion a few weeks ago, we're now unable to create an encrypted disk image of any type using Disk Utility any more. This problem occurs on 3 different machines, and is reproducible whether one is using an internal HD or an external FW HD. We can successfully create nonencrypted disk images.
    This is a duplicate post with all the details here: https://discussions.apple.com/message/18469359#18469359
    We haven't had any luck with a solution trying various permissions fixes as helpfully suggested by other readers in response to the error message # (-60008 error), so I'm hoping that someone else has run across a solution from the encrypted disk image perspective and that this tag line will generate some help.
    Thank you!

    Save As: 01 (on Desktop)
    Name: 01
    Size: 100 MB
    Format: Mac OS Encrypted (Journaled)
    Encryption: 256-bit AES
    Partitions: Single partition- Apple Partition Map
    Image Format: read/write disk image
    At the password window that pops up I enter: 1234567890
    This says password strength is "Weak"
    All works fine
    Then I repeated this using:
    Save As: 02 (on Desktop)
    Name: 02
    Size: 100 MB
    Format: Mac OS Encypted (Journaled)
    Encryption: 256-bit AES
    Partitions: Single partition- Apple Partition Map
    Image Format: read/write disk image
    At the password window that pops up I enter: 1234567890 and when I start to enter the next "1" I get the "Unable to create "02.dmg." (error -60008)
    OS 10.7.4
    Disk Utility Version 12.1.1 (353)

  • Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer,  any ideas.

    Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer, and all resources on computer,  any ideas??

    Hi
    And
    • free space on Start-Up hard disk ? How Much ?
    • Brand and type of DVD used
    • Burn Speed ?
    • Did You try to first do a "Save as a DiskImage" ? If so - Did it work ?
    Yours Bengt W

  • Create a single tall image from a multi-page pdf file

    I would like to take a multi-pake pdf file, and have all of the pages "appended" from top to bottom edge to create a single tall image. I am a teacher, and I currently do this by hand, I am then able to annotate the entire page and croll down an entire document inside of Photoshop.
    Here is an example: I have a pdf with 4 pages. Currently I open the pdf in PS, I end up with 4 images; I adjust the vertical canvas size of one of the images to be 4 times it's original size, then one-by-one I copy the contents of each image to that new tall image and move that layer vertically below the previous one. So the result is say a 1024x6400 pixel image.
    I would like to be able to just open the pdf with a script and get this all done in one step.
    Any help is appreciated.

    Thanks again c.pfaffenbichler. I had most of it worked out in my own way before you got back to me, but I wasn't able to get the final naming part down.
    Like I said, I am a math teacher, and I use photoshop as my whiteboard, and draw with a graphics tablet. So I can print to pdf from any program, now I can import any document into photoshop basically to write on it. So this is wonderful. I have never seen another teacher use PS as a whiteboard in class in this way, so I am most likely the only person in my county or state that would need such a script.
    After I got everything worked out, I added some things to the script. Some of my colleagues will use my files as a whiteboard if I send it to them as a tall single page pdf that they can scroll down and write over; so they don't need photoshop. So I have scripted in the saving of that pdf as well. Here are my changes; most of what I changed is in the section commented MY WORK.
    // opens all pages of pdfs cropped to trimbox with set settings and arranges them;
    // 2011, use it at your own risk;
    #target photoshop
    // dialog for pdf-selection;
    var theFiles = app.openDialog();
    if (theFiles) {
         for (var m = 0; m < theFiles.length; m++) {
              var theFile = theFiles[m];
              if (theFile.name.slice(-4) == ".pdf") {
                   var thePdf = openMultipagePDF(theFile);
              else {alert (theFile.name + " is not a pdf-file")}
    ////// function to open all pages of a pdf //////
    ////// influenced by PlaceMultipagePDF.jsx //////
    function openMultipagePDF(myPDFFile) {
    // pdf open options;
         var pdfOpenOpts = new PDFOpenOptions;
         pdfOpenOpts.antiAlias = true;
         pdfOpenOpts.bitsPerChannel = BitsPerChannelType.EIGHT;
         pdfOpenOpts.cropPage = CropToType.MEDIABOX;
         pdfOpenOpts.mode = OpenDocumentMode.RGB;
         pdfOpenOpts.resolution = 247.8;
         pdfOpenOpts.suppressWarnings = true;
         pdfOpenOpts.usePageNumber  = true;
    // change pref;
         var originalRulerUnits = app.preferences.rulerUnits;
         app.preferences.rulerUnits = Units.PIXELS;
    // suppress dialogs;
         var theDialogSettings = app.displayDialogs;
         app.displayDialogs = DialogModes.NO;
    // iterate through pages until fail;
              var myCounter = 1;
              var myBreak = false;
              var theWidth = 0;
              var theHeight = 0;
              while(myBreak == false){
                   pdfOpenOpts.page = myCounter;
                   try {
                        var thePdf = app.open(myPDFFile, pdfOpenOpts);
                        if (thePdf.width > theWidth) {theWidth = thePdf.width};
                        var offset = thePdf.height;
                        thePdf.layers[0].name = myPDFFile.name+"_"+myCounter;
                        if (myCounter == 1) {
                             var theFile = thePdf
                        else {
                             thePdf.layers[0].duplicate(theFile, ElementPlacement.PLACEATBEGINNING);
                             thePdf.close(SaveOptions.DONOTSAVECHANGES)
                        myCounter = myCounter + 1;
                        var theLayer = app.activeDocument.activeLayer;
                        theLayer.translate(0, theHeight);
                        theHeight = theHeight + offset;
                catch (e) {myBreak = true};
    // reset dialogmodes;
    app.displayDialogs = DialogModes.ERROR;
    app.preferences.rulerUnits = originalRulerUnits;
    // resize canvas;
        theFile.resizeCanvas(theWidth, theHeight, AnchorPosition.TOPLEFT);
    //MY WORK
    // merge visible layers (even if there is only one layer)
         try     {
              theFile.mergeVisibleLayers();
              }catch(e) {}
    // create layer, rename, movetobottom, fill white
         theFile.artLayers.add();
         theFile.layers[0].name = "Background";
         theFile.layers[0].move(theFile.layers[1], ElementPlacement.PLACEAFTER);
         var white = new SolidColor();
         white.rgb["hexValue"] = "ffffff";
         theFile.selection.selectAll();
         theFile.selection.fill(white);
    //rename contents layer, add "work" layer for teacher to write on
         theFile.layers[0].name = "Problems";
         theFile.artLayers.add();
         theFile.layers[0].name = "Work";
    //force 2107 width
    //     if(theFile.width != 2107) theFile.resizeImage(UnitValue(2107, "px"), undefined, undefined, ResampleMethod.BICUBIC);
    // force 2048 width
         if(theFile.width != 2048) theFile.resizeImage(UnitValue(2048, "px"), undefined, undefined, ResampleMethod.BICUBIC);
    // save psd;
        psdOpts = new PhotoshopSaveOptions();
        psdOpts.embedColorProfile = true;
        psdOpts.alphaChannels = false;
        psdOpts.layers = true;
        psdOpts.maximizeCompatibility = true;
        var filePathPsd = myPDFFile.path+"/"+myPDFFile.name.slice(0, -4)+".psd";
        if (filePathPsd.exists) filePathPsd.remove();
        theFile.saveAs(File(filePathPsd), psdOpts, false)
    // save pdf whiteboard
        var pdfOpts = new PDFSaveOptions;
        pdfOpts.downSample = PDFResample.NONE;
        pdfOpts.optimizeForWeb = true;
        pdfOpts.PDFCompatibility = PDFCompatibility.PDF15;
        pdfOpts.preserveEditing = false;
        pdfOpts.encoding = PDFEncoding.PDFZIP;
        var filePathPdf = myPDFFile.path+"/"+myPDFFile.name.slice(0, -4)+" Whiteboard.pdf";
        if (filePathPdf.exists) filePathPdf.remove();
        theFile.saveAs(File(filePathPdf), pdfOpts, false)
        theFile.close(SaveOptions.DONOTSAVECHANGES)
    //MY WORK
         return theFile

  • Question about creating a bootable disk image in Leopard.

    I have a Powerbook G4 that originally came with OS9, I upgraded to Tiger and recently upgraded to Leopard. The computer is running great but if it should go down what are my bootable options?
    1) Boot from the install disk set then load tiger upgrade then load Leopard upgrade? then reload all my programs back on the G4?
    2) Can I create a bootable disk image and save it on an external hard drive and then boot and reload everything at once? ( I guess by asking this question I really don't understand what the full scope of a bootable disk image is?) can someone explain...
    Which option is better? I am also running __time machine__... what is the safest and easiest way to use time machine to get my software back together after I get the operating system up and running.
    Thanks for the advice

    Your best alternative is to create a bootable clone on an external Firewire drive.
    How to Clone Using Restore Option of Disk Utility
    1. Open Disk Utility from the Utilities folder.
    2. Select the backup or destination volume from the left side list.
    3. Click on the Erase tab in the DU main window. Set the format type to Mac OS Extended (journaled, if available) and click on the Erase button. This step can be skipped if the destination has already been freshly erased.
    4. Click on the Restore tab in the DU main window.
    5. Select the backup or destination volume from the left side list and drag it to the Destination entry field.
    6. Select the startup or source volume from the left side list and drag it to the Source entry field.
    7. Double-check you got it right, then click on the Restore button.
    Of course you can use other software for cloning and backup:
    Backup Software Recommendations
    My personal recommendations are (order is not significant):
    1. Retrospect Desktop (Commercial - not yet universal binary)
    2. Synchronize! Pro X (Commercial)
    3. Synk (Backup, Standard, or Pro)
    4. Deja Vu (Shareware)
    5. PsynchX 2.1.1 and RsyncX 2.1 (Freeware)
    6. Carbon Copy Cloner (Freeware - 3.0 is a Universal Binary)
    7. SuperDuper! (Commercial)
    8. Intego Personal Backup (Commercial)
    9. Data Backup (Commercial)
    For use with Leopard always be sure you use a version of the software that is compatible with Leopard.

  • What's the best way to save an 8.5 x 11 image for use as a page background in a PDF?

    What's the best way to save an 8.5 x 11 image for use as a page background in a PDF? My goal is to have a relatively small final .pdf file size that includes numerous pages with full 8.5 x 11 images as backgrounds in the document. If I save at 8.5 x 11 and 72dpi (example), the image is not 8.5 x 11, and the quality is not good enough. I need help with size, dpi, and file format to save as before I place it in InDesign and then save as a .pdf.
    Thanks,
    Jim

    Do exactly what I said then.  Create the InDesign document of the required dimension, and chose whether it will be high quality print, or Interactive PDF.  It really doesn't mater what format you bring the image into that document.  It can be JPG, PNG, but I usually use native Photoshop PSD.  The image does have to be of high enough resolution, but it can be many times bigger than iis required for the final export.  (InDesign does not import the image, but rather references it on your hard drive.)
    When you have placed your text and finished your page, then export it to PDF, but go through the tabs chosing suitable settings.  If the image needs to be downsized, InDesign will do that at this stage while building the PDF.
    If you can tell us how this presentation will be made (Projector, overhead projector, printed page etc. or just emailed to the end users) we can help you more with the final output settings. 

  • How to save 4 artboards as 1 JPG image in Adobe Illustrator?

    I am doing an online class for fundamentals of design.
    I had to create 4 different designs, so I did this by doing them on 4 different artboards.
    I need to save my work for "web and devices..." as a JPG image in Adobe Illustrator (this i can do). But I want to save this assignment as 1 JPG image with all four artboards showing on one image.
    Can anyone tell me how to do this step by step.
    Thanks so much!!!
    Oh I am using Adobe Illustrator CS5.1

    Make a new artboard by selecting the Artboard tool and shift-click where you want it to start, then drag it out to cover all four of the images.

  • Create Snapshot for Multiple Images

    How would you like the feature to work?:
    To have the ability to select more than one photo and create a snapshot that would apply to all selected images.
    Why is this feature important to you?:
    When using Sync.. to synchronize work such as spot removal on several similar images (such as bracketed exposures), it would be a great time saver to be able to select these several images and create the snapshot to apply to all of them at once... For example, this would be a benefit when removing dust spots. It would just save time.

    Hello Bud,
    See below In answer to your question for clarification of my new feature request in September or 2009.
    The dynamic implementation of Lightroom has its upside and its downside. Its upside is that through the ability to reset edits and virtual copies, and create snapshots of edited images it is not necessary to do multiple saves to recover different editing effects. The downside is that if snapshots are not created before new edits are made on photos or photo sets it is time consuming and sometimes difficult recreate an exact set of previous edits.
    I am a travel and event photographer. I normally edit large final sets (50 to 200 images) out of a shoot that may have thousands of images. Normally I do not do a final snapshot of each image until the entire set is edited. This is because on final review of the set I will frequently tweek individual images to bring them into balance with the set. When I am done with the full set I must return to each image and creat a snapshot that I title "Final Edit dd/mm/yyyy" Then if I return in the future and intentionally or unintentionally make a change to one of the images I do not lose the set edits.
    It is time consuming to go back through the full set and make a snapshot of each image in the set and sometimes I forget or simply run out of time and never get back. For this reason It would be very valuable to select the entire set and click on snapshot, create the snapshot name indicated above or some creative set ID and automatically create a snapshot preserving the individual edits of each of the selected images with the same snapshot name.
    Another benefit of this feature is that if the images in a set Included images from multiple directories and were not in a collection  they could all be located by their snapshot name.
    I believe that if this feature was implemented it would be used by many if not all professional photographers that use Lightroom to do the majority of their editing.
    Jim

  • Creating a Windows 7 Image using AIK

    Hey All
    I am currently in a process of trying to create an image in my company that I can deploy on identical machines (Toshiba R830).  I have currently re-installed one laptop from manufacturer’s partition, but I would like to now create an identical image
    (WIM file) that I can deploy easily to other identical laptops in case user’s get a virus or whatever the case may be.
    In short I wanted to find out if it’s possible to copy all the partitions that the manufacturer has created on the machine into an image, since I do not want to deviate from manufacturer’s process and still want to have their particular set-up replicated
     when I re-image machines.
    I have tried to go through the re-imaging process but there is so many tools, ways and things to do before you can create an image that I am just lost in the sea of information provided.
    I just want to have an image on the network identical to the current set-up on the host laptop.  I have downloaded AIK for windows 7 and have tried to create bootable USB stick without much success.
    My current set-up is:
    Windows 7 Professional x64: (Running off the manufacturers Microsoft Windows activation key) According to Microsoft you cannot run an 'answer file' on a single OS license, you need to have a corporate license agreement in place with Microsoft.
    I do not have access to Windows OS media as my image was restored from a manufacturer's rescue partition (Out of box Experience) and then I modified the set-up via SysPrep 'System Audit' mode to how I want an image to look like.  According to Microsoft
    you are required to have either an ISO or an OS disk to use an 'answer file' for automated deployment.
    There are 3 partitions on the machine and I would like to take all 3 of them to the new image (not sure if this is possible).  
    Furthermore, do I have to set-up every new laptop HD partitions to conform with exact layout partition parameters as an initial image file using the WinPE media (as suggested by Microsoft) or is there an easier way of doing this, short of creating 'answer
    file' which  I cant't do due to above reasons? 
    I am struggling with creating windows PE bootable USB stick, any help on this would be much appreciated.
    How can I create unattended installation without use of windows 7 media, corporate license key, etc.  As this will be getting deployed to many users I need this to be unattended.
    The tutorials I watched on-line seem to be awfully complicated for creating and deploying simple image that is supposed to save you time not be longer than installing from Windows OS disk.
    Any help would be appreciated.
    Regards
    Slav 

    Hey Arnav,
    Thank you for your prompt response.  Yes, I did go through this but specified method requires a DVD media for Windows 7 (Which we are not using, we are using a manufacturer's restore partition), and an answer file does not automate without Windows corporate
    license key according to Microsoft (which we dont have, we are using the manufacturer's keys assigned per device basis).  
    Additionally, we have 3 partitions on the host image machine (put there by Manufacturer) which we would like to translate to our final image, and there doesn't appear to be any instructions on how to package these partitions into a WIM file for future image
    deployments.
    Many thanks,
    Regards
    Slav

  • Create a new Buffered Image using Raster and ColorModel

    Sorry , I crosspost this message,because no one reply.
    Recently,I write a programme combining C++ and Java .
    The C++ part create a array containing image data in form of BI_RGB and biBitCount==32.
    The java part create a image using Raster and ColorModel like this:
       static int[] data ;
       DataBuffer db = new DataBufferInt(data, data.length);
       WritableRaster wr =Raster.createPackedRaster(db, 1024,768, 32, null);
       ColorModel cm = new DirectColorModel(32,0xff0000,0x00ff00,0x0000ff);
       img = new BufferedImage(cm, wr, false, null);But it doesn't work .
    it report this:
    Exception in thread "main" java.lang.IllegalArgumentException: Raster sun.awt.im
    age.SunWritableRaster@dff3a2 is incompatible with ColorModel DirectColorModel: r
    mask=ff0000 gmask=ff00 bmask=ff amask=0
    at java.awt.image.BufferedImage.<init>(BufferedImage.java:549)
    at monitor.test.Perform2.main(Perform2.java:39)

    hey epico
    compiles & runs 4 me
    see javadocs for SinglePixelPackedSampleModel
    import java.awt.image.*;
    public class Tester {
    DataBuffer db;
    WritableRaster wr;
    ColorModel cm;
    BufferedImage im;
    int[] data;
    int[] masks;
    int w = 768;
    int h = 576;
      public Tester() {
        data = new int[768*576];
        for (int i = 0;i < w*h ;i++ ) {
          data[i] = 0;
        masks = new int[3];
        masks[0] = 0xff0000;
        masks[1] = 0x00ff00;
        masks[2] = 0x0000ff;
        db = new DataBufferInt(data,data.length);
        SinglePixelPackedSampleModel sm = new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT,w,h,masks);
        cm = new DirectColorModel(32,0xff0000,0x00ff00,0x0000ff);
        wr = Raster.createWritableRaster(sm,db,null);
        im = new BufferedImage(cm,wr,false,null);
      public static void main(String[] args) {
        Tester tester1 = new Tester();
    }

  • How can I create a java.awt.Image from ...

    Hi all,
    How can I create a java.awt.Image from a drawing on a JPanel?
    Thanks.

    JPanel p;
    BufferedImage image =
        new BufferedImage(p.getWidth(), p.getHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = image.createGraphics();
    p.paint(g);
    g.dispose();

  • How can I create a high res image gallery, need to have print res photos for a pressroom section.

    How can I create a high res image gallery, need to have print res photos for a pressroom section.

    If you want Muse to "pass through" your images and not adjust, compress, crop etc - you need to place your images in the lightbox EXACTLY at the right size, pre-cropped and prepped in Photoshop.
    So if your light box is 800x600 the image you're dropping into that must be 800x600 exactly with no effects, rotation etc added to the lightbox frame. This stop Muse fiddling with your images, if they are perfect when inserted and you're not asking Muse to crop, expand, add effects etc. If it's perfect when inserted, Muse SHOULD also leave the resolution alone too, but I have not tried that one, but in theory, it should work.

  • Facing error in creating a provisioning gold image

    Hi All,
    I want to create one middleware gold image for a middleware home in OEM 12c Cloud Control using Provisiong and patching feature. I have set up one software library. Now while creating a middleware gold image in the subsequent steps I am getting the following error my gold image is not getting created.
    The command "/home/orasoaapp/Oracle/Middleware/utils/clone/clone.sh" was not run successfully. The possible causes are:
    1. All the WebLogic product directories (like WebLogic Server, Coherence) were not installed inside this Middleware home.
    2. In case of Windows, some Java or WebLogic processes were running from this Middleware home.
    mine is linux operating system.
    Can anyone tell me what could be the issue??
    Thanks in Advance!!

    Can you provide some more details on how are you creating your Gold image? Are you creating it from a WLS domain menu?
    Can you also explain the topology of your WLS domain as in how many servers/clusters/number of hosts participating etc?
    Also, what version of OEM are you on? is it 12.1.0.2.0?

  • How do I create a bootable snapshot image of Lion?

    How do I create a bootable snapshot image of Lion?  In the past, I used disk utilities - restore to create a copy of current hard drive on an external drive.  If there was a problem, kids could boot to external and work until internal drive was fixed.  This proved to be a great solution.  On a new Macbook Pro with Lion,  I get an error when I try.  It says to do a restore from the recovery disk, but the recovery disk says it is a limited function OSX.  I would like a full OSX so they can continue to work and even copy files over if the internal disk is suffering intermittent failures enough not to boot but not enough to keep from copying files.  A few years ago one of the kids had a disk/boot failure duing finals but was able to boot from the external hard drive, copy over what he needed and access the internet so that he could finish the exams.  Time machine is great, but there are instances where you need a quick fix to keep going until the new hard drive arrives.

    I do not run Windows, so I have no idea how to handle that type of situation.
    But, just to be clear: disregarding Windows, the recovery option downloads the OS and installs it. Technically, that is not a clone unless you copy the installer and create a bootable OS with it. A clone is an exact copy of your system including all your apps, user settings, files, etc, etc and will exist on an external hard drive in addition to your system on your internal - that is done with CCC or SuperDuper.
    And, a GUID partition is created in Disk Utility > click on the drive > choose Partition > choose a layout other than what you now have > there will be a clickable Options button below. Click on that and you can choose GUID. Note: partitioning your drive will erase everything on it.

Maybe you are looking for

  • Change (or add) a password to Active Directory with Java and JNDI

    I've create a new account in LDAP with attributs, It's ok. But a can't initialize the password, i've tryed some samples without result. Maybe it's a SSL problem (i don't know why, i read it somewhere). my code : import java.util.*; import java.io.*;

  • How do I add headers to the Table of Contents?

    Hi there, I have a book that mainly consists of text boxes rather than inline text. The main title (on each page) is what I want to show up in the table of contents so the reader can just tap the title and jump to the page. How I tried to do this was

  • Import from Repository option disabled in offline mode

    We need to import usage tracking information from UsageTracking.rpd into our current rpd. For this we shut down BI Services and opened our repository in offline mode. In the Admin Tool when we click on File->Import , the option 'from Repository' is d

  • My ipod touch 4's battery lasts five minutes, how can i fix it?

    I recieved my ipod last year for Christmas. It has worked great, but starting about 2-3 weeks ago, the battery lasts no longer than 5 minutes. I believe that i just need to have the battery replaced, but would like it troubleshot just incase there is

  • Trying to buy OS X Tiger for my Power Mac

    I no longer have my installation CD for my Power Mac G3. Can I just buy an OS X 10 CD from ebay and use it to wipe out and re-install the OS on my computer? It says it is once licence, how do I know it hasn't already been used?