Replace files with newer download files on NB100?

Just got the NB100 for my daughter and we both love it to bits:)
I'm doing the update and it's found 129 updates and after downloading, it's asking me at various points if I'd like to keep a modified file or replace it with the newer downloaded file.
What do I do?
Homey

I just went ahead and replace everything with newer versions and everything worked apart from the sound. two lines of typing at the terminal screen fixed this and everything now works!
Hope this is of help to anyone who's bought oneof these babies!
Homey
Still learning...

Similar Messages

  • HT1338 I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    It should unzip if you double-cick.
    What are you seeing happen when you do that?
    Select a .zip file in the Finder and Get Info (cmd-i). What is set for it to Open With. It should be Archive Utility.

  • I cant upgrade camera raw and need to to be able to work with new camera files  why?

    i cant upgrade camera raw and need to to be able to work with new camera files  why?

    Boilerplate text from Best Practices FAQ
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
        * Adobe product and version number
        * Operating system and version number
        * The full text of any error message(s)
        * What you were doing when the problem occurred
        * Screenshots of the problem
        * Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • I purchased creative lightroom presets. I see the zip file in my download file and I try to import to LR but it just keeps creating a bundle never giving me the option to import (greyed out). What am I doing wrong?

    I purchased creative lightroom presets. I see the zip file in my download file and I try to import to LR but it just keeps creating a bundle never giving me the option to import (greyed out). What am I doing wrong?

    Try unzipping the file first. I have no idea regarding your level of technical expertise so advanced apologies if this is really basic. A ZIP file is a compressed file containing one of more files within it. To access the files you will need to expand it. If you double-click on it first, it should open up for you. If it does not automatically expand, you can select the files and copy them to a new folder. The copy will unload them into an uncompressed form. Once they have been uncompressed, you should be able to import them.
    If the import is still giving you problems, go to your Preferences, click on the Presets tab and click the Show Presets Folder button. You can then copy your purchased presets into the folder shown. You will want to copy them to the User Presets subfolder.

  • Update jar file with modified class files

    hi all,
    I'm developing a jar utility for updating a jar file with modified class files as of now i have reached a point where in i can browse files and set it to required location
    i.e i have developed a swings GUI application using JfileChooser and browse the files ..now my requirement is to update the jar files with modified class file
    GUI looks like below
    ....enter the modified class file ----> d:\c.class
    ....enter the jar file path ---> d:\a.jar
                                                          update button now i have the requirement as
    1> when i click on the update button ,my jar file (a.jar) should get updated with the latest class file (c.class)
    can u help me to achieve this requirement.???
    im stuck with this,,,if u can provide me wit the code for updating jar file with latest class file...it will really be helpful
    if u can help me with the code on click on update button it will be really helpful
    Thanks and expecting a faster response from u all java experts....

    Please find my query in bolds...i have written the partial code now,i need some help now
    hope u guys can help me out...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.File;
    public class FileExplorer extends JDialog implements ActionListener
         JTextField txtLocation_class;
         JButton btnBrowse_class;
         JLabel label_class;
         JTextField txtLocation_jar;
         JButton btnBrowse_jar;
         JLabel label_jar;
         JButton updatebutton;
         public FileExplorer()
                   setSize(600,300);
                   //for class files
                   label_class = new JLabel("Please select Modified Class File");
                   txtLocation_class= new JTextField(20);
                   btnBrowse_class = new JButton("Browse");
                   btnBrowse_class.addActionListener(this);
                   //for jar files               
                   label_jar = new JLabel(" Please select the Jar file");
                   txtLocation_jar= new JTextField(20);
                   btnBrowse_jar = new JButton("Browse");
                   btnBrowse_jar.addActionListener(this);
                   ActionListener updateListener = new ActionListener(){
                    public void actionPerformed(ActionEvent ae){
                     if(ae.getActionCommand().equalsIgnoreCase("Update")){               
                      System.out.println("ae.getActionCommand() :: "+ae.getActionCommand());
                      System.out.println("Update Button is pressed");               
                    *//Query :how do i access FilePath and FilePath1 here which*
    *                // has been set in public void actionPerformed(ActionEvent ae)*
    *                //method below*
    *                // FilePath  ---??*
    *                // FilePath1  ---??*
    *                // how do i access the above 2 parameters*
    *                //Query :on click of update button i have to pass*
    *                //two parameters FilePath and FilePath1 to*
    *                //perform some functionality. please help me*
    *                //to achieve this..how do i access Filepath and Filepath1*
    *                //here which has been set below.*
                     } // end of if               
                   } // end of actionPerformed
                };// end of ActionListener
                  updatebutton = new JButton("Update");
                  updatebutton.addActionListener(updateListener);
                   //adding to the panel               
                   JPanel pnl = new JPanel();
                   pnl.add(label_class);
                   pnl.add(txtLocation_class);
                   pnl.add(btnBrowse_class);
                   pnl.add(label_jar);
                   pnl.add(txtLocation_jar);
                   pnl.add(btnBrowse_jar);
                  pnl.add(updatebutton);
                   getContentPane().add(pnl);                         
         public void actionPerformed(ActionEvent ae)
              Object obj=ae.getSource();
              if(obj==btnBrowse_class)
                   final JFileChooser fcstudent = new JFileChooser();
                   int rtrnval = fcstudent.showOpenDialog(this);
                   if(rtrnval==JFileChooser.APPROVE_OPTION)
                        try
                             File file=fcstudent.getSelectedFile();                         
                             String path = file.getPath();
                             System.out.println("This is Path:"+path);
                             txtLocation_class.setText(""+path);
                             String FilePath=txtLocation_class.getText();
                             System.out.println("FilePath is ::"+FilePath);                                        
                        catch(Exception ex)               
                             ex.printStackTrace();
              }else if(obj==btnBrowse_jar){
                             final JFileChooser fcstudent = new JFileChooser();
                             int rtrnval = fcstudent.showOpenDialog(this);
                             if(rtrnval==JFileChooser.APPROVE_OPTION)
                                  try
                                       File file=fcstudent.getSelectedFile();                         
                                       String path1 = file.getPath();
                                       System.out.println("This is Path:"+path1);
                                       txtLocation_jar.setText(""+path1);
                                       String FilePath1=txtLocation_jar.getText();
                                       System.out.println("FilePath is ::"+FilePath1);                                        
                                  catch(Exception ex)               
                                       ex.printStackTrace();
         public static void main(String arg[]){
                   FileExplorer Exm= new FileExplorer();
                   Exm.setVisible(true);
    }

  • Connect the music file with the artwork file post-computer-crash?

    I want to retrieve artwork after restoring my computer?
    So my computer (where itunes app data was stored) and my external hardrive (where my itunes library was stored) crashed, but luckily I had my itunes library was stored on dropbox so I have that uploading to my revived computer!
    I have access to all my "old computer's" files (via a mounted image file that looks just like an external drive H: )
    The "old computer" itunes used my dropbox folder for the library (J:work\Dropbox\Allen's Transfer Folder\iTunes)
    my "New comuter" uses a local folder but the contents are exactly the same (C:\Companies\Dropbox\Allen's Transfer Folder\iTunes)
    How can I get the artwork data from my "old computer" onto my "new computer" so that itunes will connect the music file with the artwork file?
    is there a data file and will they automatically sync to the artwork if they are in different locations?
    Thank you for your help, Allen

    pfanzier wrote:
    … is there any reason i shouldn't delete the artwork folder?
    All of my music is from CDs, so all of my cover art are scanned images that I added to the music files in iTunes. My Album Artwork folder is heavily populated nonetheless. Thus, it stands to reason that if you delete the folder, just like every other default item in your iTunes folder it will be recreated when you launch iTunes. If I recall correctly, that folder also holds the data files for building your CoverFlow.
    pfanzier wrote:
    itunes only demarcates songs whose files are missing with an exclamation point after i click on the song. otherwise everything appears as normal. if i quit itunes and reopen it, nothing is marked with the exclamation point until i click on it.
    I personally have never had an issue with missing song links, but based on what I had read on the Macworld forums over the years, when links are lost, people start seeing /!\ next to several tracks in their iTunes library. Of course, most of the instances that I have read about have been after iTunes updates so perhaps it is during the library updating after a software update that causes the automatic detection of broken links. Otherwise, it does make sense that iTunes would not check a link until the user selects an unlinked song, because iTunes does not, and should not, scan your entire library for no apparent reason.

  • Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path

    Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path using any of these perfectly normal methods:
    1. double-click file in the Finder (e.g in a Folder on your Mac or on your Mac desktop etc.)
    2. select file and choose "File... Open" command-o in the Finder
    3. drag file to the application icon in the Finder.
    4. Select file in Bridge and double-click, choose File.. Open.. or Drag icon to InDesign icon in dock.
    If you try to open an ID file named with a "#", you will get an error message "Missing required parameter 'from' for event 'open.'"
    This happens to any InDesign file that has a "#" (pound sign, number sign, or hash) in the filename or in the file path (any parent folder).
    To reproduce
    Name an InDesign file Test#.idd Try to open it in the Finder or Bridge (as opposed to the "Open" dilaog of InDeisng itself).
    "Solution"
    The file WILL open using File... Open... command-o while in InDesign application.
    Rename the file or folders that have a "#" (shift-3) in the filename.
    Report to Adobe if it bugs you.
    This does not occur in "plain" Leopard 10.5 nor Tiger 10.4
    Untested in Panther or before and
    Untested with CS3 and earlier in Snow Leaopard.
    Anyone have those and want to try this... ?

    In case this really bothers you: we've added a workaround for this into Soxy. If you enable the option, these documents will open fine on double-click.
    You need Soxy 1.0.7 from:
    http://www.rorohiko.com/soxy
    Go to the 'Soxy' - 'Preferences' - 'Other' dialog window, and enable 'Open InDesign via Script'
    (Irrelevant background info (it's all invisible to the user): the workaround works by special-casing how Soxy opens documents in InDesign: instead of using AppleScript, Soxy will use ExtendScript to instruct InDesign to open the document - which works fine).

  • Where does Lightroom put HDR in the grid view? Is there anyway to have Lightroom stack the HDR file with the source files?

    I can't decipher where (and why) the program is putting the HDR image in the grid. I stack all of my HDR source images so they are easy to track and manage. Other apps/plugins allow you to stack resulting images with their source image. That would be great if there's a way to set that in LR preferences.

    Thanks, but this doesn't really answer the question about stacking the HDR file with the source files. Yes, it does put the file in the same folder, however many of my folders have 100s of images (that often look similar) and as far as I can tell, LR places them randomly in the sort order. It doesn't appear to put them at the beginning or end of the sort (usually by date), but somewhere randomly in the middle. Even if it could be made clear what method it is using to sort them, that would help locate one file among hundreds.
    Ideally, however it should allow you to stack with the stacked source files. Is there anyway to do this? If not, is it a feature that could be requested?

  • Creating IPA file with Multiple SWF files using ADT

    Iam successfully able to create ipa files using the ADT package but my next requirement is to create an IPA file with multiple swf files.I think it might be easy if your SWF files are regular the tough part is my swf file has lot of action script in it so the only option is to through the command prompt and using the ADT package of Adobe AIR.So now i have 10 SWF files like this and iam creating ipa file for each swf seperatly but now I want to put all of the swf files into one ipa file.Please let me know if i was not clear in my description

    I think you are trying to explain how to load two swf's one with action
    script and loading an other swf file which should be non action script.If
    you read my requirement carefully.I have all the same type of swf's and
    these swf are automatically created as a form of output for xcelsius dash
    board software.Iam capable of creating individialu ipa files from these swf
    files.So when I try to combine the same kind of swf files the first error
    its giving is the file name which I have used in the xml.in the main file
    name for the swf file its not considering the two swf file name in the
    initial window.so the adt package in the command line is not understanding
    the file name from the xml and the command prompt and giving error this swf
    file does not exist.So please consider how to combine two swf files with AS3
    into one ipa file.These swf files are not editable,Let me know if you find
    any idea to achieve this

  • Cannot open a a file with a specific file name

    I have 1 person who cannot open or save a file with a specific file name on his computer.  If he does it at another computer he is fine, no one else has this issue.  The error he gets when trying to open the file is { Cannot create file:missingperson.pdf. Right-click the folder you want to create the file in, and then click Properties on the shortcut menu to check your permissions for the folder}
    Any ideas on how to resove this.  He gets this file sent to him on a regular basis, and cannot have the file name changed.
    Thank you

    I have run across something similar.  Assuming that this PDF they are getting through email is the same name, then this is how I fixed my problem.
    When you get a file in an email and open it, it writes that file to the Temporary Internet Files folder.  Lets assume the file name is filename.pdf  If you open a file from email with the same name at a later time, it creates a file called filename(1).pdf.  Open a file with the same name again, it creates filename(2).pdf, and so on.  Once you get to filename(99).pdf, it will start giving you a lot of trouble.  When I cleared out those filename.pdf's, everything went back to normal.
    Hope this helps.

  • Hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    iPad do not support flash natively.
    Look in the app store, some browsers do support flash with limited functionality.

  • Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets.

    Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets. then it names the file as an m4p file. Everything works beautifully on the iPad through Preview, and validates through iTunes Producer up until the attempted upload. If you've been able to accomplish this, please let me know how you prepared your audio files. Many thanks.

    Hello Fellow iBook Authors!
    Today I received the same error that you all have been discussing.  I tried selecting the DRM
    and this did not work for me, though I'm glad it did for some.  Here's what I did as a work-around. . .
    Since iBooks Author did not have a problem with Videos, I simply used one of my video programs, ScreenFlow to turn the audio into a video file m4v.  I added an image and extended the length or timing of the image to span the length of the audio file.  Then exported as an .mov.  I then opened QuickTime and opened the file and exported the file to iTunes. 
    You can use iMovie, Camtasia or any other progam that will allow you to export the audio as a movie file.  Does this make sense?  I hope this helps, at least in the short-term.
    Michael Williams

  • One of my imacs are saving all my files with a capitalized file extension?!

    one of my imacs are saving all my files with a capitalized file extension?! For example: .psd is .PSD this really suck because I keep getting to versions of all my files. Can someone please assist me in fixing this. Thanks! -derek

    Welcome to Apple Discussions!
    Did you format your hard disk on that Mac any differently?

  • How I can combine pdf file with other pdf file

    How I can combine pdf file with other pdf file ?

    Or from Adobe Reader via https://createpdf.acrobat.com/

  • Would use iphone?if apple replaces ios with new operating system??

    would use iphone?if apple replaces ios with new operating system??would you buy any iPhone ??also you could not buy any iPhone 7,with any ios?

    Apple have just updated their iOS to iOS 8 so what are you on about?
    Do you have a valid question here or not?

Maybe you are looking for

  • How do i migrate data from ipad to macbook pro?

    After a hard drive failure on my macbook I have a lot of infomation on an ipad that i want to transfer to the rebuilt mac.  Unfortunately syncing does not transfer, nor does drag and drop nor copy paste. If I try to sync the macbook wants to replace

  • Multiple Template in BIP

    Hi What is the use of multiple template in BIP Report. Can we print multiple template at a time. If no, then why they have given this facility of multiple template. Mash

  • How to set up a home network between an iMac and Apple TV

    I have an iMac running Snow Leopard connected by Ethernet cable to the internet via a wireless-capable modem running at 5mbps. I want to network it to an Apple TV connected to my HDTV by an HDMI cable so I can run Netflix.  The TV is on the first flo

  • Is there a way to display the size of a folder or group of folders in Bridge?

    In windows it is easy to click on any folder and see the size of it's contents, whether it is a single folder or contains subfolders.  This doesn't seem possible as far as I can see in Bridge.  The only way I can see to see the size of a folder is to

  • Can you prevent bridge from exporting the cache to a folder and all it's subfolders?

    I have set bridge to export cache files to folders where possible, and find this to be quite useful most of the time. It is a bit of a pain though when I'm browsing my dropbox folders. I was wondering if there was a setting somewhere for "Please don'