Simple mp3 player not working :( action script error

Hi Everyone!
I'm wondering if anyone can help with this problem:
I am currently designing a website and creating a simple mp3 player with an on / off function but doesn't appear to be working. I am getting this error:
1095: Syntax error: A string literal must be terminated before the line break.
1083: Syntax error: end of program is unexpected.
1084: Syntax error: expecting rightparen before end of program.
1084: Syntax error: expecting rightparen before end of program.
1084: Syntax error: expecting rightparen before end of program.
1084: Syntax error: expecting rightparen before end of program.
I have uploaded a zip file containing the images and FLA file. I'm wondering if someone wouldn't mind taking a look for me and telling me how to fix this problem:
http://www.c-recordz.co.uk/download/mp3_player.zip
Thanks
Davies

Hi Davies,
On line 19 don't break the line, Flash will do it for you... other aspect that I would recomend is to not put the '$' on the variables. In AS2 variables don't need to be declared as such (although it's a good policy), instead of the '$' put the 'var' word, as you already have in those variables.
Greetings
Leo

Similar Messages

  • Mp3 player not work

    My son got his mp3 player for christmas and has been very pleased with it. However it is now coming up with the words ' file system error ' on the display. I have tried to format it but it is just not being recognised on my computer. When I plug it into the usb hub it says it has found a high speed usb device plugged into a non hi speed system device so it has obviously found it but then when I go into windows explorer to try and format it , I get the message please insert a disc into dri've F. I have been onto your website and looked into uninstalling the drivers and then trying to install them again, I get as far as device manager but then am not sure which usb hub relates to the player , Any ideas ?

    Hi,
    Are you using the Creative Formatter program? The original TX did not support formatting directly from Windows Explorer and you need to use this program. Upgrading the firmware adds this support (for FAT 6/FAT 32) but I'd take this one step at a time and get the unit working using this utility first.
    John

  • Stop() does not work, action script from 2.0 to 3.0

    Hi everybody, some years ago I have created a website in Flash with Actionscript 2.0
    Now the customer want to change something in the text and I stumble upon the action script 2.0 has become 3.0
    This means that my stop() (I have kind of menu on the left that should display afterwards from frame 5-10 for instance)
    Now my swf works when I execute it locally but when online it just goes on and on ....
    anyone an idea ? I am getting crazy ...
    Thanks in advance !
    the site can be looked at www.kitwerken.be/index.php
    and the concerned part is "Over ons"

    I don't think the actionscript could have changed itself.  If you are using Flash CC then the problem is that Flash CC does not support AS2, so it took your file and changed it to AS3.  You will need to get your hands on an older version of Flash (CS6 or earlier) to edit the file and keep it as an AS2 file.

  • FM Radio in MP3 Player Not Work

    The FM Radio Autoscan function of my newly bought 256MB MuVo TX FM MP3 player does not seem to be functioning properly.
    During the st time I performed autoscanning, the player was only able to register a few radio channels. Channels like 93.3FM and 92.4FM were missing. Hence, I tried a second time. Again, some of the channels were missing after autoscanning was completed.
    I brought the MP3 player with me while I travelled on the bus and tried listening to the few channels and realised that the channels which I could receive on my player depended on the region the bus was in. At some places, all the preset channels were available for listening. At certain areas, only 2 preset channels could be heard.
    After I went back home, I decided to try my luck at the autoscanning again. This time, I was not able to get ANY channels registered on my player. I have tried umpteen times but to no avail.
    Are the radio and autoscan functions of my player faulty?

    fischeri,
    That is normal for auto-scanning. Auto scanning depend greatly on the reciption of the radio signal. If the signal is not strong enough, the auto scanning will not lock and register the station and will continue to scroll to the next strongest available signal. Can you manually lock the preset station?
    Jason

  • Mp3 player not working after being embedded

      Hello guys,
    I have a player for sound files (Fabricio Zuardi) which is very nice, easy to work with and easy to texturize.
    It works with a xml list.
      What I did was to load the swf file of the player into my main file of the website (also flash).
    The thing is that i can see the titles of the songs but the player won't work.
    Here's the as file.
      Can anybody give me a hint?
      I tghought it was a location problem at the beginning but i don't think it was. I tried all the possibilities.
       Thank you
    repeat_playlist = true;
    //playlist_size = 3;
    //player_title = "customizeable title test"
    //song_url = "media/Akropola.mp3";
    //song_title = "Imperial Teen - Ivanka";
    autoload=true
    autoplay=true
    playlist_url = "playlist.xml"
    //info_button_text = "Buy Album"
    //playlist_url = "http://hideout.com.br/shows/radio-test.xspf";
    //playlist_url = "http://cchits.ning.com/recent/xspf/?xn_auth=no";
    //radio_mode = true;
    stop();
    //constants
    DEFAULT_PLAYLIST_URL = "playlist.xml";
    DEFAULT_WELCOME_MSG = "Hideout XSPF Music Player - by Fabricio Zuardi";
    LOADING_PLAYLIST_MSG = "Loading Playlist...";
    DEFAULT_LOADED_PLAYLIST_MSG = "- click to start"
    DEFAULT_INFOBUTTON_TXT = "Track Info"
    //default playlist if none is passed through query string
    if(!playlist_url){
        if(!song_url){
            playlist_url = DEFAULT_PLAYLIST_URL;
        }else{
            single_music_playlist = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><playlist version=\"1\" xmlns = \"http://xspf.org/ns/0/\"><trackList>";
            single_music_playlist += "<track><location>"+song_url+"</location><annotation>"+song_title+"</annotation></track>"
            single_music_playlist += "</trackList></playlist>"
    //info button
    info_mc._visible=false;
    if(!info_button_text){
        info_button_text = DEFAULT_INFOBUTTON_TXT;
    //variables initialization
    playlist_array = [];
    track_index = 0;
    volume_level = 100;
    pause_position = 0;
    playlist_xml = new XML();
    playlist_xml.ignoreWhite = true;
    playlist_xml.onLoad = playlistLoaded;
    mysound = new Sound(this);
    playlist_listener = new Object();
    playlist_list.addEventListener("change", playlist_listener)
    //play_btn.onPress = playTrack;
    //functions
    //xml parser
    function playlistLoaded (success){
        if(success){
            var root_node = this.firstChild;
            for(var node = root_node.firstChild; node != null; node = node.nextSibling){
                if(node.nodeName == "title"){
                    playlist_title = node.firstChild.nodeValue;
                if(node.nodeName == "trackList"){
                    //tracks
                    var tracks_array = [];
                    for(var track_node = node.firstChild; track_node != null; track_node = track_node.nextSibling){
                        var track_obj = new Object()
                        //track attributes
                        for(var track_child = track_node.firstChild; track_child != null; track_child = track_child.nextSibling){
                            if(track_child.nodeName=="location"){
                                track_obj.location = track_child.firstChild.nodeValue
                            if(track_child.nodeName=="image"){
                                track_obj.image = track_child.firstChild.nodeValue
                            if(track_child.nodeName=="title"){
                                track_obj.title = track_child.firstChild.nodeValue
                            if(track_child.nodeName=="creator"){
                                track_obj.creator = track_child.firstChild.nodeValue
                            if(track_child.nodeName=="annotation"){
                                track_obj.annotation = track_child.firstChild.nodeValue
                            if(track_child.nodeName=="info"){
                                track_obj.info = track_child.firstChild.nodeValue
                        track_obj.label = (tracks_array.length+1) +". ";
                        if(track_obj.title) {
                            if(track_obj.creator) {
                                track_obj.label += track_obj.creator+' - ';
                            track_obj.label += track_obj.title;
                        } else {
                            track_obj.label += track_obj.annotation;
                        tracks_array.push(track_obj)
            playlist_array = tracks_array;
            if(!playlist_size) playlist_size = playlist_array.length;
            if(autoplay){
                loadTrack()
            }else{
                start_btn_mc.start_btn.onPress = loadTrack;
                track_display_mc.display_txt.text = playlist_title+" "+DEFAULT_LOADED_PLAYLIST_MSG;
                if(track_display_mc.display_txt._width>track_display_mc.mask_mc._width){
                    track_display_mc.onEnterFrame = scrollTitle;
                }else{
                    track_display_mc.onEnterFrame = null;
                    track_display_mc.display_txt._x = 0;
        }else{
            annotation_txt.text = "Error opening "+playlist_url;
    playlist_listener.change = function(eventObject){
      annotation_txt.text = playlist_list.selectedItem.annotation;
      location_txt.text = playlist_list.selectedItem.location;
    function loadTrack(){
        //Radio Mode feature by nosferathoo, more info in: https://sourceforge.net/tracker/index.php?func=detail&aid=1341940&group_id=128363&atid=711 474
        if (radio_mode && track_index==playlist_size-1) {
            playlist_url=playlist_array[track_index].location;
            for (i=0;i<playlist_mc.track_count;++i) {
                removeMovieClip(playlist_mc.tracks_mc["track_"+i+"_mc"]);
            playlist_mc.track_count=0;
            playlist_size=0;
            track_index=0;
            autoload=true;
            autoplay=true;
            loadPlaylist();
            return(0);
        start_btn_mc.start_btn._visible = false;
        track_display_mc.display_txt.text = playlist_array[track_index].label;
        if(track_display_mc.display_txt._width>track_display_mc.mask_mc._width){
            track_display_mc.onEnterFrame = scrollTitle;
        }else{
            track_display_mc.onEnterFrame = null;
            track_display_mc.display_txt._x = 0;
        mysound.loadSound(playlist_array[track_index].location,true);
        play_mc.gotoAndStop(2)
        //info button
        if(playlist_array[track_index].info!=undefined){
            info_mc._visible = true;
            info_mc.info_btn.onPress = function(){
                getURL(playlist_array[track_index].info,"_blank")
            info_mc.info_btn.onRollOver = function(){
                track_display_mc.display_txt.text = info_button_text;
            info_mc.info_btn.onRollOut = function(){
                track_display_mc.display_txt.text = playlist_array[track_index].label;
        }else{
            info_mc._visible = false;
        resizeUI();
        _root.onEnterFrame=function(){
            //HACK doesnt need to set the volume at every enterframe
            mysound.setVolume(this.volume_level)
            var load_percent = (mysound.getBytesLoaded()/mysound.getBytesTotal())*100
            track_display_mc.loader_mc.load_bar_mc._xscale = load_percent;
            if(mysound.getBytesLoaded()==mysound.getBytesTotal()){
                //_root.onEnterFrame = null;
    stop_btn.onRelease = stopTrack;
    play_mc.play_btn.onRelease = playTrack
    next_btn.onRelease = nextTrack
    prev_btn.onRelease = prevTrack
    mysound.onSoundComplete = nextTrack;
    volume_mc.volume_btn.onPress = volumeChange;
    volume_mc.volume_btn.onRelease = volume_mc.volume_btn.onReleaseOutside = function(){
        this._parent.onEnterFrame = null;
    function volumeChange(){
        this._parent.onEnterFrame = function(){
            var percent = (this._xmouse/this._width)*100
            if(percent>100)percent=100;
            if(percent<0)percent=0;
            this.volume_bar_mc._xscale = percent
            this._parent.volume_level = percent;
            mysound.setVolume(percent)
    function stopTrack() {
        mysound.stop();
        play_mc.gotoAndStop(1)
        mysound.stop();
        mysound.start();
        mysound.stop();
        _root.pause_position = 0;
    function playTrack() {
        if(play_mc._currentframe==1){ //play
            seekTrack(_root.pause_position)
            play_mc.gotoAndStop(2)
        }else if(play_mc._currentframe==2){
            _root.pause_position = mysound.position;
            mysound.stop();
            play_mc.gotoAndStop(1)
    function seekTrack(p_offset:Number){
        mysound.stop()
        mysound.start(int((p_offset)/1000),1)
    function nextTrack(){
        if(track_index<playlist_size-1){
            track_index ++;
            loadTrack();
        }else{
            if(repeat_playlist){
                last_track_index = track_index;
                track_index = 0;
                loadTrack()
    function prevTrack(){
        if(track_index>0){
            track_index --;
            loadTrack();
    function scrollTitle(){
        track_display_mc.display_txt._x -= 5;
        if (track_display_mc.display_txt._x+track_display_mc.display_txt._width<0){
            track_display_mc.display_txt._x = track_display_mc.mask_mc._width;
    /*function resizeUI(){
        bg_mc._width = Stage.width;
        track_display_mc.loader_mc._width = Stage.width - track_display_mc._x - 3;
        track_display_mc.mask_mc._width = track_display_mc.loader_mc._width - 26;
        if(track_display_mc.display_txt._width>track_display_mc.mask_mc._width){
            track_display_mc.onEnterFrame = scrollTitle;
        }else{
            track_display_mc.onEnterFrame = null;
            track_display_mc.display_txt._x = 0;
        if (info_mc._visible){
            info_mc._x = Stage.width - info_mc._width - 4;
        }else{
            info_mc._x = Stage.width - 4;
        volume_mc._x = info_mc._x - volume_mc._width - 2;
        start_btn_mc._xscale = Stage.width;
    function loadPlaylist(){
        track_display_mc.display_txt.text = LOADING_PLAYLIST_MSG;
        if(track_display_mc.display_txt._width>track_display_mc.mask_mc._width){
            track_display_mc.onEnterFrame = scrollTitle;
        }else{
            track_display_mc.onEnterFrame = null;
            track_display_mc.display_txt._x = 0;
        //playlist
        if(playlist_url){
            playlist_xml.load(playlist_url)
        }else{
        //single track
            playlist_xml.parseXML(single_music_playlist)
            playlist_xml.onLoad(true);
    //first click - load playlist
    start_btn_mc.start_btn.onPress = function(){
        autoplay = true;
        loadPlaylist();
    //main
    //Stage.scaleMode = "noScale"
    //Stage.align = "LT";
    //this.onResize = resizeUI;
    Stage.addListener(this);
    if(!player_title) player_title = DEFAULT_WELCOME_MSG;
    track_display_mc.display_txt.autoSize = "left";
    track_display_mc.display_txt.text = player_title;
    if(track_display_mc.display_txt._width>track_display_mc.mask_mc._width){
        track_display_mc.onEnterFrame = scrollTitle;
    }else{
        track_display_mc.onEnterFrame = null;
        track_display_mc.display_txt._x = 0;
    //start to play automatically if parameter autoplay is present
    if(autoplay){
        start_btn_mc.start_btn.onPress();
    } else if (autoload){
        loadPlaylist()
    //customized menu
    var my_cm:ContextMenu = new ContextMenu();
    my_cm.customItems.push(new ContextMenuItem("Stop", stopTrack));
    my_cm.customItems.push(new ContextMenuItem("Play!", playTrack));
    my_cm.customItems.push(new ContextMenuItem("Next", nextTrack));
    my_cm.customItems.push(new ContextMenuItem("Previous", prevTrack));
    my_cm.customItems.push(new ContextMenuItem("Download this song", function(){getURL(playlist_array[track_index].location)},true));
    my_cm.customItems.push(new ContextMenuItem("Add song to Webjay playlist", function(){getURL("http://webjay.org/poster?media="+escape(playlist_array[track_index].location))}));
    my_cm.customItems.push(new ContextMenuItem("About Hideout", function(){getURL("http://www.hideout.com.br")},true));
    //my_cm.customItems.push(new ContextMenuItem("Crossfade", function(){}));
    //my_cm.customItems.push(new ContextMenuItem("Mando Diao - Paralyzed", function(){}));
    my_cm.hideBuiltInItems();
    this.menu = my_cm;
    resizeUI();

    then it can be nothing else than the adobe security, since you load the url with full adress
    i know it might be a nooby question but when you changed your "local playback security", did you do hard refresh with f5?
    which version of flash are you using? because flash 8 didn't have the security settings to "local" and "network" only but also "both local and network", maybe the maker's player works because he exported it in one of the older versions of flash
    i think you may also try adding trusted domain  
    flash.system.Security.allowDomain ("your domain with songs on it")
    if you're having problems with it, there i found a hillarious monologue on some forums about it http://www.kirupa.com/forum/showthread.php?t=304748

  • Receive Action Script Error #2130

    My system is running Windows 8 and IE10. I have continuing problems installing and using Flash Player. I have read and reread the online procedures, checks, and solutions without much luck. Most recently after several failed attempts I was able to download the latest version of Flash Player for Windows 8 with Internet Explorer. My email account is with Outlook, which defaults to MSN.com when I sign out. When the MSN.com homepage appears I shortly receive an error message that says there is an Action Script Error #2130 and a list of affected files, including flash. I am unable to perform any other functions while this message is displayed. The message block gives me two options: Dismiss or Continue. The error message clears when I click either option, and the MSN.com homepage seems to operate normally. However, there are other issues with MSN.com which I have addressed to their support. Basically, if I click on a news headline in order to read the full article, the screen that appears is mis-formatted and unreadable. Ihave a screen capture of the error message noted above. I have tried the solutions suggested in Adobe Support, but they did not resolve the underlying issues. Please help, /hugh
    I noticed a related RE: discussion on the side of my question. When I went there I followed staff instructions to another person with similar problems. When I checked my installed version, I saw that it was the latest version for my system, but also saw debug at the bottom of the page. I then proceeded to uninstall Flash Player as staff instructions said to do. After I received the message that uninstall was successful, I again checked my installled version. It was the same as before including that it was the debug version. I repeated this action several times with the same result. Don't understand what this new problem is or how to proceed from this point.

    Thanks Pat - Sorry if I have been terse. This is not a good time for me as my Old Man [not my Father] is in failing health and requires a lot of care. Didn't need the added burden of two known problems in my computer system which no one seems to know the answer to. At least part of the problem with my email/MSN.com went away. At present I do not get an ActionScript Error #2130 when I sign out of my Outlook email account, which defaults to MSN.com. The other problem with MSN.com is still present, but so far I have not received any support from their techies, just several boilerplate messages.
    However, you are helping with my problem with Flash Player. I discovered it when trying to find the cause for the ActionScript error. I went to Adobe Support Center and began with the several guide sheets I found there. When I did the steps to find the installed] version, which by the way are contained on several different sheets, I found the version of FP installed was not the latest version. I am aware that as I have Windows 8 and IE10 changes should come down from Microsoft, so I was surprised. I tried Update Windows but there were no updates available other than an optional update to install Bing Desktop which I have installed several times, but it remains on the list as an optional update that has not been installed. As I have thought and said many times since I upgraded to Windows 8, it should have been more thoroughly debugged before they rushed it to the retail market. But that too is not an Adobe problem.
    I tried all the procedures and checks on all of the Adobe FP guide sheets I found on their support center website several times before to my surprise when I redid the steps to find the currently installed version the lastest version of FP: FP 11.7.700.169 was shown as the installed version. This was over a week ago and after I found Guide Sheet: Adobe Flash Player Support Center/Downloads at: http://www.adobe.com/support/flashplayer/downloads.html. In addition to providing a path to download the latest version of FP, it provides a list of critical updates and downloads to correct known problems in Flash Player. I downloaded every update I found that seemed to apply to my system. 
    I then checked to see if the Flash Player Action Script error message was now cleared. To my dismay it was not. Ever since I have been trying to correct that problem. It was not until after I posted this question here and you started to respond and discovered that although the latest version of FP is now installed - it is the DEBUG version, which you have told me I must uninstall and then install the standard version. That is where I learned that even though I am able to download the Adobe Flash Player Uninstaller and run it and get a message that the uninstall was successful, when I check using the Find Version procedure, I am told the latest version of FP is still installed and it is the DEBUG version.
    I have tried reinstalling the latest version, but this procedure does not work either. When I click to download Flash Player all I get is a blank Adobe box on the screen. It asks me to select a region. I select the US, There is a DOWNLOAD tab at the top which I also select. Then nothing happens. This tell me something is not working properly with this procedure.
    So I am stuck at a point where Adobe Find Version procedures tells me the latest DEBUG version of Flash Player for my system, FP11.7.700.169, is installed in my system and working properly,but I am told I must uninstall the DEBUG version and install the standard version of FP. However, the Adobe Flash Player Uninstaller does not work on my system and the Adobe Flash Player Installer does not work on my system.
    On the other hand as far as I have been able to determine Flash player is working properly as I am able to view videos on various websites, including MSN.com. And after deleting several Flash Player files I searched and found, the FP ActionScript Error #2130 has apparently stopping showing up when I am defaulted to MSN.com when I sign out of OUTlook email. I am so confused, irritated, and frustrated. I agree someone from Adobe Support should take a look at what I am reporting and determine if I have an Adobe Flash Player problem, and if so, FIX IT!
    Thanks again for taking the lead Pat, /hugh

  • Action Script Error Occurred?

    When I use the internet and my reply is on an Adobe system I get a box "Action Script Error Occured"  Throttle event could not be found.  Adobe Flash Player Error 1014.
    Does this indicate I am being hacked somehow?  What should I do?

    That means that either the site you visited has Actionscript problems, or that you have the Flash Player debug version installed.

  • Flash player not working ie10 windows 8 pro 32

    flash player not working ie10 windows 8
    Default web browser IE10 does not play flash in metro nor in desktop mode on up-to-date W8pro32 laptop
    error message "you have to install flash player"
    but
    I cannot (re-)install latest version of flash player
    error message "flash player is embedded in IE10"
    I have
    reset ie (in advanced options)
    turned windows feature ie off (unchecked box) , restarted pc, turned windows feature ie on (checked box), restarted pc
    ie10 as default web browser
    disabled acticex filtering (tools)
    enabled flash player (add-ons)
    enabled updates to compatibility view list
    Problem started after installing W8pro32 with IE10
    Flash plays fine using Firefox W8pro32
    Had no problems playing flash on this particular hardware using previous version of os and ie
    The macromed flash folder in windows/sytem32 on this PC contains files with exactly same name/size as on other W8pro32 laptop where IE10 plays fash plays without problem
    Have asked micsosoft support but not received a reply
    Please advise
    Thanks

    flash player not working ie10 windows 8
    Default web browser IE10 does not play flash in metro nor in desktop mode on up-to-date W8pro32 laptop
    error message "you have to install flash player"
    but
    I cannot (re-)install latest version of flash player
    error message "flash player is embedded in IE10"
    I have
    reset ie (in advanced options)
    turned windows feature ie off (unchecked box) , restarted pc, turned windows feature ie on (checked box), restarted pc
    ie10 as default web browser
    disabled acticex filtering (tools)
    enabled flash player (add-ons)
    enabled updates to compatibility view list
    Problem started after installing W8pro32 with IE10
    Flash plays fine using Firefox W8pro32
    Had no problems playing flash on this particular hardware using previous version of os and ie
    The macromed flash folder in windows/sytem32 on this PC contains files with exactly same name/size as on other W8pro32 laptop where IE10 plays fash plays without problem
    Have asked micsosoft support but not received a reply
    Please advise
    Thanks

  • Flash player not working, ie 9, 10

    whenever i wath the flash video streaming, flash player not working, break video streaming(internet explorer 9, 10 )
    I want to see the flash video without any ploblem
    can you tell me the way error patch method
    give me the e-mail  how to solve the method break video streaming

    Check this -
    http://helpx.adobe.com/flash-player/kb/install-flash-player-windows.html

  • Flash player not working.  can't watch video and can't upload pics to facebook

    flash player not working.  can't watch video and can't upload pics to facebook

    thanks for helping.  I have windows 7, internet explorer.  recently had to replace my hard drive, and compete reinstall of all software so still a few bugs on settings, ect.  not seeing any error messages.  video and uploading pics seemed to be fine until the last week.  not sure what could have changed .  I can still look at PDF ect, I'm not positive its the Adobe that is messed up, but the 2 things I'm having problems with, clicking on and watching video on espn.com and not uploading pics to Facebook, both just does nothing when I try them.  no errors, just black screen where its suppose to play or upload.  the trouble shooting for both sites say make sure to have the latest version of flash player, so thats why I assume something is wrong with Adobe.  when I do the self scan from this site it says I have the latest version.  my settings say the player is enabled

  • Constant action script errors

    Please help me it will be much appreciated if you do. I have been having numerous amounts of action script errors and its becoming a very tedious process to dismiss them everytime an ad changes.  Please help me fix this I am getting tired of this been happening for a long time. I have everything up to date, flash, skype, chrome, windows, ie, and anything else is fully up to date so I am not sure at ALL what is going on.  

    It's very possible that you are on the upgrade track for the Flash debugger.  Try the following: Uninstall the current version of flash you have installed:http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe
    Download and install the latest version of Adobe Flash for IE:https://admdownload.adobe.com/bin/live/flashplayer18ax_ha_install.exe 

  • The new version of Adobe Flash Player not working.

    The new version of Adobe Flash Player not working.
    She plants the clock to all videos , advertisements and links. I tried to uninstall and reinstall everything but the result remains unchanged. I am using Windows 8.1 and Mozilla Firefox. I need your help please .
    I'm sorry if i did errors of spelling because I used google translation. I 'm french .

    I finally figured it out. Flash Player had not installed. I had to de-activate Active-X thru the safety tab on the menu bar and then download the Adobe Flash Player and now it's working. I re-activated Active X after I finished installing Flash,. Hope fully everything will keep working fine!

  • Content Viewer Action Script Error

    After updating my apps to CC 2014 I get an action script error when trying to open Adobe Content Viewer.   Below is a copy of the error output:
    Error: EncryptedLocalStore internal error
      at flash.data::EncryptedLocalStore$/processErrorCode()
      at flash.data::EncryptedLocalStore$/getItem()
      at com.adobe.dmp.core.util::DeviceUtil/retrieveDeviceID()
      at com.adobe.dmp.core.util::DeviceUtil/getDeviceID()
      at com.adobe.dmp.viewer.command::ApplicationInitializationCommand/execute()
      at org.robotlegs.base::CommandMap/execute()
      at org.robotlegs.base::CommandMap/routeEventToCommand()
      at MethodInfo-9549()
      at flash.events::EventDispatcher/dispatchEventFunction()
      at flash.events::EventDispatcher/dispatchEvent()
      at org.robotlegs.base::ContextBase/dispatchEvent()
      at DesktopApplication/initializeUI()
      at MethodInfo-2301()
      at Function/http://adobe.com/AS3/2006/builtin::apply()
      at com.adobe.dmp.framework.util::FrameDelayedCall/onEnterFrame()

    Hi Eben.
    Always use a fully qualified domain name (FQDN): http://hostname.domain:portnumber/lms/mediator/config
    See note https://service.sap.com/sap/support/notes/1334956[1334956|https://service.sap.com/sap/support/notes/1334956] for details and explanation.
    Best regards,
    Aliaksandr Zhukau

  • What's up with the I-tunes radio player not working now for several days?

    Wha's up with the I-tunes radio player not working now for several days? error message reads "an error occurred occurred while contacting the radio tuning service. Check your internet connection or try again later" My internet connection is fine.

    Having same issue on Powerbook G4 running 10.5.8 I suspect Apple disconnected the service.

  • Does any one know of an MP3 player that works on Phones?

    I'm looking for an MP3 player that works on mobile phones, multi-track player that lists out the songs. I've been using widgets from places like reverb nation, sound cloud, but I can't get them those show up on mobile phones.
    Anyone have any suggestions?

    These are playlist players which use flash.
    To get these to work on iOS devices they need to fallback to HTML5.
    The problem is that HTML5 has not been developed enough and there is no cross browser standard.
    The JW player attempts to overcome this by using two different versions of the player skin - one for HTML5 and the other for flash.
    The one shown on this page uses flash with fallback to HTML5 but I have no idea if it works on the iPhone...
    http://www.iwebformusicians.com/Website-Music-Players/XML-Playlist.html
    A test version using HTML5 with fallback to flash works in Safari but not with Chrome or Firefox.

Maybe you are looking for