Aggregator project doesn't play content well

Good morning,
I created eight separate projects which I combined into an aggregator project called "Video Tutorials".  I published the aggregator project into a zip file so that I can send it to our IT department.  They downloaded the zip file and uploaded the main link ("Video Tutorials.swf") onto our website.  All eight videos play but all visual elements such as buttons, captions, don't appear.  I only see the video I captured and hear the audio.
What could be the issue?
Many thanks in advance for your help.
Vincent

The IT department uploaded all files and linked the HTML and not SWF and it still doesn't play right. 
I also noticed that there is a "loading" symbol in the middle of each page (see screenshot below).
We also tried to link a PDF.  It does load, but because the file is "large" (only 60 MB), it doesn't show the entire screen (see second screenshots). 
What should we try?

Similar Messages

  • Aggregator suddenly doesn't play all of the projects after updates

    I finished an aggregator project, checked it, etc.  It was working fine.  Then I downloaded some Adobe updates (Flash, Shockwave, Flash Player and Captivate 5), next thing I know, people are telling me that the project no longer works.  I open it up, test it, and the files from the 3rd on won't start.  They can be accessed from the Table of Contents, but they don't play. The playbar either doesn't move, or jumps back after a second. Nothing was changed in the files, I checked for pauses, Preferences options, nothing is set to pause/restrict playback.  Also, the 3rd file's skin shows options that were unchecked.  You can't move the playbar or skip ahead, but you can go back or forward to the other "frozen" files using the TOC.
    Another wierd thing is that sometimes when I reopen the browser, it starts from the 1st frozen file and the TOC doesn't work at all.  The swfs play fine when tested individually.  I ended up having to make separate .exe files and linking them.  Problem with this is that we need the htmls and when they are programed to open another project at the end, the original project doesn't close.  Because of the nature of our work, we need one file to move on to the other without creating clutter of multiple browser windows open.
    If anyone has encountered this, I would really appreciate some help. I have checked/changed internet settings, trusted site settings, system restored to before the updates, but nothing.  I even had a co-worker republish the files from his non-updated computer and it still doesn't work.

    You said you updated Flash player.  What major and minor version number did you update to?
    Were these projects originally created in Captivate 5 or an earlier version (e.g. Cp4)?
    When the files don't play at all, what do you see?  Is it a black screen?

  • Video clips in iPhone 4s doesn't play well

    Recently the video clips including video camera and any clips in Facebook in my iPhone 4s doesn't play well. Has anyone experienced this before? Any ideas to solve it?

    Basics from the User Guide are restart, reset, restore from backup, restore as new device.  If you've tried ALL of those steps and you're still having problems, you'll need to bring your phone into Apple for evaluation.

  • Stop Auto Play in Aggregator project (CP5)

    I've got a collection of software demos that I thought would be useful to bring together in an Aggregator project. Having done this, when I launch the project, the movies in my TOC automatically run, one after the other.
    I set my individual projects not to Auto Play in the Start End Settings, but this hasn't made a difference.
    Ideally, I want the first movie to auto play, then let the user select which of the others they want to view.
    I'm assuming I'm missing something basic here, but I can't suss it out
    Mark
    P.S. My first swf in the project does not get displayed in the preview window either

    Deselect Allow all other plug-ins  in Safari > Preferences > Security

  • Youtube video doesn't play on captivate project online

    Hi there, I need help, I have 4 equal projects made on Captivate 8 for mac, the difference between them is the video from youtube they should play. When from my computer I run the links online the videos play OK, but from different computers one of the videos doesn't play, I already checked and changed the links for the youtube widget, but still no result. Any Idea or suggestion? Thx in advance!

    You should use Flash debug version. When you do, you will se a security error:
    SecurityError: Error #2148: SWF file http://clienttestsite.x10.mx/beta/swfs/managers.swf cannot access local resource C:\Users\Demetrius McClain\Desktop\Value Insight\chevrolet\video.f4v. Only local-with-filesystem and trusted local SWF files may access local resources.
        at flash.net::NetStream/play()
        at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_play()
        at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_setUpStream()
        at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_load()
        at fl.video::VideoPlayer/load()
        at fl.video::FLVPlayback/doContentPathConnect()
    Obviously, you hardcoded video path to your local machine. Change that.

  • Playing mp3 stream works well in Emulator but doesn't play on Device

    I'm facing this problem. I'm using flex && actionscript to play an mp3 stream on the phone.
    Code works great and the sound is played when the app is run in the flash builder emulator.
    However, when i deploy my app on a mobile device (tried several Android phones) everything is good except the stream doesn't play!
    Can you please help me??
    Here's my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView"
                        creationComplete="view1_creationCompleteHandler(event)"
                        >
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  import flash.net.*;
                                  import flash.media.*;
                                  private  var req:URLRequest;
                                  private  var context:SoundLoaderContext = new SoundLoaderContext(8000, true);
                                  private   var s:Sound;
                                  private  var channel:SoundChannel = new SoundChannel();
                                  private  function AudioOn():void
                                            req = new URLRequest("http://stream2.srr.ro:8000/;stream.mp3");
                                            s = new Sound(req,context);
                                            channel=s.play();
                                  protected function view1_creationCompleteHandler(event:FlexEvent):void
                                            AudioOn();
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
    </s:View>

    Okay.. First a big thanks!!
    I've resolved the path issues and am now experimenting with formats other than SCORM that will hopefully launch off our LMS (SyberWorks).
    I think I know what a cross domain issue is... it seems pretty self evident, (ie) .htm/.swf files live on a different server domain than video or audio files.
    I think all my files are on the same domain in the zip file. However, are the following paths also an example of a cross domain issue?:
    Z:\orgs\ogslp\courses\2012videotest\videotestinternalsrvr\videotestinternalsrvr.htm
    (this is where I upload, or publish Captivate files)
    http://gslcampus/ogslp/courses/2012videotest/videotestinternalsrvr/videotestinternalsrvr.h tm
    (this is where clients access the training modules via IE & the Syberworks LMS, intranet)
    One more..... when publishing with the Captivate > Internal Server option what path do I input to access the server?
    Z:\orgs\ogslp\courses\2012videotest\videotestinternalsrvr\videotestinternalsrvr.htm
    (backdoor for uploading files)
    or
    http://gslcampus/ogslp/courses/2012videotest/videotestinternalsrvr/videotestinternalsrvr.h tm
    (actual internal, intranet url for accessing courses)
    PS when I upload files the following appears before the Z:
    Computer > SyberWorks (\\sousa)(Z:)
    Any advice would be appreciated - thanks for your time.
    wjf

  • Audio from itunes doesn't play well in imovie HD 6

    I have quicktime 7.1 and imovie HD 6 and my audio from itunes plays only for a few seconds and goes out and doesn't play anymore throughout the movie. I'm only using photos and no transitions at the moment. It worked completely fine before upgrading to ilife 06. What am I doing wrong?
    Thanks
    Tia 22
    G4   Mac OS X (10.4.7)  

    Hello Tia,
    iMovie has quite an issue with Music Store files. See Karl Petersens post: Stutter in iMovie 5 & 6 — causes and workarounds
    http://discussions.apple.com/thread.jspa?threadID=534252&tstart=0
    What you are looking for is workaround No. 5: Burn iTunes Songs to Audio CD
    Generally it is recommended to work with AIFF files in iMovie/iDVD. To convert your iTunes music go to Preferences > Importing and choose AIFF Encoder from the drop-down menu. Now all music will be imported as AIFF. In addition to that you can ctrl-click existing files and choose "Convert to AIFF" from the pop-up menu.
    Note that this will duplicate the files, so after conversion you'll have for example one m4p and one AIFF with the same name.
    hope this helps
    mish

  • Error when Posting a Captivate 5 Aggregator Project on Web Server

    I created a 3 module aggregator project with a preloader jpg file using Captivate 5 and published as both a zip and html file.  When I play the html on my local machine, it plays fine.  But, when I have one of the web developers upload the zip files to the server she says that she gets a flash player error when she tries to test it. I've used the aggregator in Captivate 4 with no problems (when using AS2) so I'm not sure what could be causing this error.  Does anyone have any ideas?

    Hi Marion,
    I asked her to try again and here's what she said she did:
    I unzip the online library folder, double click the onlinelibrary.swf file(the  standard.js file is in the same folder), got the popup window as  follows
    After  I click ok, it play the movie. Then I upload the file to server, but it does not  work(frozen the server). So can you remake it again as the rest of all video  works just fine. BTW, I use flash player 9.
    Apparently, she tried it first on her machine which has flash player 9 and then only uploaded the single .swf file to the server.  I was told by another developer that she needs to add the standard.js code to the html file.  It appears she doesn't want to do this so I have to compile all the .cptx files into one. So, it looks like you were right about her testing locally, but she's also not uploading the files correctly on the server.
    Judy

  • IDVD problem burning and multiplexing - gets stuck but ejects the DVD and the DVD doesn't play

    I am having trouble burning DVDs.  Everything seems to be working fine during the iDVD project creation.  I can watch the movie and select scenes within iDVD.  Then, when I go to burn the DVD, it gets stuck at the burning/multiplexing stage - the wheel just keeps spinning and says there is about a minute left.  Yet it ejects the DVD and the DVD won't play when inserted into a DVD player.  It will show the intro and the scene selection pages but when you click on one of the scenes, it gets stuck and doesn't play.  I have already uninstalled and reinstalled iDVD.  The problem persists.  It seems like the burner itself is the problem.  What can I do to fix it?  I have Mac OS X Version 10.6.8 with a 2.8 GHzintel Core 2 Duo and iDVD version 7.0.4.

    Hi
    Multiplexing error is a very complex problem due to many things (long long list following) - one common but not obvious reason is that material on the iDVD menu goes outside the TV-Safe area (or just touching it).
    So first - turn on TV-Safe area and move any object well inside of this.
    Wide screen stretched - usually (as I think) it is due to making a 4x3 movie in a 16x9 wide-screen project OR the other way around. This forces one to on flat-screen TV (or other) set the presenting view right - My has 4x3, wide-screen, zoom and auto-wide-screen and I have to switch this by my remote for some DVD I've made "wrong" way.
    Now my long long list on Multiplex Error
    LONG LONG LONG LIST
    Multiplexing Error
    PART One.
    Use of strange video/audio material e.g. .avi, .wmv, .mp3 etc.
    I only use.
    Video - StreamingDV (miniDV tape via FireWire) and
    Audio - .aiff (as on audio-CDs) (else converted to this .aiff 48KHz)
    Photo - .jpg (.bmp known problematic)
    Chapters !
    A.    Using strange letters in video project name e.g. +,/; etc. keep to a-z and 0-9 strange letters in project name e.g. +
    as described by Donnyboy69.  Does the title of your project have any symbols or decimal points in it. If so, that is why you are getting the error. I had a project that had a + sign which caused the same problem. I renamed it without the symbol and low and behold, it worked.
    B.    Location of Chapters
    • Can’t be at start or end of movie (Skip first/start one - iDVD sets this by it self. At the End - no need)
    • Not in a transition (or within 2-3 seconds from it)
    Important when from iMovie HD6 or previous - Now also observed when using FCE 4
    PART Two.
    from Robert Modero.
    "Multiplexing Error. Problem during initialization of tracks"
    Simply remember to add subtitles to your Quicktime files and menu buttons.
    Once I did that, I was back in business.
    from Boise Jim
    Do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    I always makes a DiskImage first and test this so that it runs OK
    I use only - Verbatim DVDs
    I use only - DVD-R
    I burn at an as slow speed possibly e.g. x1
    This gives good DVDs
    PART Three.
    Multiplex Error
    Chuck, Chicago 2/7/2009.
    Back again. Here is what I have found to work. I also have and use a LaCie DVD-R/RW DL external drive and a LaCie external hard drive as well. Since yesterday I have tried a few ways to burn a themed iDVD project having four 56 minute movies on it, amounting to 226 minutes onto a DVD DL disc, capacity 240 minutes. Apple tech support really didn't know what to do but gave me a very good tip. I had two options left. Apple tech support's tip was to try disc image. One of the replies on a thread with this subject said not to, but my experience today is good. Put your project onto "Burn to disc image," under "iDVD, file." Yesterday encoding took me 23 1/2 hours. Overnight for iDVD disc image, encoding took 21 1/2 hours (again) while I slept. This morning I tried to copy/burn disc image to a DVD with Roxio Toast 7, and it stopped near the end of the burn with some kind of "error" message. So then I tried Utilities> Disc Utility> Burn icon, and followed it through. Be sure to click the DVD DL drive in the window "Burn disc in.". I had one other problem though. At the end of a 46 minute copy, it started to verify, and at the end of verify it rejected the burn. So I tried again, and when "verify" appeared, I clicked on "Skip." The disc finished burning and is doing fine and well. A long and tortuous process, but at last something works. I made several additional copies using Disc Utility. Best wishes. Chuck, Chicago.
    2. Disconnect any other external devices not absolutely needed.
    e.g. external USB/USB2 hard disks, other FW hard disks etc.
    3 Chapter marks in transitions - minimum 2 sec from
    FROM Bev.
    (Not a 'guy' but I will answer!)
    First, I do not think that mixing wide-screen and standard makes a difference in iDVD.
    Second, you should use a better brand of DVD disk. Also, many of us have experienced fewer problems on playback with DVD-R disks. Recommended brands here are Verbatim, Maxell and Taiyo Yuden. Memorex and TDK are not consistent and may not give you a correct burn. They apparently have fewer layers in the composition of the disk. I have always used Verbatim DVD-R disks and have not had any burn problems.
    Also, choose a slower burn speed, 4x or less.
    Third, to determine if the iDVD project will burn properly, create a disk image file (from within iDVD, go File->Save as Disk Image) and test it. Mount the disk image and then open DVD Player (in Applications) and view your project. If it plays correctly, you can then burn the actual DVD disk from the disk image file using Disk Utility.
    From. Boise, Idaho
    I did everything I've seen suggested, but a friend (who used to be an Apple Genius) suggested that I do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    It worked, and I got a clean burn from iDVD.
    Hopefully this can help other people.
    by dheb0422
    Well, I finally got it, and it was odd enough to post here incase anyone looks this topic up again. Many things were tried, including burning the unedited film, the edited film without titles and chapter markers, abbreviating the chapter markers in case length was the issue (remember the old iMovie used to truncate them when moving to iDVD?). In the process, I noticed that one, and only one, chapter marker was on the same line as the title marker. All the others were on the line above. The only way I seemed able to change that was to clip a few seconds of film. After that last clip, the offending marker took a place on the line above, as were all the others. That run published, compiled completely and burned. That's one for the books.
    One user more writes
    To add my experience with Multiplex Errors using iDVD (7.0.4), I recently created two iDVD projects
    Video from both passed from FCE 4.01 with chapters
    One project worked fine in creating disk image file
    The other gave Multiplex Errors
    I tried suggestions to remove special characters and no chapter marks at beginning, but nothing worked
    Note that I've used iDVD for dozens of projects and this is first time I've run into Multiplex Errors
    Anyway, for problem project, I tried an experiment where I removed all chapters in FCE and passed to new iDVD project
    This time multiplex errors gone
    So had something to do with chapters
    So now I tried numerous experiments to remove individual chapters and try again creating disk image with new iDVD project
    After numerous tries, I was able to narrow problem down to 1 "Bad" chapter mark
    That is, when I left the "bad" chapter in my FCE project and passed to iDVD, iDVD gave multiplex error
    When I removed "bad" chapter mark (and others in), no multiplex error
    As a final experiment, I moved "bad" chapter mark about 5-10 sec's beyond original point and passed to iDVD, the multiplex errors now magically went away and I was able to finally create my disk image.
    I have no idea why this worked, but thought I'd mention here in case someone else runs into similar problem.
    Rich839
    In addition to Bengt's fine advice, burning errors can occur if you have located any of your menu buttons wholly or partly outside of the safe TV viewing area. Go to your main project menu, then click on View/Show TV Safe Area, to check. Drag into the safe viewing area any buttons that are outside the safe viewing area.
    Russ One - suggest this
    Multiplex Error-There was an error during muxing preparation
    One thing that worked for me was to export the video w/o chapter markers as a self contained movie (thereby not loosing the edits & etc). Then make a new FCE project and import that movie into a new sequence and add the chapter markers. I've used "-", "&" and "," with no problem in the chapter names. Removing the markers or exporting without them did solve the problem but renaming them with just numbers 1,2,3....5, did not solve the problem and since this problem seems to happen with with iMovie as well, it would suggest the problem is in the video or audio and in combination with the chapter markers iDVD just can't handle it. The only other possibility is that both iMovie and FCE share the same or similar chapter marker code that some how is corrupting the markers.
    Summary - What to try
    1. Chapters
    • Only A to Z and 0 to 9 in chapter title
    • No Chapter mark at very beginning of movie
    • No Chapter mark in or within 2 seconds from any transition in movie
    2. TV-safe area for buttons (no one outside this)
    3. Safe re-boot
    4. No other external devices connected - that are not needed
    SDMacuser adds to this
    • On #4 ... No ext. devices. Some think this applies mainly to ext. FW. Not the case. Also applies to ext. USB2 as well (not to mention flash drives too).
    Do not leave 3rd party devices / camera / camcorder plugged in unless it is being used with iDvd's One Step process. Certain web cams can trigger this also (especially ones with added features like LED light/s that draw additional power from the FW or USB bus).
    5. Minimum of 25Gb free space on Start-up hard disk
    6. Make a DiskImage first - reduces where problem originates
    7. Trash iDVD pref. file
    8. Make a new iDVD project
    9. Movies in project with same aspect ratio e.g. 4x3 or 16x9
    10. No other programs/applications running during iDVD process. e.g. Internet, screen & energy savers
    Yours Bengt W

  • Doesn't play in WinDVD

    Well, I got Encore DVD 2 in the Adobe Production Studio Suite; and I've gotta say I'm loving the whole package!
    Now my problem is, I have burned 25 copies of a project and they play fine in all software DVD players except WinDVD.
    In WinDVD, there is no video and the audio plays at about 2x speed with lots of cutouts. This does not occur in PowerDVD.
    Does anybody know what the problem is? So far, when people have experienced this issue, I just downloaded VLC for them as that plays the disc fine. Still, its rather frustrating that it doesn't play on anybody's computer who's using WinDVD.
    Has somebody come across this before, is there a fix?
    Any help would be greatly appreciated! :)

    Several messages turn up when searching for windvd... one of them may help... search link at
    http://www.adobeforums.com/cgi-bin/webx?126@@.1de98ec0

  • Links and displayed language in navigation and Aggregator Projects

    Hi,
    maybe someone can help me here. I am currently struggling with several questions and these are two of them:
    1. Language of navigation bar and TOC:
    I have installed Captivate 4 in German. Still my target group is international so the language in the navigation bar and TOC should be at least English. Unfortunately for the projects I have created so far that is not the case. If I go to one of the navigation buttons, the description like play or rewind will be displayed in German. The same happens in the TOC of my aggregator project. The header is shown in German stating 'Folientitel' instead of 'slide title' or 'Lesezeichen' instead of 'bookmark'. I have translated all the contents of the projects and the names of the modules in the TOC. With the rest that is left I am a bit lost.
    My notebooks system language is English. So I am wondering what I can do to adapt these headers and descriptions. Can anybody help me to change the languge here? That would be great.
    2. Linking in an aggregator project:
    I have created several modules that I put together in an aggregator project. The idea behind it was to support the learners with a consistent overview of content and to make the navigation easier. Now I have realised that whenever I use links between different projects within this aggregator project (e.g. for skipping a module without using the TOC, but just pressing 'next' as a learner or 'skip') the aggregator project is left and the TOC disappears, because the link seems to lead out of the aggregator project file to the single swf- or htm-file of the project. Any idea how I can 'jump' without leaving the aggregator project?
    Also once the learner went through one of the modules and went to the next one, the back-button of the navigation bar does not lead back to the modul before. Seems like it stops at the first slight of the current module. How can I adapt the functionality of this automated navigation bar? I mean, can I do this?
    Thanks a lot for your help,
    Sanne

    Can I just try to give some ideas about you first question (languages)? About the TOC: in the Captivate blog a while ago you can find hints to change the headings in the TOC to whatever language you want. I copy the link here:
    http://blogs.adobe.com/captivate/2009/02/changing_default_captions_in_t.html
    Myself I'm creating quite a lot of courses in Dutch, English and French. Just a tip: when I do not have enough time I use Adobe Presenter as a shell to insert the CP-movie(s). This results also in a SWF when publishing, but the TOC in Presenter gets automatically the language of the installed OS on the user's PC. That makes it a lot easier: I also have Spanish-speaking students, do not speak Spanish myself but they can at least have the Spanish titles on the TOC of Presenter.
    Your second question: there is quite a lot of posts about it on the forum, I could not help you further. 
    Lilybiri

  • My purchaised movies doesn't playing

    I purchaised tree movies. Two of them doesn't playing. I see only black screen and no sound. But one movie (first I purchised) playing well.

    Hello Taras99,
    If you are getting inconsistent playback of movies purchased from iTunes, then take a look at the article below to check the settings on your computer to ensure that nothing is causing an issue. You may also want to delete the movie that is giving you trouble and download it again. 
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/en-us/HT203205
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/en-us/HT5772
    Download past purchases
    http://support.apple.com/en-us/ht2519
    Regards,
    -Norm G. 

  • .SWF doesn't play in website

    Hi, I am using Flash 5. I  need to save my flash .swf to play on a website. I went into Publish settings and selected Flash player 9 and Actionscript 3. I then exported the .swf and .html.
    Animation Doesn’t Play
    I then placed the .swf in Dreamweaver using Dreamweavers .swf plugin. When I previewed the page in my browser the sound played but the animation didn’t. What a I missing?
    Animation Play Button
    Also, can someone please tell me the best way to have my .swf not play until the user clicks’ play. Is there a setting to get a start arrow like a Quicktime mov.? or do I need to set it up myself?
    Thanks

    Does the html page that Flash publushed work okay?  USe the codee from that file if it does,  DW is not a reliable source for embedding Flash content.
    You will need to build in your own controls to have something clickable that plays the file.

  • Firefox doesn't play embedded swf

    I've looked on many forums, including Firefox, with no real answer. Running Firefox 4. It just doesn't play embedded SWF. My Adobe Flashplayer is up to date, so is the plugin. The page displays properly. But the area that should be displaying a movie is just represented by a tiny square. No error message appears. The same page doesn't show the movie in IE9 either.
    Now from looking at the page information, it just requires Flashplayer 6 and above for the SWF area. I do have Flashplayer 10. The plugin says Shockwave Flash player 10 is up to date. Many other pages with different types of embedded movies play properly.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Also check that you aren't blocking cookies.
    *https://support.mozilla.org/kb/Cookies
    *http://kb.mozillazine.org/Cookies
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Note that a reset imports cookies, so isn't really suited if cookie issues are a possible cause, unless you clear the cookies.

  • Itunes doesn't play songs, help me please

    hi guys, i'm an italian boy. my itunes doesn't play any songs that i have; when i click on one song the little blue loudspeaker appears but the song doesn't start. this problem began to exist when i downloaded the latest version of itunes (6.0.5, i think) so i have decided to unistall the latest version and to re-install the old 4.0 version, but the problem persist. maybe i've unistalled some of the pc's programs that were necessary to make itunes operative, but i don't remember which. please help me!!! contact me at [email protected], and sorry for my english...:-)

    the same thing is happening to me as well since I upgraded to the latest version of iTunes. My sound beeps now in everything, from email notifications, to music. But iTunes won't play any songs that I select. Hope to get some feedback.

