Need help with Digital mp3 player MX

Hey guys, when i try to switch on my digital mp3 player it displays a msg saying """"English font only... Download default.rom from cdrom... buildup L2P TABLE() Wrong ulLaddress.....""""
Then it shut down and when i try to connect to the USB cable my computer doesnt find it... so i cannot format the dri've or download the default.rom because i cannot access it from my computer...
Anybody has any suggestions?
Thanx.

Hello every one
I have Rhomba or actually an MX00.
After reseting/formating the player according to the instructions on sid4794. I spent my whole Saturday morning for this, I finally managed to revi've my device and I can use it. However when i turn it on I still get the message "English font only" - "download default.rom from the CD". I don't know where my CD is so I downloaded the latest firmware (.07.). Now when I run the file my computer I get a message "your player is not connected please connect your player" this although it is connected,!. I.E. I can transfer files to and from the recognized player but still I am asked to connect it. Therefor I cannot update the firmware. I tried disconnecting and the running the file, Reconnecting and then running the file etc. It just does not work!
Any Ideas on what should I do?
PS. before trouble started I could see files named in Hebrew not now?how can I get it back?
Happy new year!

Similar Messages

  • Hi i need help with my mp3 flash player

    Hi i need help with my mp3 player, i wan't to add pause button..can you help me?
    i created button i added btn_pause and it won't work.
    function soundStatus(){
              var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded() / _root.sound_mc.sound_obj.getBytesTotal();
              _root.loader.loadBar._width = amountLoaded * 260;
              duration = _root.sound_mc.sound_obj.duration;
              position = _root.sound_mc.sound_obj.position;
              _root.playHead._x = position / duration * 272 + 5;
    btn_play.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.songStarter(songfile[song_nr]);
    btn_pause.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.pause();
    btn_stop.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == songfile.length-1) ? _global.song_nr=0 : _global.song_nr++;
              _root.sound_mc.songStarter(songfile[song_nr]);
    btn_rev.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == 0) ? _global.song_nr=songfile.length-1 : _global.song_nr--;
              _root.sound_mc.songStarter(songfile[song_nr]);
    <moved by mod from as3 - kglad>


    function soundStatus(){
              var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded() / _root.sound_mc.sound_obj.getBytesTotal();
              _root.loader.loadBar._width = amountLoaded * 260;
              duration = _root.sound_mc.sound_obj.duration;
              position = _root.sound_mc.sound_obj.position;
              _root.playHead._x = position / duration * 272 + 5;
    btn_play.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.songStarter(songfile[song_nr]);
    btn_pause.onRelease = function() {
              clearInterval(timeInterval);  // you should re-set this interval when the unpause button is clicked
             // _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop()
    btn_unpause.onRelease=function(){
    this._parent.sound_mc.sound_obj.start(position/1000);
    btn_stop.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == songfile.length-1) ? _global.song_nr=0 : _global.song_nr++;
              _root.sound_mc.songStarter(songfile[song_nr]);
    btn_rev.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == 0) ? _global.song_nr=songfile.length-1 : _global.song_nr--;
              _root.sound_mc.songStarter(songfile[song_nr]);

  • Need help embedding a mp3 player swf with xml playlist

    Im a noob to Flash (started tuesday, haha) and so far everything is coming along just fine, but i need to put music in the swf. I have a button set up that slides a swf mp3 player in from the side but i dont know how to make the playlist work with it.
    The player is from this site:
    http://www.bezzmedia.com/swfspot/samples/flash8/Mp3_Player_with_XML_Playlist
    Using the xml playlist with html is simple enough, but im not sure how to use it with Flash Catalyst. Is there an easy way to do this?
    My original plan was to have a text list of the songs with a play button next to each one, then when you click on the play button it would set the state of any other songs to Stopped so you can just pick what song to play and if another song was playing it would stop. Im not sure how to do this either (like i said, i started learning this week), so i just tried embedding someone else's (ugly) mp3 player.
    Anyway, if anyone knows a relatively easy way to have a playlist in my swf please let me know. Thanks!

    If I understand you correctly, you've imported a SWF into Catalyst using Import Artwork on the File menu. When your app runs, you want to pass that swf a parameter that tells it what URL to read a data file from. The SWF is not one that you've created, rather, you got it from some web site.
    This is not something that you can do in Catalyst. However it should be possible to do in Flash Builder. I found an article discussing several ways to do it, at http://www.actionscript.org/forums/showthread.php3?t=175951. One idea is the following code snippet
    <fx:Script>
        <![CDATA[
        import flash.events.*;
        private function setVars(event):void
            event.target.content.yyyyyy = "zzzzzz";
        ]]>
    </fx:Script>
    <mx:Image source="xxxxx" complete="setVars(event)" />
    where "xxxxx" is the path of the SWF (you can put it somewhere in your Flash Builder project, or reference it via an URL), and yyyyy is the name of the parameter that the SWF expects, and zzzzzz is the path to the data file. The <Image> tag is what Catalyst created when you imported the SWF. (btw.the Image and SWFLoader tags are almost identical).
    I hope this gives you enough info to make progress.

  • Need help finding Ideal MP3 Player for my company to give as xmas gifts to our clients

    <SPAN class=postbody>The company I work for is planning on giving away 50 Mp3 players to large clients--primarily because we started our own podcast site with daily Metals Updates ( investment company). http://podcasts.gbtg.net/ I picked up 2 Creative Labs Nano players, and found the setup was lengthy, and far from foolproof--if you are not very careful, the Nano would fail to be able to play the wma podcasts you push in from your PC. Worse still, I can not find a way to easily show cleints how to do an auto synch type of function, so the they can just plug the Nano into their PC at night, and yank it out the next day with the newly updated podcast in it...it would also be nice to delete podcasts older than 3 days or so.... Tech support suggested I try the sniffer function, which of course I had already activated---there was no discussion of how to use this functionally for podcasts. Does anyone have suggestions in Mp3 players better suited for this purpose, or for better software than the Windows Media Player or the Creative Media software they provide? Thanks, Dan

    danvolker wrote:
    Thanks for the reply. The 2 units I picked up are Zen Nano's. While I understand they are supposed to function much like external hard dri'ves, and that is a simple matter to just drag files from the PC to the Nano "dri've", when I did that, the wma files ( the podcasts) would show in the Nano lcd, but they would not play. However, after installing all of the software ( both Creative with sniffer, and the Nano Explorer) the Nano player began magically playing the podcasts.... I had the same experience of two separate PC's, with 2 separate Nano's. I don't really know what specifically made the Nano's play the wma files--if it was the Nano Explorer , if there was some driver that loads when you get the Nano Explorer.... I don't think it was the larger Creative MediaSource software with sniffer---on one of the Nano's I purposely did not load the Nano Explorer initially, and when using the Creative Media source to push the files over, it still failed to play within the Nano. You could easily play the files from the nano, on the PC through windows media player--as if they were on a firewire or USB dri've. But the Nano needs to be able to play the files itself away from the computer. Maybe the nano explorer helped--maybe their was some auto loaded codec that finally arri'ved with the time online... I have no idea.
    That's strange. Are the WMA files licensed? If they are you have to copy them with MediaSource or Windows Media Player.
    Back to the media sniffer....What I need is relati'vely simple instructions I can send to my clients ( a largely novice computer user base, with essentially zero exposure to MP3 players...they are investors, not generation X'ers :-) The podcasting concept appeals to all of them, but I need to make it very simple to pull the MP3 player out of its Xmas box, plug it into the PC, and have it auto update. We can pre-configure each MP3 Player we send out--if there is a brand where this would help. With the Nano the hardware does not have any pre-config settings that will help. So I'm back to looking for a software ona CD that will install simply and make this auto podcast download a reasonable function for these clients to be able to handle. Making them choose folders, set the folders as a library, then set the deletion dates for old files, and the synchronization behavior in general is too much work for people who have never done any of this. Once they experience the podcasts for a few days or weeks, they will be incentivised to learn "advanced" configuration proceedures---but I don't want this to begin this way.
    Really all you have to do is enable the Media Sniffer, and if the files already go into the default directory then nothing else.
    Then you would also need to sync the player with the PC, which is essentially just following the syncing process.

  • Need help with adobe flash player 10.2 keeps crashing

    ok i am having a problem with the adobe flash player ten it keeps crashing on firefox ie8 and google chrome
    operating system is windows xp  32 bit
    really need help because this has been going on for 3 weeks straight  and i downloaded the adobe flash player from the adobe site
    i have uninstalled it 3 time and reinstalled it 3 time
                                                                                                                                                                  need help ASAP!!!!!!!!!!!!!!!!!

    Hello,
    Please try the following way:
    1.Open "Start", then in the "Start Search" bar input "regedit", then click "Enter"
    2.In the opened "Registry Editor", find the key "HKEY_LOCAL_MACHINE -> SOFTWARE -> Macromedia -> FlashPlayer -> SafeVersions" and delete it.
    3.Download the latest Flash Player from http://get.adobe.com/flashplayer/, and install it.
    Thanks

  • Need help! My mp3 player cannot be detected by my laptop as connect

    Hi friends,In my previous laptop, i have no problems sync-ing my Creative Zen V Plus to it. Then i have a new laptop and?installed all the Creative programs as i have previously done. Now that i connect my mp3 player to the new laptop, it wouldnt recognize it!My laptop makes sounds that confirm that a hardware was connected to it, but it wont recognize it. Creative Media explorer says that no device is connected. Not even my Windows media explorer would find my device connected. Help!Thanks a lot!

    Try:
    iOS: Device not recognized in iTunes for Windows

  • I need help with Adobe Flash Player, PLEASE!

    I have been on multiple site trying to play games or watch videos (e.g. YouTube) and keep getting an error message saying I have to install Adobe Flash Player in order to play/view.  I have done this multiple times and currently have Flash Player 11 ActiveX and Flash Player 11 Plugin.  What more do I need to do because it still won't let me watch the video or play the games!
    PLEASE HELP ME!
    Additional info:  I just wound up downloading Google Chrome (but don't like it) and don't have the same problem.  So, it's only happening  when I am trying to do all this on Internet Explorer 9.

    Flash Player Help | Installation problems | Flash Player | Windows
    Mylenium

  • Need help with installing Able Player in Dreamweaver

    Hi all,
    Brand new at this, so please forgive me....
    I follow all instructions on
    https://github.com/ableplayer/ableplayer/blob/master/README.md
    and all .js and .css files are showing up.
    Yet, the player is not loading.
    Help much appreciated.
    TIA, Troels
    The HTML:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Able Player Test #6</title>
    <link rel="stylesheet" href="tests.css" type="text/css">
    <!-- Dependencies -->
    <script src="thirdparty/modernizr.custom.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script src="/thirdparty/jquery.cookie.js"></script>
    <!-- Able Player CSS --> 
    <link rel="stylesheet" href="styles/ableplayer.css" type="text/css"/>
    <!-- Additional CSS for Playlist --> 
    <link rel="stylesheet" href="styles/ableplayer-playlist.css" type="text/css"/>
    <!-- Able Player JavaScript -->
    <script src="build/ableplayer.js"></script>
    </head>
    <body>
    <h1>Able Player Test #6:<br/>Audio player with Playlist</h1>
    <p>For additional tests see the <a href="index.html">Index of <em>Able Player</em> Examples</a>.</p>
    <!-- use the following markup for each media element -->
    <audio id="audio1" preload="auto" data-able-player>
      <!-- source elements are optional when there's a playlist. -->
      <!-- If ommitted, they will be constructed from the first playlist item -->
    </audio>
    <!-- use the following markup for each playlist -->
    <!-- an AblePlayer playlist is any <ul> with class="able-playlist" -->
    <!-- The value of data-player must match the id of the media element -->
    <!-- Add data-embedded to embed the playlist into the media player --> 
    <!-- see documentation for additional details about markup -->
    <ul class="able-playlist" data-player="audio1" data-embedded>
      <li
       data-mp3="../media/paulallen.mp3"
      data-ogg="../media/paulallen.ogg">The Paul Allen Song</li>
      <li
       data-mp3="../media/php70alpha.mp3"
      data-ogg="../media/php70alpha.ogg">PHP 7.0 Alpha</li>
      <li
       data-mp3="../media/frenchsong.mp3"
      data-ogg="../media/frenchsong.ogg" lang="fr">Une Chanson Française</li>
      <li
       data-mp3="../media/smallf.mp3"
      data-ogg="../media/smallf.ogg">Man With Small F (The Inaccessible PDF Song)</li>
      <li
       data-mp3="../media/everyday.mp3"
      data-ogg="../media/everyday.ogg">Every Day</li>
    </ul>
    </body>
    </html>

    Hi troelsoxenvad, looks like the player is failing to load the translation file, which includes all prompts, labels, and other text. That problem has been addressed in a recent Able Player update - try downloading the latest version: http://ableplayer.github.io/ableplayer
    Also it's failing to load your Ogg file. You might double-check that the path and filename is correct:
    Finally, Able Player is no longer dependent on JQuery-UI so you can remove that.

  • Need help with FireFox Adobe player

    On FireFox, I can't get a player window to appear. on
    Internet Explorer, the window appears, and plays perfectly, but not
    on FireFox. I'm using Ripway.com to host music files, and I put a
    link to the MP3 on a profile page on GaiaOnline... it loads a
    Windows Media Player onto the page itself to play on Internet
    Explorer, but the window remains white on FireFox... could someone
    help me?
    I believe I just need a program that will change the way
    FireFox handles MP3s... if so, redirect me to somewhere that I can
    get that. if not, please help me.
    this is the site... it loads a WMA box to play the music in
    IE, but not FireFox for me... just to clarify.
    http://www.gaiaonline.com/profile/index.php?view=profile.ShowProfile&item=6490692

    Where can I get help installing Adobe Flash Player

  • I Need help with Adobe Flash Player!  Ty.

    Hi.  I can't seem to download Adobe Flash Player or have my Java Script in here.  I had all this stuff in my old computer and when we bought this recently those items are missing.  Being that I am Conputer Illiterate, doesn't help me.  I have followed the instructions at best to my ability when reading the how toos.  If anyone is out there that could help me I would be forever grateful.  Thank you and Peace Out.  Annie.
    Please email me at [email protected] if you have some answers regarding my noted problem.  TY
    Message was edited by: evergreensab
    Message was edited by: evergreensab

    Hi eg, If you have Windows 7 the new one, then you have IE8 since it comes with it. We are only working on this one computer, right?
    First of all you must be the Administrator in order to Install Flash Player, are you? You need to use that account.
    Download this Flash Player Uninstaller to your Desktop:
    http://kb2.adobe.com/cps/141/tn_14157.html
    Download this Flash Player Installer for Internet Explorer to your Desktop:
    http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    Close all browsers, you only want to be looking at your Desktop. Check your system tray(the area by the clock) and disable any applications like messenger, etc. You don't want any applications there that use Flash.
    Run the Uninstaller and when it is finished, restart your computer. Wait until it is completely restarted, then restart it again. When it is completely restarted, then Run the Installer. When that is finished, restart Once.
    Then go to this site to test :http://www.adobe.com/software/flash/about/
    Thanks,
    eidnolb

  • I need help with new flash player constantly crashing

    Ever since updating the flash player it is constantly crashing. I have updated firefox also which constantly crashes. Firefox is pointing the finger at the flash player..... I need someone who will work with me step by step as i am not a computer tech. The two websites i visit that the flash player crashes on is www.myspace.com while playing mobsters and mafia wars, and www.smallworlds.com which is a 3d interactive " chat room ". I have tried removing the flash player and going with an older version, but it continues to kick me to the updated version...Please help!

    Hi, thanks for your Flash file info. You have the SWFlash.ocx that is old. Right click on that one and Remove/Delete it.
    Your SWF plug-in is correct as well as the remainder of your Flash files. The SWFlash.ocx that needs removed is conflicting.
    The Windows Firewall should be used. Now I see that you have not updated to the Windows XP Service Pack 3, which is the latest. I would recommend that you do that. Many improvements and security issues are included in that. You can go to the Microsoft site for that.
    After you do that, Microsoft has the Microsoft Security Essentials which is a free program and has the Anti-Virus and Anti-Spyware features. It does not include a Firewall nor are there any browser add ons that would conflict with your browser, other add ons or Flash Player.
    I'm not sure of the system requirements for the MSE, but check. You may need the updated Service Pack first. Before you Install the MSE tho, make sure no other anti-virus is still Installed. The one you mentioned needs Uninstalled and you need to check if they have an Uninstaller and do that first.
    Whether you do any of what I suggested or not, you need to Remove that SWFlash.ocx. I would reboot(restart) your computer afterwards.
    P.S. Firefox has updated to 3.6.8 and you can do that anytime.
    Thanks,
    eidnolb
    Message was edited by: eidnolb  add a P.S.

  • Need help with Digital Certificates when used with Adobe Acrobat

    Hi,
    I need some urgent help for one of my project. Any help or
    guidence would be very much appreciated...
    I am using Digital Certificates with Adobe Reader 6.0 and
    above and currently if I want to install the process it requires
    around 2 steps. Below are the steps.
    Once the install now button is clicked.
    Step 1. Click on set contract set.
    Step2. Click on first un check box, Adobe 7.0 or Adobe 6.0
    Step3. Click OK,
    Now the Question or issue is, I want to make the above
    mentioned steps 1 to step2 automated, once a user downloads this
    Digital certificate over the Web. Else if I can pre-select the 2
    steps for the ease of the user.
    Any help to get this automated would be much
    appreciated......Do let me know if anybody has any further
    questions...
    Pls help...and thanks for helping in advance..much
    appreciated...
    Cheers
    Ashish

    Hi Ashish,
    Since the title of your post refers to Adobe Acrobat, and the
    mention of RoboHelp is conspicuously absent, I suspect you are in
    the wrong forum. You probably need the Acrobat forum instead.
    Regards,
    Anne

  • Need help with Adobe Flash Player

    Youtube and several other websites can still identify that my flash player is up to date. Although, many websites including CNN, Aplia, and Southparkstudios do not recognize my flash player. I tried trouble shooting, reseting my axtiveX filter, updating my computers graphic card, ad enabling my flash player. I am currently using a windows 8 computer, but my flahs player does not work in the metro IE, desktop IE, chrome, or firefox. I recently installed Norton Antivirus, and I question if there is any possibility that it could of corrupted my flash player...but troubleshootig with Norton Antivirus was not successful either. So, I guess my question is how do I get my Flash Player to work sufficiently to my needs? I would really appreciate some advice on how to get my flash player to work on all websites.
    Thank you for your time
    - Jim

    Accrding to your post, you're dealing with three separate Flash Plugins.
    1. ActiveX - for IE, (embedded by Microsoft - can't be updated or repaired from any file here - functions independently of the other two plugins)
    2. Flash Player standard plugin - for Firefox (functions independently of the other two plugins)
    3. "PepperFlash" - for Chrome (embedded in the browser by Google - like ActiveX, it can't be updated or repaired from any file here. Like The others, it functions independently of the other two)
    Usually when something is causing the exact same problem with all three different plugins (two of which have been modified by second parties)... it's outside of the browsers.
    First, I'd recommend creating a new (admin) account and try installing/running the Flash Player under that account. If it works, then it's an issue with your account. If not, it's either in the OS or another app, like your Norton.

  • Need help with Digital Camcorder compatibility!

    I am looking to buy a digital video camera but I am not sure if they are "compatible" with my iMac. My friend just bought the JVC - Everio Digital Camcorder - Model: GZMG330HUS. It comes with Windows software and the manual has a brief mention of how to Backup-Up the video files onto the Mac but no mention of the video format being compatible with Mac. Anyway we tried plugging it into the Mac to see how it responded, and it did not, except that it saw it as a device that we could access the video files to copy then to the Mac hard drive. The Video files have an extendion .MOD and .MOI. Tried double clicking on the MOD (the video itself) and the Mac gave the message that no application exists to run it.
    I really want iMovie to recognize it so I can edit the video and make movies to sent to family.
    So, my question is whether any of you have tried this? Is there a solution to get this type of camera to be recognized by iMac? Are there other suggestions for compatible cameras in the $400 range (like this JVC is)?
    Thanks in advance.

    I had an issue with a JVC customer service rep that caused me to return a JVC camcorder that would not work with my iMac. I have since purchased the Panasonic PV-GS320 mini/dv camcorder.
    Fantastic video and absolutely no problems. Recognized through iMovie, iDVD and FCE HD 3.5 via firewire. How-ever, you will have to purchase a firewire cable as it is not supplied with the camcorder.
    Also in your price range, around $350.00.
    Hope this helps.

  • Need help with digital audio out on qip7232

    Have seen lots of posts about digital and optical outputs from the QIP 7232. I want to run a digital, stereo, 2 channel LPCM signal out to a stereo receiver. There are posts on this forum that say that both outputs are disabled by Verizin. There are other posts that suggest various settings that could be tried but none of these have been  confirmed to work. I have set the output to Stereo in the regular menu. I have set the output to LPCM in the hidden menu. Still, no audio output. I do have analogue output from the stereo left and right but want to get digital. Can anyone help ? Does anyone have either the digital or optical outputs working? Thank you Jim {Edited for privacy}

    toslink cable will also work with MBP.

Maybe you are looking for

  • Adobe application manager fails to update/install

    Please help me resolve this error and update App Manger properly. I have downloaded and am running Creative Cloud CS6 versions of Illustrator and Photoshop that I installed back in Decmember.  Now I'm trying to download more applications and am encou

  • Lose AE connected printer on MacBook when G4 goes to sleep

    I have a HP PSC750 connected to my AE, which I set-up on my G4 desktop. Everything works fine until the G4 goes to sleep. When it goes to sleep I lose the printer availability on my MacBook.

  • GL header field in IV

    Hallo to all, transaction MIRO or MIR7, realese 5.0, doase anyone know is there possibility to make manuale input to G/L field in IV header detail tab ( INVFO-HKONT - the field is updated from Vendor master record). In SPRO i didnt find any solution,

  • Apple Applications Crash After Time Machine Restore

    I recently had to do a full system restore using Time Machine. Ever since the restore completed, most of the Apple applications on my iMac immediately crash when I try to open them. Luckily, Disk Utility is one of the applications that does not crash

  • INVOICE LAYOUT

    Hello Friends,       Currently Im doing INVOICE(domestic and export) LAYOUT script. Please tell me how to capture and display header text fields in billing document(VFO3) and also tell me that table name and field names. Thanks in advance. MohanKumar