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

Similar Messages

  • 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

  • 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

  • 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

  • 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.

  • Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

    Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

    Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

  • Why does flash player not work with facebook?

    Why does flash player not work with fcebook?  Whenever I wish to view a video, I get the message that i need to upgrade my flash player. Then no matter how often I download and install flash player I still get the message that I need to upgrade my flash player.  When I go check which version I have, I always get the message that I have the most current one.  I run Mozilla Firefox with Windows.  I don't know anything else.
    Message was edited by: khettich

    This means you don't have the latest version installed.  Update to 11.9.900.117, and Firefox will allow it: Flash Player Plug-in (All other browsers)

  • HT5364 Adobe flash player not working on Safari after being installed, System OS X 10.9.2 has been just updated to Maverick

    Adobe flash player not working on Safari after being installed, System OS X 10.9.2 has been just updated to Maverick

        Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Click "Manage Website Settings"
        Highlight "Adobe Flash Player", "Allow" and then "Done".

  • Flash player not working on IE 10

    I am a blogger from the blog http://osbusters.blogspot.com/ . I am uable to view the flash videos on my blog due to flash player not working properly on Windows 8. It is not working on IE 10.

    See if anything in here helps http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8.html

  • Adobe Flash Player not working on any browser in computer

    I really need help flash player not working in any browser in google chrome. For example in http://www.twitch.tv/ You need Adobe Flash Player to watch this video.  Download it from Adobe. I already did everything to fix it shown in support page please help!!!!

    Same problem on the same website here, pls help
    -Hi, i think I've manage to solve the problem by following the instruction on the following page
    http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    remember to restart your browser after doing the steps

  • 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

  • Adobe Flash Player not working. Installen latest version. Get the following: "This website would like to run the following addon: Adobe Flash Player from Adobe System Incorporated." Then asking me to allow it for current or all websites. It doesn´t matter

    Adobe Flash Player not working. Installen latest version. Get the following: "This website would like to run the following addon: Adobe Flash Player from Adobe System Incorporated." Then asking me to allow it for current or all websites. It doesn´t matter how i do this. The pop-up question returns EVERY time. What do i do to solve this issue???

    To give you any useful advice, I'm going to need to know more about your computer and browser:
    https://forums.adobe.com/message/5249945#5249945

  • I can't get the mp3 player to work

    I can't get the mp3 player to work after I paid for it

    I keep getting a triangle with and exclamation mark no matter what I rename my mp3 file to. I put the mp3 file into my muse folder desktop, any hints?

  • Disabling Radio Button Conditionally is not working Well

    Hi friends,
    I have three radio buttons
    <li>self
    <li>New Hire
    <li>On Behalf of
    I will be showing this radio button conditionally according to the user who logs into the application.
    Assume, suppose if a person 'A' enters into the application means he will be shown only these radio button options ---NH---,----OB----,----Self-----
    Suppose, if a person 'B' enters into the application means he will be shown only these radio button options ----NH----,----Self---
    If a person 'C' enters into the application means he will be shown only these radio button options ---Self---
    I have restricted those radio buttons according to the users who enter into the application using their roles.
    But my challenge here is once the user logged in and if he select anyone of the radio button means,
    Example if he selects----NH---means, then ---OB----and -----Self---radio button has to disable and if he selects ---OB----means then ----NH-----and ---Self---has to
    disable(vice versa).
    I have also achieved the same using the DA.
    With true action as: javascript Expression i have given the following codings( i have written the below DA for three cases, if the request_class_code is equal to
    (NH,OB,S)
    var enabled=$v('P22_REQUEST_CLASS_CODE');
    if (!$u_SubString(enabled,'S')) $('#P22_REQUEST_CLASS_CODE_2').attr("disabled","disabled");
    if (!$u_SubString(enabled,'NH')) $('#P22_REQUEST_CLASS_CODE_0').attr("disabled","disabled");
    if (!$u_SubString(enabled,'OB')) $('#P22_REQUEST_CLASS_CODE_1').attr("disabled","disabled"); The above DA is working great only for the user who has the option of viewing three radio buttons in my form(i.e)(NH,OB,S).
    For the user who has the option of viewing two or one radio button, it is not working properly(i.e)(NH,S) or(OB,S) or(S).
    Why it is not working for the user with two options or with one option radio button means, the source of that radio button property is changing. Since i have taken
    the source of my radio button in my DA only when the three options are present.
    How i can solve this issue for the user who is having this two radio option or one radio option.
    Hope you understood clearly about the problem.
    Brgds,
    Mini

    Hi,
    If I did understand what you like have this might work
    var lVal = $v('P22_REQUEST_CLASS_CODE');
    $('#P22_REQUEST_CLASS_CODE input:not([value="' + lVal + '"])').attr("disabled","disabled");Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME

Maybe you are looking for

  • Error in transaction FB05 - Table T043G

    Dear Experts, I'm working on an SAP ECC 6.0 release and I'm trying to post an incoming payment from transaction FB05. As selecting the customer the system issues error: "Entry for Company XXXX not defined in table T043G" I have checked the table (rel

  • Audio/Video slightly out of sync after exporting media and trying to watch on iPhone

    Hey adobe tech heads So, I recently upgraded to the new Adobe Premiere Pro CC, from Premiere Pro and I have to say that there doesnt seem to be any difference to the normal functionalites. While I am merely a beginner, i suppose there are more comple

  • Problem in passing xstring data from abap to webservice method.

    Hi, I want to upload the document from ABAP to Microsoft SharePoint. So for that i have created the webservice in .net for uploading the document in SharePoint. Now in Abap i have consumed this service by creating proxy class. The web service has one

  • QUICKTIME WONT START

    I have a problem where quicktime just wont load at all. its installed, it should be working, but for some reason, when i try to start the aplication, nothing happens. no error message, no freezing, nothing happens at all. i look in the task manager,

  • Login Options: Name and Password?

    I have login options set to display "Name and Password" but at login I am presented with a list of Users...  I see an icon for each user account.   Am I missing something? Regards John