Maybe you are looking for

  • Mail bounces a few times but won't open, other apps work.

    OK, I searched the forums and can't find an answer related to this for mail (found it for itunes, safari, etc). I am sure this is a mundane thing but to my computer simple mind, I am stuck. My husband ran a Safari update. Since then the mail icon bou

  • I am getting errors with my logout transaction

    Here is the error message I recieve: Warning: Cannot modify header information - headers already sent by (output started at /home/content/c/r/o/crossroads2/html/music/user.php:3) in /home/content/c/r/o/crossroads2/html/includes/tng/tNG_logoutTransact

  • IPhoto - sharing pics with other - nonApple software programs, and....

    I'm a new Mac user. I spent hours importing 20,000 + photo into iPhoto. These were imported by opening iPhoto, and doing a drag/drop from external hard drive. These files appear to be saved to 2 locations - File>Reveal in Finder> modified or Reveal i

  • Code erreur -36 lors de la copie de fichiers

    Je viens d'acquérir un MacBook Air sous OS X Lion. J'ai également 2 DD externes avec l'ensemble de mes sauvegardes. Je souhaite donc maintenant les utiliser avec mon nouveau MBA mais également avec Windows pour échanger des photos par exemple avec me

  • Partitioning FXO port for different users on Cisco CME 2911or UC540

    Hello, we have 10 users in our network and we have 4 FXO port and lines connected to them, we would like to implement this requirement on our network below; 2 users will have access to FXO port 1 3 users will have access to FXO port 2 3 users will ha