How do I load and save to my iMac a dvd purchased elsewhere?

how do I load and save to my iMac a dvd purchased elsewhere?  Thank you.

The mods here are adverse to mentioning software to duplicate commercial media, which is called "ripping." However, you can search outside of this forum for the software you need.

Similar Messages

  • How can I load and save text using FileReference class

    Let me start by saying I have no intention of using php and I can't wait until flash cs5 comes out with its new read/write capabilities
    I want to load and save XML files (stored on my local hard-drive) in AS3.
    I am using the FileReference class.
    Firstly I have noticed that when using FileReference.save if you replace an existing file instead of writing over the file data is appended to the end of the file. Can I make it so the file is overwritten (as it should be) or make it impossible for the user to save in such a situation.
    Secondly I want to load in text from an external file using FileReference.load I know that somehow you use FileReference.browse first to get it to work but I want to know exactly how to do it.
    I have looked for a tutorial about loading text in this manner and have not found one.
    Any help would be much appreciated especially if you could point me in the direction of a relevant tutorial
    Thanks

    the filereference class is for downloading and uploading files.
    if you want to load xml, use the xml class.
    and, if you want to write to an xml file and don't want to use server-side code, wait.

  • How do I clear and save my old imac ?

    Hello
    I'm sure this has been asked 1000 times, so thank you for answering again and pointing me in the right direction.
    I recently bought a new iMac and sold my old one on Ebay.  My old iMac is Snow Leopard and new one will be the most up to date.
    WITHOUT having my new iMac, can someone please give me step by step on how to save:
    Itunes music (even the non purchased ones)
    Apps (Like Word)
    My external hard drive is full, so I know the music can't be stored there.
    ONCE that is done, how do I completely clean out my old iMac.  I don't have the operating system CD anymore, so I can't reinstall it that way if need be.  But I need to make sure it's a factory reset without the chance of restoring , including my iTunes ID.
    Thank you in advanced and ya'll know how I will be spending my weekend.
    Thanks!

    1. Copy them all to a second external drive.
    2. Click here and follow the instructions. When you reach step 5, phone Apple and order replacement disks or buy a Mac OS X 10.6 DVD from the online Apple Store(this won’t work on computers which shipped with 10.6.3 through 10.6.8), insert the disk you got, restart with the C key held down, use the Disk Utility to erase the internal drive, and install a fresh OS.
    (115329)

  • How to load and save custom workspaces in PE7

    I've written a little utility which allows PE7 users to load and save custom workspaces. It's attached to post #1 of this thread.
    System requirements
    The utility has been tested with Windows XP Pro SP3 only. It might or might not run under Vista. It will only work with PE7 installations where the executable files are in the default places.
    Installation
    When you have downloaded the utility (it's only 199KB) you can run it from any convenient place in your system - it doesn't need to be installed as such.
    Usage
    It's pretty self-explanatory in use but here's the manual!
    Run the downloaded utility "PE7WS.exe".
    A file selection dialog appears. Choose the workspace layout file you wish to use. "LastUsed.layout" is the last used workspace (that's all you will be offered the first time you run the program). If you press Cancel at this point, the program will exit and nothing will happen.
    Once you have selected the workspace, click "Open" and Premiere Elements 7 will run, using the workspace layout you chose.
    After you exit from Premiere Elements 7, a workspace layout file save dialog will appear. If you made changes to the workspace during your Premiere Elements 7 session, you can now give the revised workspace a name and save it.
    Do not save the workspace in a different directory from that which the dialog offers!
    If you have changed an existing custom workspace, and you want to update the version previously stored, just select the name and over-write the saved workspace layout with the new one.
    If you don't want to save the workspace at all, just click "Cancel" - next time you run Premiere Elements, you can choose the "LastUsed.layout" workspace to use that last used unsaved workspace in any event.
    If you use the PE7WS utility to run Premiere Elements 7, and then you use the menu option "Window > Restore Workspace", then exit, you can either cancel the workspace saving stage, (which will mean that "LastUsed.layout" will contain that default workspace), or you could give that default workspace a name like "PE7 Default" so you can start a future Premiere Elements 7 session with the default workspace, even though you last used a custom workspace.
    If you run Premiere Elements 7 in the usual way without using PE7WS.exe, the workspace that appears will be the last used one.
    The usual disclaimer...
    The utility should be entirely safe in use, but I can't accept responsibility for any loss or damage it might cause. However, the only file manipulation is does is to workspace files in the directory that Premiere Elements 7 uses purely for the purpose - the utility doesn't go anywhere near your precious project files.

    I'm finding it very handy on my particular twin 22" monitor setup to sometimes use a one-screen layout and sometimes a two screen layout. I 'discovered' that having the timeline on the second monitor enables me to tweak edits there while having the playback full size after pressing the "full screen" button on the first monitor. Where the timeline would normally be I have the history, mixer, and other windows always open. As the second monitor is also used by another PC (the one I have the net and email etc on) using "Maxivista" monitor sharing software, I revert to single screen layout when doing stuff like exporting to DVD so I can see what is going on with the render while typing stuff like this.
    Selectable workspaces are dead handy!

  • Load and save difficulties.

    I am new to java and do not understand how the load and save functions work.
    I have the following code and would like the load function to open selected files into text area 1 and the save function to save the contents of text area 2.
    Can anyone help me with thuis please?
    //Adding text field one
              TextArea ta1 = new TextArea(15,20);
              textPanel = new JPanel();
              textPanel.setLayout(new GridLayout(1,1) );
              textPanel.setBorder(titled);
              textPanel.add(ta1);
              container.add(textPanel, BorderLayout.NORTH);
              //Adding text field two
              TextArea ta2 = new TextArea();
              textPanel = new JPanel();
              textPanel.setLayout (new GridLayout(1,1));
              textPanel.setBorder(titled2);
              textPanel.add(ta2);
              container.add(textPanel, BorderLayout.CENTER);
              //setting the window requirements 800, 600
              setSize(800, 600);
              setVisible(true);
              setResizable(false);
              Load.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        final JFileChooser fc = new JFileChooser();
                        int returnVal = fc.showOpenDialog(fc);
              Save.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        final JFileChooser fc = new JFileChooser();
                        int returnVal = fc.showSaveDialog(fc);
         });

    Example:
    // Your code
      Load.addActionListener( new ActionListener() {
        public void actionPerformed(ActionEvent e) {
          File file = getFile('o');
    //      final JFileChooser fc = new JFileChooser();
    //      int returnVal = fc.showOpenDialog(fc);
    // end your code
      File getFile(char fcType) {
        int returnVal = 0;
        File file = null;
        JFileChooser fc = new JFileChooser();
        if ( fcType == 'o' )
          returnVal = fc.showOpenDialog(fc);
        else
          returnVal = fc.showSaveDialog(fc);
        if (returnVal == JFileChooser.APPROVE_OPTION) {
          try {
            file=fc.getSelectedFile();
          } catch (IOException e) {
            // show exception or handle it
        return( file );
      }

  • Load and Save MySql Database

    In what way in java can I load and save a full database ,from MySql, in java , a dump operation .

    This is how I am parsing and requesting the information.. I know it's in there somewhere I just can't get the variables, do I need to add them ? It's not making much sense to me at the moment, I'm sorry !! I need to add the variables to the request somehow.. so I can receive the info, no ?
    var tab = "SQLtab";
    var filesend = "path to php file";
    var modesend = "post";
    function variableTransaction(fichier, modesend, tab, var1, var2) {
         var URLload = new URLLoader();
         var URLrequest = new URLRequest(fichier);
         var variables:URLVariables = new URLVariables();
         variables.tab = tab;
         variables.var1 = var1;
         variables.var2 = var2;
         if (modesend == "post") {
              URLrequest.method = URLRequestMethod.POST;
         } else if ( modesend == "get") {
              URLrequest.method = URLRequestMethod.GET;
         if (var1 == false && var2 == false) {
              URLload.dataFormat = URLLoaderDataFormat.VARIABLES;
              URLrequest.data = variables;
              URLload.load(URLrequest);
              URLload.addEventListener(Event.COMPLETE, loadComplete, false, 0, true);
         } else {
              URLrequest.data = variables;
              URLload.load(URLrequest);
              var receiveObject = variableTransaction(filesend, modesend, tab, false, false);

  • I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?

    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?
    Thanks,
    Shir

    sbmgrams wrote:
    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?
    See here:
    Reading PhotoDeluxe PDD Files

  • How do I find and save the background music file of my Flash site?

    I see that the background music in my Flash site is located in a symbol called muz.  When I click the properties of this symbol, the sound file's location is listed as .\flash\sound\muz.wav  I couldn't find that sound sub-folder in the flash folder nor could I find the file.  I tried doing a search to look for the muz.wav file in my computer but it could not be found.  Does anyone know how I can find and save this file?  Can the symbol somehow be exported and the sound file be extracted that way?

    I copied and pasted the symbol into an empty .fla file.  This new .fla file is just 1 frame.  Can you tell me what you mean by "spreading" it along the timeline?  When I tried exporting it to a .wav file (as just 1 frame in timeline), I only hear a fraction of a fraction of the first note of the music in the generated .wav file.  The music is heard fine in its entirety when previewing the .fla file (F12).
    By the way, in the symbol's properties, there is an option to "Export for ActionScript" and an option to "Export for runtime sharing".  Do you think any of these would work?

  • On an ipod touch 4th generation, how do I load and sync my music from the computer to the ipod without mixing up and/or losing all of my photos which I have in categories?

    On an ipod touch 4th generation, how can I load and sync my music from my computer to the ipod without losing and/or mixing up my photos which I have put into categories?

    Finally did somethign that fixed this.  I restored my hard drive.

  • How do I edit and save a word document that has been e-mailed to my ipad

    How do I edit and save a word document that has been e-mailed to my ipad and then re-send

    Use the paid version (install and activate) of Microsoft Word.
    https://itunes.apple.com/sg/app/microsoft-word-for-ipad/id586447913?mt=8

  • How can i edit and save a spreadsheet or excel sheet on my MACbook pro

    how can i edit and save and rename excel or spreedsheet on my macbook pro

    Just download LibreOffice and click on the Spreadsheet icon in the splash screen:
    ...and it will open almost any Excel document...
    (This is an old football roster created in Excel).
    Good luck,
    Clinton

  • How can I edit and save parts of songs (like a chorus).

    How can I edit and save parts of songs (like a chorus).

    The iTunes-only way is:  figure out where you want your excerpt to begin and end.  Right-click the track, Get Info, Options tab, set the Start/Stop times accordingly, and OK out.  Right-click again, and choose Create XXX version (where XXX is the format indicated in your Import settings).  Right-click one more time, and unset the Start/Stop times.
    This procedure will leave the full track in place, and will create a new file and library entry with just your excerpt.

  • How can I edit and save a raw file in jpeq and open it in windows live photo gallery

    how can I edit and save a raw file in ps elements 10 and open it in windows live photo gallery?

    Change to 8 bit mode before clicking the Open Image button, then jpeg will become available as a choice.
    Click to view image

  • How do I download and saves html files off my website to store and save using Dreamweaver CS3?

    How do I download and saves html files off my website to store and save using Dreamweaver CS3?
    I need to save all files from web and store onto a drive to reupload to a new domain name.  I use Dreamweaver CS3.

    First define your Local Site folder in Dreamweaver.  DW will use this folder to store your site files.
    Go to Manage Sites > New or Edit site.  See screenshots.
    Servers:  Enter your remote server's log-in details.  When complete, hit TEST to see if the connection is working.  If all is well, hit SAVE.
    From the Files Panel (F8), click on Remote Server to show the files that are currently there.  Click the green Down Arrow to GET files from remote server to your local site folder.
    Nancy O.

  • How do you create and save icc profiles using photoshop?

    How do you create and save icc profiles using photoshop?

    You don't. Color profiles require specific measurement hardware and software.
    Mylenium

Maybe you are looking for

  • Writing email on ipad can I change the color of the text?n email on ipad can I change the color of the text?

    When writing an email on ipad can I change the color of the text half way through to highlight relevant detail? If so, how? I have looked and looked..... Thanks, Belinda

  • Backup to external drive already used by Windows

    Total Mac newbie who wants to back up a MacBook Pro. I'd like to use one of the external drives I already own. The trouble is, they've been used for Windows storage already and so have that file system on them. They also have files and/or system back

  • Inconsistent Stream responses b/w servlet & applet

    Hi all, I am facing problem with my servle/applet communication .I am using serialized object transport b/w the two. I am able to send my object using a URL connection class successfully to the server . However having problems while reading the respo

  • Pop-up message during MIRO

    Dear sir , In Service Master for a specific type of services where "work contrct tax" is applicable , we mention Service Type as "WCT" . Our requirement is that at the time of MIRO , a message / pop-up message should be appeared on screen indicating

  • WebLogic 6 Config

    Does anyone know how to pass user defined properties into WebLogic 6 . I know you could put java.system.property.name=value statements into weblogic.properties in version 5.1 but i cant find a suitable place in the new config.xml file. I wish to be a