A Question About Firmware For Creative MuVo TX

1. How Can I Take Backup Of My Orginal Firmware From My Player ?
My Firmware version Is .20, And I Want To Take Backup Of It Before Upgrading It To .24.
2. What Is The Worst Condition If The Firmware Upgrade Is Halted By Any Error Or By Some Problems ? Can Player Work Again Without Contacting Any Service Center ?
Does Sound Quality Of TX FM Increases After Doing Firmware Upgrade ?
Does The FM Radio Becomes More Clear After Firmware Upgrade ?

If you want to use the software on the new machine then the new machine needs to be a Mac and you need to deactivate the software (use Help -> Deactivate) on one of the two current installations so that you have an activation available for the new machine.
I am assuming you meant CS5.5, not CC 5.5, and that you have a single user license, not two licenses... a single user license allows you to have two activated installations.  If you do actually have two licenses then you should be able to use them with four different machines.

Similar Messages

  • Question about IPC for CRM 5.0

    Hi ,
    I have a question about CRM 5.0 with relation to the IPC .
    As we know the IPC  will be available internally from  CRM 5.0 , but we would like to know if the internal IPC  will be distributed with different applications or will it be one IPC  for all the different applications .
    Thanks in advance
    BR//
    Ankur

    Hi Ankur,
    See my reply in your another thread Question about IPC for CRM 5.0
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Basic questions about programing for J9 VM

    I need to create a java application to run on a Pocket PC 2003 OS and I'm limited to using IBM's Websphere J9 Virtual Machine. I'm new to using java in this capacity and therefore have lots of questions which I'm guessing are pretty basic. Despite my best efforts, I've found very little to help me online. Below are a couple questions I have that I'm hoping someone can help me with. Even better, if you know of any resources that could help me with these and other questions, I'd love to have them. Thanks in advance.
    1. I'm using standard AWT for the GUI but I'm having problems getting frames, dialogs, etc., to come up in anything less then full screen. setSize() and resize() have no effect, even if I extend the frame and override the setMinimumSize, setPreferredSize, setMaximumSize methods. What do I need to do to get a child window to appear in something less than full screen?
    2. I'd like to be able to add menu's to the buttom toolbar (with the keyboard) but have no idea how I would add something to it. Can someone point me in the right direction?
    3. When my application gets an iconified event I go ahead and call a System.exit() to exit the application. This doesn't kill the java VM though, which continues to run in the background (taking up plenty of memory). If I run my application using the J9w.exe so that it runs without the console, then not only does the VM continue to run, but I have no way to stop it (the running program list can't see it). Since each time I run my application it starts a new VM, it only takes a couple of times before I'm out of memory and have to do a soft reset of the PDA to make things right. Can I kill the VM when I kill my application?
    4. I learn best by looking at example code, but have been unable to find any code people are running on J9. I have the GolfScoreTracker installed and running on my PDA, but the jar file contains only the classes. Since it's supposed to be a demo, I had hoped that the source code would be included, is that hoping too much or is the source code available somewhere? In addition, if you know of any applications out there with available source code that are known to run well on a PocketPC J9 environment I'd appreciate the link.

    Hi there, I saw your questions, im currently developing a java pocket pc application as well and here's what i go so far:
    AWT seem to be hard to use on pocket pc, instead i recommend that you use SWT, which is a technology developed by eclipse. It's already installed on the eclipse plugins, you just need to download the jar and dll files for the pocket pc. They are available at: http://www.eclipse.org/downloads/index.php
    I assume that you already have the J9 working on your device. So you only need to copy the SWT.jar file and the swt-win32-3064.dll to the folder containing the .class files on your device.
    Now, on your java IDE(im using eclipse) Add the SWT.jar library to your project which should be on C:/eclipse/plugins/org.eclipse.swt.win32_3.0.2/ws/win32/swt.jar or something like taht depending on your eclipse root.
    Now you are ready to code some SWT, here is a sample program from Carolyn MacLeod, i modified a few things so it could run on the pocket pc but it's almost the same. Once you coded in eclipse run it, then copy the class file from your desktop to your device(There should be like 4 or 5 classes like sample.class, sample$1.class etc. copy all of them) where you put the jar and dll files(If program does not run you may try to rename the dll file for swt-win32-3050.dll instead of 3064.dll). Now after you have everything set up you need to create the lnk file in order to run the program. On your desktop create a new textfile and write the following on it:
    255#"\Archivos de Programa\J9\PPRO10\bin\j9w.exe" "-jcl:PPRO10" "-cp" "\My
    Documents\Java\swt.jar" ;\My Documents\Java" sample
    Paths depend on your install, and the place where you put your classes and jar file. path for j9w is usually "\Program Files\J9\PPRO10\bin\j9w.exe", and the last word should be the classname.
    Currently this form only displays an image on a canvas, click on the browse button and choose a pic and it will display on the canvas. Im trying to connect the form to an oracle database but no success yet on the device.
    Hope it helps, if you have any questions about the code or something, and I know the answer, please feel free to ask.
    See ya
    import org.eclipse.swt.*;
    import org.eclipse.swt.widgets.*;
    import org.eclipse.swt.layout.*;
    import org.eclipse.swt.events.*;
    import org.eclipse.swt.graphics.*;
    public class sample {
    static Shell shell;
    static Display display;
    static Text dogName;
    static Text textdb;
    static Combo dogBreed;
    static Canvas dogPhoto;
    static Image dogImage;
    static List categories;
    static Text ownerName;
    static Text ownerPhone;
    static String[] FILTER_EXTS = {"*.jpg"};
    public static void main(String[] args) {
    display = new Display();
    shell = new Shell(display, SWT.RESIZE | SWT.CLOSE);
    Menu menu = new Menu(shell, SWT.BAR);
    shell.setText("Dog ShowS Entry");
    shell.setMenuBar(menu);
    GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns = 3;
    shell.setLayout(gridLayout);
    new Label(shell, SWT.NONE).setText("Dog's NameS:");
    dogName = new Text(shell, SWT.SINGLE | SWT.BORDER);
    GridData gridData = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
    gridData.horizontalSpan = 2;
    gridData.widthHint = 60;
    dogName.setLayoutData(gridData);
    new Label(shell, SWT.NONE).setText("Breed:");
    dogBreed = new Combo(shell, SWT.NONE);
    dogBreed.setItems(new String [] {"Collie", "Pitbull", "Poodle", "Scottie"});
    dogBreed.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
    Label label = new Label(shell, SWT.NONE);
    label.setText("Categories");
    label.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
    new Label(shell, SWT.NONE).setText("Photo:");
    dogPhoto = new Canvas(shell, SWT.BORDER);
    gridData = new GridData(GridData.FILL_BOTH);
    gridData.widthHint = 60;
    gridData.verticalSpan = 3;
    dogPhoto.setLayoutData(gridData);
    dogPhoto.addPaintListener(new PaintListener() {
    public void paintControl(final PaintEvent event) {
    if (dogImage != null) {
    event.gc.drawImage(dogImage, 0, 0);
    categories = new List(shell, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);
    categories.setItems(new String [] {
    "Best of Breed", "Prettiest Female", "Handsomest Male",
    "Best Dressed", "Fluffiest Ears", "Most Colors",
    "Best Performer", "Loudest Bark", "Best Behaved",
    "Prettiest Eyes", "Most Hair", "Longest Tail",
    "Cutest Trick"});
    gridData = new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_FILL);
    gridData.widthHint = 60;
    gridData.verticalSpan = 4;
    int listHeight = categories.getItemHeight() * 12;
    Rectangle trim = categories.computeTrim(0, 0, 0, listHeight);
    gridData.heightHint = trim.height;
    categories.setLayoutData(gridData);
    Button browse = new Button(shell, SWT.PUSH);
    browse.setText("BrowsePic");
    gridData = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
    gridData.widthHint = 60;
    browse.setLayoutData(gridData);
    browse.addSelectionListener(new SelectionAdapter() {
         public void widgetSelected(SelectionEvent event) {
              FileDialog dialog = new FileDialog(shell, SWT.OPEN);
              dialog.setFilterExtensions(new String[] {"*.*"});
              String fileName = dialog.open();
    if (fileName != null) {
    dogImage = new Image(display, fileName);
    shell.redraw();
    Button delete = new Button(shell, SWT.PUSH);
    delete.setText("No action");
    gridData = new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_BEGINNING);
    gridData.widthHint = 60;
    delete.setLayoutData(gridData);
    delete.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected(SelectionEvent event) {
    Button enter = new Button(shell, SWT.PUSH);
    enter.setText("No action");
    gridData = new GridData(GridData.HORIZONTAL_ALIGN_END);
    gridData.horizontalSpan = 3;
    enter.setLayoutData(gridData);
    enter.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected(SelectionEvent event) {
         shell.open();
         while (!shell.isDisposed()) {
              if (!display.readAndDispatch())
                   display.sleep();
         display.dispose();
    if (dogImage != null) {
    dogImage.dispose();
    }

  • Question about distinct_values for multiple fields

    Hi,
    With the distinct_values() function we can get the distinct value for a specified field, and is there any way to get the distinct value for multiple fields?
    Thanks!

    Hi simpson213,
    According to your description, you have some questions about your report design.
    1. How to have non-duplicating child info?
    In this scenario, since you don't want to hide the duplicate data, we suggest you filter the duplicated records on query level by using Distinct statement. If you want to do it on report level, you can group
    records on chid id and use First() function on other fields. 
    Reference: First Function (Report Builder and SSRS)
    2. How to  have various sections that contain fields with numerous values?
    We can also add these fileds into the child group of child and have them toggled by child id. 
    Reference: Add an Expand/Collapse Action to an Item (Report Builder and SSRS)
    3. How to add a page break between each child?
    Right click on the Row Group(child id)->Page Break->Select between each group instance.
    Reference: Add a Page Break (Report Builder and SSRS)
    4. How to select multiple child id when rendering report?
    When creating parameter, select Allow multiple values in General.
    Reference: Add, Change, or Delete a Report Parameter (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • 1GB sd card for Creative Muvo Sport C100 questi

    I want to get a GB sd card for a Creative Muvo Sport C00. I was thinking of getting it from amazon. Can anyone tell me
    )the name of ones that will works with the Creative Muvo Sport C00.
    2)the best one I should get (or should I just get the cheapest).
    Thanks

    It sounds like something got corrupted in the memory. I would reformat and transfer the music again. Won't take long ... 256MB with 50-ish tracks at USB2 speeds is quick.
    jake

  • Firmware for creative

    does anybody know where i can download the firmware for my zen? there is none for my model in the downloads section, and i get firmware problem when i turn it on, so need to reload it.

    steve349 wrote:
    does anybody know where i can download the firmware for my zen? there is none for my model in the downloads section, and i get firmware problem when i turn it on, so need to reload it.
    What [url="http://en.wikipedia.org/wiki/Creative_Zen#NOMAD_Jukebox_Zen_Series">Creative Zen[/url] model is it's

  • Problem finding firmware for Creative MuVo2

    Yes as the topic has said , im having problems finding the firmware for this mp3 player which i just bought a few months ago overseas. I was wondering if anyone has them can post em here or give me a link to it so i can download. I kinda accidentally delete it while fixing a problem but instead i created a bigger problem. For 2 days straight i've been surfing around the net just to find it but still no site that has the firmware for it Pls anyone out there , really need your help.. thanx.Message Edited by Ryzcvk on 03-3-2005 07:39 AM

    How about this?

  • Question about firmware on 7920

    Hi...
    Anyone who knows if the xml-ready firmware for the 7920 is already in his final release ?
    And, if yes, what's the version of CCM you should use ?

    HW release 2.0 ... I'm talking about the software release for the current 7920 ... or ... do we have to wait for a new HW-release and change all of our 7920's ????? I have 150 of them !

  • Basic questions about Mapviewer for OBIEE 11G

    Hello All..
    I am pretty rookie in OBIEE and I have never worked with Mapviewer before.. I am going some POC right now in my environment and I want to experiment map reports in OBIEE.. My current OBIEE version is 11.1.1.6.5, Oracle DB version is 11.2.0.3.0 64 bit and OS is Linux 86-64 and I see that there are many versions of mapviwers to download from oracle website.
    I have read a few articles on Mapviewer integration with OBIEE, but I still have a few questions about using mapviewers at the very basic level:
    1. What versions do I download from Oracle website? I see there are many versions of mapviewers. Do I decide the version based on my OBIEE version or DB version?
    2. What files do I download from Oracle website? I see there is mapviewer zip files and mapbuilder zip files. Which one do I download and how does installation works?
    3. My OBIEE 11G and DB are running on linux environment, but in the Mapviewer download page, I don't see Oracle differentiating the OS environments. Does that mean Mapviewer is only either Unix/Linux or Windows? How do I determine in which environment I should install the files I downloaded?
    I know these are very basic questions, perhaps too basic to blog about, that's why I can't find them online..
    Please advise here..
    Thanks

    Hello All..
    I am pretty rookie in OBIEE and I have never worked with Mapviewer before.. I am going some POC right now in my environment and I want to experiment map reports in OBIEE.. My current OBIEE version is 11.1.1.6.5, Oracle DB version is 11.2.0.3.0 64 bit and OS is Linux 86-64 and I see that there are many versions of mapviwers to download from oracle website.
    I have read a few articles on Mapviewer integration with OBIEE, but I still have a few questions about using mapviewers at the very basic level:
    1. What versions do I download from Oracle website? I see there are many versions of mapviewers. Do I decide the version based on my OBIEE version or DB version?
    2. What files do I download from Oracle website? I see there is mapviewer zip files and mapbuilder zip files. Which one do I download and how does installation works?
    3. My OBIEE 11G and DB are running on linux environment, but in the Mapviewer download page, I don't see Oracle differentiating the OS environments. Does that mean Mapviewer is only either Unix/Linux or Windows? How do I determine in which environment I should install the files I downloaded?
    I know these are very basic questions, perhaps too basic to blog about, that's why I can't find them online..
    Please advise here..
    Thanks

  • Older Firmware for Creative MP3 Play

    can one of the admins and moderators post where to obtain the older firmwares for their mp3 player lines. I'm one upset customer and the support is non existant to appauling.

    When firmwares are updated, all the older versions don't usually stay up on the website. Is there a particular reason you need an older version? What is wrong with the player, and did you contact Customer Support (your post wasn't clear if you were referring to Customer Support or "support" in general).
    Cat

  • Yet another question about burners for iDVD 6

    It's not my intention to be redundant and the question about which DVD burners are compatible with the most recent release of iDVD has been asked a few times since iLife '06 was released at MacWorld last week. Yet, though Apple has announced it, why have they not posted a list of compatible devices?
    Or, is the onus on the manufacturers to certify that their burners are compatible with iDVD 6?
    In either case, has anyone determined if this information is available and, if so, where?
    Thanks.

    Or, is the onus on the manufacturers to certify that their burners are compatible with iDVD 6?
    Check with the support sections of the manufacturer's websites - after all, THEY are the ones trying to sell burners.

  • Question for Creative: MuVo Micro N200 - AC adapter accessorie

    The MuVo Micro N200 is a great wearable audio player, and I am close to purchasing - BUT - there's one thing holding me back: There doesn't seem to be a way for me to use it as my regular jukebox at home, without having to connect it to a computer. What I'm looking for is a way to plug the MuVo to AC power so that I don't use the battery when at home. Is there such an accessory? Like a USB-to-AC charger cable? And while we're at it, why not a USB-to-DC cable, for the car?
    Thanks for any insights
    S

    I just got my n200 gb, and love it except the lag between getting it and getting the rechargeable batteries to go with it (Thanks Amazon...). If I was near a pc to power it through usb, I wouldn't need an mp3 player, and since I am always near a cigarette lighter in the car or a power outlet, I have decided to jury-rig a power adapter to fit where the battery normally goes (don't try this at home, kids...). A little radioshack love and the mod will save me on recharging time with the batteries (800mah does last a ridiculously long time in the thing, but why bother when I'm near other power anyway) and I will wait out creative's next gen flash player.

  • Questions about firmware & compatibility

    What's goin on guys,
    I have a iBook Blueberry 300 MHz PowerPC G3; 288 MB Memory; 3.1.2f4 bootRom; and i'm running Mac OS X 10.3.9.
    My first question is: Do I really even need to upgrade my firmware? I've read through about 25 pages of the forum so far, and I've seen it suggested more than a few times.
    My second question: I have tried relentlessly to watch streaming video on this Mac. It simply will not work. I downloaded the latest FlashPlayer, updated my Java settings, checked my internet connection speed, and it simply will not work. I'm beginning to think that 300 MHz just isn't a fast enough processor to handle streaming media. Is this true? Are there any updates (besides hardware upgrades) that I can try?

    Yes, this is correct.
    Unfortunately, almost all G3 machines studder with streaming video. Especially the older ones -- even the 466 Mhz iBook studders a good bit with video. The reason for this is that the processor can't keep up and process the information. That's the main reason I found when I was researching the topic!
    It's really not because of the graphics card, which many believe is the reason.
    Keep on enjoying your clamshell, Miles

  • Question about interface for recording electric guitar and vocals

    Ok, I've been messing around with Garageband all day, totally stoked and I'm ready to get into it. Right now I'm using a First Act quarter inch plug to USB cord to hook up my guitar and start recording and after some messing around I got it to work.
    Here's my question... to really make quality recordings, what's the best way to hook up the guitar? Is the way I'm doing it now fine with the USB cord or is some sort of interface better? Can someone recommend one that's on the cheap side? Also, I haven't tried yet, but what's the best way to record vocals? Should I invest in a USB mic? Can anyone recommend one? I have a Shure SM58 already, what's the best way to hook that up?
    Really excited about this, can't wait to start cranking out some songs!
    PS: When I use the USB cord, I don't see any way to control the recording level, and sometimes I get a Feedback control warning. How can I lower the level so I don't get that? Thanks!
    Message was edited by: xSlamx

    I have a total now of 4 interfaces - I recently purchased a FOCUSRITE SAPPHIRE 6 USB - it's amazing quality and I only paid $149 for it at my local Guitar Center. I use it with my Guitar and everything sounds fantastic - they say the preamps are really high-quality for Mics too... I recommend it. I have a firewire interface too but the Sapphire is my man baby now - don't let the USB 1.1 fool you - it works flawlessly with my Mac and my Windows 7 machine too. It also comes with a selection of software including Ableton Live Lite and 4 really nice Focusrite plug-ins too.

  • Firmware for Creative Zen 20 GB mp3 pla

    Hi,was wondering if anyone can help me,my mp3 zen 20gb?player after few years of use now starts up and says firmware problem after trying to rebuild library, i have got it into recovery mode,and downloaded the firmware from asia creative website, however when try to start the application, it asks what language,i have chose like 4 different languages,but everytime,nothing happens after click language,just goes off and back to desktop, when click alt cntrl delete,says program not responding,and i have to reset PC. Does anyone know where can get orignal firmware,or the new firmware that actually works for zen 20gb?cheers for help

    I AM COMMANDO :robothappy:Hi,was wondering if anyone can help me,my mp3 zen 20gb?player after few years of use now starts up and says firmware problem after trying to rebuild library, i have got it into recovery mode,and downloaded the firmware from asia creative website, however when try to start the application, it asks what language,i have chose like 4 different languages,but everytime,nothing happens after click language,just goes off and back to desktop, when click alt cntrl delete,says program not responding,and i have to reset PC. Does anyone know where can get orignal firmware,or the new firmware that actually works for zen 20gb?cheers for help

Maybe you are looking for