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

Similar Messages

  • Satellite L870-165 does not work after being repaired by their service

    Laptop Toshiba warranty does not work after being repaired by their service twice.
    Model: Satellite L870-165
    Computer will not boot, stays with black screen stating: No bootable device-Please restart your system
    After reboot still happening the same.
    I called Toshiba phone incident and after trying several options I said take him to repair the service.
    They first told me it was the hard drive, then phoned me to indicate that reinstalling and finally it was the motherboard, which supposedly changed. The day after being picked computer repair returned to give exactly the same error, only malfunctioned one evening.
    After another call to 902 the Toshiba warranty service, I went back to take the service, this time I changed the hard drive. When I got home the computer did not start even once, again gives the same error.
    I believe that this team comes with a factory default so that its solution is not easy because even the technical service told me that I did not know what else to do with it.

    >Computer will not boot, stays with black screen stating: No bootable device-Please restart your system
    This message pops up because the notebook cannot find the Windows system.
    There could be either an problem with the HDD or maybe the HDD is OK but the Windows system isnt preinstalled properly.
    You said that the service agent changed the HDD. But did someone install the Windows system?
    You can try to do it yourself take your recovery disk (hopefully you created such disk in the past) and boot from the recovery disk in order to install the system.
    In case booting from the Disk would not be possible, go to BIOS (F2) and disable the secure boot and change from UEFI to CSM mode

  • Flash Player not working after downloading new version

    I downloaded Flash Player 10 and it does not work.I am using Windows XP and Internet Explorer. I have tried the trouble shooting. I have made sure its enabled under Active X and it does not work at all now. I have tried to download Flash Player 9 and now that will not download. I regularly use site that require Flash and I am shut down until I can figure out what is wrong. Please help.

    I have the same issue after I was prompted yesterday to upgrade my Flash player. With the new version, 2/3 of Flash pages do not work. But 1/3 do work !
    Example of page that does not work with new version of Flash :
    http://www.youtube.com/  (the whole site)
    http://www.adobe.com/fr/products/flashplayer/  (Adobe's official Flash page !)
    Example of page that does work with new version of Flash :
    http://www.voleursdechevaux.be/page_flash.html
    On first glance, I would say that Flash loaded through JavaScript fails. Only Flash embedded through HTML works. But I am not competent enough to discover why.
    Here is my current configuration (the version test at http://kb2.adobe.com/cps/155/tn_15507.html works well) :
    Player Version : WIN 10.0.22.87
    Debug Player : no
    Operating System : Vista
    Browser : Internet Explorer 8
    Locale : French

  • 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

  • Flash Player not working after updating to 10.2 - Plz help - my research project is on hold now

    I updated my flash to latest version.. Everything gone.. Flash is completly not working now. I cannout see any youtube videos or any flash websites.
    I tried all the way possible to troubleshoot it. But failed. Still not working.
    My OS - Windows 7 - 32bit
    IE - 9 (latested) 32bit
    Flash Vesrion - 10.2 (Latest)
    I tried all the ways mentioned in this case: http://forums.adobe.com/message/3145974
    I have even removed teh compatible flag - such that to remove kill-bit, Still dint work.
    I see that eventhough i install in my IE manage addons i dont find any flash player or shock player to enable or to disable. .its completly not there.. Its very strange.
    I am using kasperky Pure. I could not figure out is there any option in kaspersky pure to disable ads block/popup.?
    Please help. I am not able to understand what is the problem.
    I have even noted some times automatically the flsh sites and youtube gets working after some reboot. But if i reboot again same problem.
    I have tried installing and uninstalling several times. Even rebooted. But nothing works.
    Please not i am not gettting any flash player addon options in my IE but i get the add on option in my Firefox which shows enabled. But still I have a doubt - what exact name of add on would be in FF. even in google chromes its not working. It says it has inbuilt Flash player.
    Please help me to rectify it. My research project is getting pending with this issue. Please help me to rectify it as soon as possible. Please.

    I am using Windows 7 - 32 bit. and the IE - 32bit.
    I have tried all the uninstalling and installing procedure. But it did not work for me.
    In my first post I had told that i was not getting any Addon in my IE. then i figured out when i click show all add-ons, then i see a shock player addon in my IE of the lastest verion 10.2. So please negelct that fact . I have an addon too in my IE 9
    But nothing works.
    When I go to the link you have provided. : http://www.adobe.com/software/flash/about/
    Please note: (all the below browsers are very latest versions)
    In chrome - See nothing (place is white)
    In IE 9 -  See nothing (place is white)
    FF -  See nothing (place is white)
    when i right click on that place i get only 2 options:
    1. Movie not loaded....
    2. About Adobe Plash Player 10.2.152.26...
    Even when i open the youtube. the video portions are blank. n when i right click on it shows the above same 2 options.
    Kill-bit - when i checked it, i had a Compatible flag - but its values where all zeros. Still i deleted it. (So i do not think that was an issue)
    These are the files I have in my - C:/Windows/System32/Macromed/Flash/
    Flash10m.ocx
    5.9 MB
    2/14/11 6:59:34 PM
    FlashInstall.log
    3.7 kB
    2/14/11 6:59:39 PM
    flashplayer.xpt
    856 B
    2/14/11 4:46:06 PM
    FlashUtil10m_ActiveX.dll
    304 kB
    2/14/11 6:59:35 PM
    FlashUtil10m_ActiveX.exe
    229 kB
    2/14/11 6:59:34 PM
    FlashUtil10m_Plugin.exe
    229 kB
    2/14/11 4:46:06 PM
    NPSWF32.dll
    5.8 MB
    2/14/11 4:46:06 PM
    I am using Kaspersky Pure.
    I have even checked everthing is fine in my Internet options- Security tab
    1. Internet -
    Security level for this zone - Medium-high (Custom level - Scripting=enabled)
    2. Local Intranet -
    Security level for this zone - Medium-low (Custom level - Scripting=enabled)
    3. Trusted sites -
    Security level for this zone - Medium (Custom level - Scripting=enabled)
    Furthere - Uninstall programme shows as follows : (Kindly have a look)
    Further - My knowledge - I do not have any adblock or adblock plus. I only suspect if Kaspersky Pure, if it has an option to block it. (I am not aware of it).
    Further - In my Chrome Plugin i see like this : I have a doubt here- Why i have 2 shockwave flash versions?
    I even tried disabling them one at each time alternatively and tried if youtube works - still same problem.
    I am suspecting might be quick time could have generated this problem. i had recently updated the quicktime. But when i checked in the help forum I got to know that quick time can cause problem, so i completly uninstalled it now. I do not have quick time in my system - but still the probelm was same.
    Please help.

  • Flash player not working after upgrade

    I recently upgarded flash player on my mac os 10.6.8. Safari 5.1.10 After the upgrade videos will not play. Is there a way to get older versions of flash player?

    Flash Player 12 works just fine with Snow Leopard. I have it on my server machine. No problems at all in Safari, Opera, Firefox.
    Give it a "clean install" to make sure you've gotten the old plug-ins out and that the new ones are "allowed" by Safari.
    How to perform a "clean install" of Flash Player in Mac OS X

  • 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

  • Adone flash player not working after upgrade

    I have Windows Vista, but using IE 8, 32 bit, I was keep on getting upgrade pop ups, got sick of it and upgrade to new version 11, since than flash player is not working. In youtube, just black screen.
    I unistall through adobe website.
    restart
    close all all browsers.
    install again, no luck.
    Active X is enable in IE.
    internet options, security level is Medium.
    In manage add ons, shockwave flash object is there and enable, shockwave Activex is there and enable, Java plug ins are enable.
    remove Firefox, and tried all steps
    C:\windows\system  remove flash folder
    Start, Explore, remove flash folder from Adobe and Macromdedia
    delete, restart, install, no luck
    delete, restart, install 10.3
    no luck
    also I save adobe flash player 11 and 10.3 on desktop and run from there.
    (One thing I did notice that I open IE 32 bit to install, when I try to unistall from adobe site for 32 bit, it tells me to use 64 bit unistall, when I use 64 bit, it will unistall the adobe player, but if I check IE 64 bit, there is no shockwave flash object and shockwave ActiveX control, but they do exit under IE 32 bit after installing)
    Who is the genious, who can guide me in the right direction. I am missing one step, somewhere.
    At this point I do not care about flash player 11, I just want flash player to work, even 10.3.
    also CPU P8400 @ 2.27GHZ, do I need better processor to run 11?
    ram 4gb

    Vista is 64 bit, IE is 32 and 64, uptil now, I was using 32 bit.
    Last night I tried to download flahplayer for 64bit flash player from your link in the FAQ, since it will add flashplayer for both 32 and 64bit, also did not work, any advise will be appreciated.

  • 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

  • Flash Player not working after CS3 install

    I just bought a new iMac and Adobe CS3 web premium software yesterday. I installed on the new iMac, then installed the software on my 1.5 year old MacBook Pro. On the laptop everything seems to be working fine, except the Flash player won't work when browsing on Safari or Firefox. I tried numerous downloads and installs in every way possible, but still not working. Is this because the MacBook Pro is running 10.4.11 and the Flash Player may have been built for 10.5? Please advise how to get Flash working in the browsers again. Thanks!

    Seems a common problem...
    http://blog.psyrendust.com/2007/12/14/adobe-flash-player-plug-in-installer-gives -error-on-mac-os-x-error-creating-file-10085-5000-access-denied-error/
    http://support.dataviz.com/support.srch?docid=13157

  • Flash player not working after updates

    My streaming videos stop working after the latest updates
    there is no Flash player on the device.

    If you had Flash Player before the update, you should be able to reinstall it from Google Play.  Go to the Play Store and look under My Apps, then All and it should be there ... update it.  There are several threads about this on this forum if you want to do a search.

  • Flash player not working after doing the update

    I got an update on facebook saying that I needed to update my flash player. so I did, and now it keep saying that I need to update when It already shows that it is the updated version. now I cannot do anything that involves using flash, no facebook or online games or utube. please anyone if you can help me figure this out.

    Recently, my games on Facebook and Youtube stopped working and prompted me to upgrade my flash player.
    It included the link to Adobe, as do all the sites that require it.
    So, I did. It says install successful, but it is not.
    I use Safari on a Mac 10.5.8.
    The flash player is still working on FireFox.
    I tried many things so far and it is still down on Safari.
    I tried upgrading from the internet.
    I tried rebooting a flash player from my Creative Suite 4... that actually told me my disc 2 was blank during install!
    I uninstalled flash player and reinstalled many times. No go.
    I uninstalled my Flash program and nearly lost it!!
    It would not reinstall from my CS4 discs.
    A friend helped me and I am pretty sure the Flash maker is up again. I see the icons are back in place in the applications folder, but i did not try running it yet.
    He thought the flash player was working again when he returned my computer, but it is still not working in Safari.
    I tried downloading and reinstalling the flash player again from Adobe, yes..the correct version for Intel based Mac.
    He ran first aid repair a few times.
    There was a lot of things that got fixed.
    I am in need of more help.
    anyone figure this out?
    please!

  • IPod is not working after being formatted and restored.

    This isn't the first time this has happened to my iPod classic. In a span of about 5 months, I've visited the Genius Bar, and one has been replaced under warranty. Now, the newly replaced one has suffered the same things that the old iPod has experienced. One day, as I was syncing new music, iTunes suddenly froze and had to abort the sync, making me eject the iPod without the sync completing. So, iTunes deleted all of my data (music, photos, videos, etc.). Now, each time I plugged in my iPod following that, iTunes had always frozen, and did not let me access the Devices tab and restore my iPod. Then, having a PC, I formatted it to its default settings, seeing that my computer recognized the iPod and iTunes did not. A pop-up box came up saying if I wanted to fix the problem on the iPod, and I prompted to do so. It completed, and it said my iPod was fully functional. Soon after, it was recognized by iTunes again, and said that it had corrupted files and needed to be restored, seeing that the iPod was under the Devices tab once again. I did so, the restoration was completed, and iTunes said that once after the iPod restarted, it would appear once again under the Devices tab. But, however, it did not appear, after leaving it plugged in for about 5 minutes. iTunes froze again, and now the process begins all over again.
    I have fully updated my iTunes, and I am using an HP Pavillion Notebook, under Windows 7.
    I need help. I don't want to go back to make a reservation at the Genius Bar since the iPod is no longer under warranty, and perhaps I can fix it on my own. Will they  be able to fix it under no charge? What should I do?

    Also, if I eject it from the folder where all Devices are on my computer, the iPod restarts, and the restoration process on iTunes starts all over again.

  • Flash Player not working after installing update 11.6.602.171

    Running Windows 7, IE8.  Tried all of the "fixes" recommended on adobe's site - nothing worked.  Flash Player is installed on computer, but when try to play video, it says it is not installed.  Tried unistalling and reinstalling and all of the recommendations on this site.  Please help!!

    I have the same problem. Since I installed the newest version I cannot watch embedded videos any more. I checked especially for youtube videos. When they are embedded, I only get sound, but no picture/film to go with it, BUT when I go to youtube, I can watch the video just fine.
    Same for videos from internet sites of tv channels. I like to watch my favourite TV series online when I have time and since one and a half week: I can't.
    I have
    Flash Player 11.6.602.171
    Operating system: Windows 7 (64 bit) 
    Browser: Internet Explorer 9.0
    I already tried everything from these sites:
    http://helpx.adobe.com/content/help/de/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header_7
    What happens:
    When I go to this site for example:
    http://rtl2now.rtl2.de/berlin-tag-nacht/berlin-tag-nacht-folge-373.php?container_id=117093 &player=1&season=3
    After some time I can hear that the advertisment started, but I just see a black screen...
    Any ideas??

  • Flash player not working after new update

    After the new update, I 'm unable to play the flash video on few sites such as PBS Frontiine which used to work fine an hour bedfore update and I was always able to see such video since I got my N900, 4 month ago. it asks to install flash player. I own 2 Nokia N900 and have not updated one of my uniits. the unit with old SW, the flash video works as always and properly. I 've reinstalled the new update and same problem. Have a friend who also expeiencing same issue after update. Hesitant to update my other N900 the works properly.
    Is there a patch for te flash player or is this is a flaw?
    Does anyone know if there is possibility of being able to reload previous SW?

    you can go back to the older firmware but i think you have to flash it tho

Maybe you are looking for