Just upgraded to SL, Can't get imail to work.? (newbie) Please help!!

I keep getting this message. Can someone please help me out. I am totally clueless!!
*ERROR MESSAGE:*
_"You can't use this version of the application Mail with this version of Mac OS X.You have Mail 3.6."_

It works now!
Here is what I did...
In spotlight I typed "mail", I opened up a "message", and it opened. I looked on my desktop and there was an "iMail" icon that was not there before. I was then able to access the mail normally as i would with Leopard. I deleted the old shortcut on my desktop and placed the new icon in the lower toolbar.
Worked as good as new..

Similar Messages

  • After resetting my Airport Extreme, I can't get it to work! Please help!

    Hey everyone!
    I have an airport extreme base station (wireless n-gigabit ethernet) and awhile ago it stopped working on me. I simply reset my aebs and whenever I open airport utility and try and configure my aebs, it tells me I have an error and can't connect to the aebs. I have comcast internet service and my aebs is connected to my router. It's been working successfully for about a couple months and now it's stopped working. : (
    I've tried this both in manual setup and the regular setup. I've gone through the trouble of doing a hard reset (pressing the reset button until it flashes amber), I've unplugged the power while holding the reset button, connecting my laptop with the aebs via ethernet, making sure everything is updated (and it is), resetting the router, and even reinstalled my airport utility disk.
    Please help! Any suggestions would be greatly appreciated!

    I also tried setting up my aebs on my neighbor's internet and it worked like a charm! Setting up aebs was as easy as when it first worked. Now if only I can get it to work on my internet...

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Can't get PayPal to work. Please help.

    First I go to iTunes Store => My Account Info => Edit Payment Options => Click Paypal Bubble => Then Continue, and prompts me to a paypal site where I have "have successfully created a Billing Agreement."
    Than when I click "Continue to iTunes Store" it does absolutely nothing. Is there anyway I can pay purchases with paypal?
    Or is there even a way I can get a digital gift certificate thats not done through iTunes as that would produce the same issue? Thank you.

    Yet another user having same problem. Can't set up PayPal payment in the web version of the store. In Windows desktop iTunes version of my account view, there is the PayPal choice, but when I pick it I am directed to my BROWSER, where I "successfully" link to PayPal, and then I am directed back to the BROWSER version of the Apple store, where...I cannot pay with PayPal. And back in the desktop version of iTunes, my account information is the same as before...NOT set up for PayPal. Hopeless?

  • Complex rollover - I can't get this to work. Please help!

    I tired this tutorial several times over:
    http://www.layersmagazine.com/flash-button-animation.html
    I realize this is AS2. I tried it in using that as well as AS3 (I'm TOTALLY new to this).
    Here's the fla file I ended up with:
    http://aaronpenton.net/fla.html
    When I preview the movie, it's empty.
    Firstly - can anyone help me as to why?
    Secondly, how can/should I achieve this with AS3? I just want to be able to mouse over and have the text shift right and an image appear to the left, as in the tut.
    ANy help greatly appreciated.
    Thank you.

    First, you need to have something on the stage in order for something to appear in your file when you play it.  So when you open the file, drag an instance of the completed button movieclip onto the stage.
    Next, in your button movieclip, on the layer you named hit area, you can see in the first frame where you added code into the first frame.  That type of code needs to be attached to the button and not placed in the keyframe.  So copy/cut it and then click on the button itself and then paste that code into the Actions panel.  If you do not see the code symbol in the timeline you have done it correctly.  That should be all you need to do.
    Just as a note: Where you originally had that code is the better place for code because it is easy to locate, it's just that that type of coding is designed specifically for placing on objects.  To place the code where you did, you would give your button an instance name (for example, "myButton") in the properties panel and then assign somewhat similar code to it, such as...
    myButton.onRollOver = function(){
         gotoAndPlay("s1");
    myButton.onRollOut = function(){
         gotoAndPlay("s2");
    myButton.onRelease = function(){
         getURL(...etc);

  • Can't get JDK to work! Please help!

    Hi, I have downloaded the JDK1.3.1 many times and I have try installing it into different computers at home but none of them work. Is there like an online thing where I can compile my code and run it. Because at home it seems not to work but in school it's fine and I really need to practice alot at home

    What is your OS platform used? Check out the URL below:
    http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html
    Good luck!

  • Just got photoshop CC but can't get 3D to work. Any help greatly appreciated.

    Just got photoshop CC but can't get 3D to work. Any help greatly appreciated.

    Do you have a video card with at least 512 MB of vRAM?
    I only have 256 MB vRAM on my older iMac and still have 3D capability in PS CS5, but not in PS CC. The newer versions of PS require 512 MB in order to enable 3D.

  • So I forgot the password to my phone and my power button just broke so I can't dfu mode or anything. Please help!

    So I forgot the password to my phone and my power button just broke so I can't dfu mode or anything. Please help!

    Hello Zpower,
    It sounds like you have forgotten the passcode lock on your phone. The following article will help you get that reset named:
    iOS: Forgot passcode or device disabled
    http://support.apple.com/kb/ht1212
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

  • Hello, all of a sudden without apparent reason I can't get "MAIL" to function. It starts up but I get the color wheel turning like crazy and never ends. I've tried restarting and I still can't get it to work. PLEASE HEEELP!?

    hello, all of a sudden without apparent reason I can't get "MAIL" to function. It starts up but I get the color wheel turning like crazy and never ends. I've tried restarting and I still can't get it to work. PLEASE HEEELP!?

    In the Desktop Manager > Sync > Configuration, make sure the calendar options are set to override Outlook.
    Set it also to notify you of the changes, so you will have to approve any changes.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • ITunes wont open for me. it keeps saying "the Disc "untitled playlist" cannot be read. An unknown error occurred (-69)." don't know how to get it to work. Please help

    iTunes wont open for me. it keeps saying "the Disc "untitled playlist" cannot be read. An unknown error occurred (-69)." don't know how to get it to work. Please help

    It is likely a hardware failure
    http://support.apple.com/kb/TS3694?viewlocale=en_US#error1

  • I purchase the Forms plus,  bywidgets.mu, and can't get it to work.  any help?

    I purchase the Forms + bywidgets.mu
    I've followed the directions on the weblink (https://widgets.mu/se/FormsPlus/demo/)
    and still can't get anything to work.
    I just keep getting <> inside a box and that's it.
    Help please!

    Hi Lisa,
    Do you have a URL where I can take a look at the issue? It may be a configuration issue or it may be a bug so I just want to check and make sure.
    In terms of the radio buttons one, I just published up update to the Forms+ Widget this morning that includes a new way to do grouping for radio buttons. Creative Cloud should download the updated version of the .mulib file into your downloads folder (and it should now be called something like FormsPlus Bundle.mulib), and you can double click that to add the updated widgets to your Muse library. The one I'm referring to in particular is called the "Radio Group (Box Selection)" widget. Basically, when you drag the widget out onto the page, it shows a dotted line box and you simply drag and resize the box around the radio items you'd like to group together. The box itself won't be exported so you don't have to worry about that, but it will allow you to visually group them instead of doing so with labels.
    Let me know if you have any trouble getting the new update or using the box selection widget and I'd be happy to help further.
    Thanks,
    Andrew

  • T500: Can't get WLAN to work!! HELP

    Hey all, new to the Lenovo community so sorry if I sound like a noob.
    I just bought a Thinkpad T500- 2056 CTO (Vista Business) from a colleague of mine. I searched the internet for the specs of this notebook and saw that it was equipped with an integrated WLAN card but I can't get it to work. I checked the Network Adapters in the Device Manager but there was only an Ethernet Gigabit driver. I tried downloading the only 2 different drivers that Lenovo's Support and Downloads has but that didn't work. Can anyone help me out? I'd greatly appreciate it.

    AHuerta775 wrote:
    I searched the internet for the specs of this notebook and saw that it was equipped with an integrated WLAN card
    What specifically did you look at on the internet to determine the spects of a  2056-CTO ?
    Cheers,
    Bill
    I don't work for Lenovo

  • Can't get back my Apple ID, please help.

    Hello,
    Yesterday, like everyone else, I wanted to sync my account to iCloud, the thing is my Apple ID wasn't verified, and whatever I did, I couldn't send a "Verify mail" via the https://appleid.apple.com/ site. So after searching here and there, I read that what you needed to enter a new apple ID, verify it, and then change it back to the prior Apple ID, The first part worked (of course...) but now for some reason I cannot go back to my original Apple ID, when I try to save it, the screen just load, refreshes like nothing changed...
    Could someone please help me?
    Thank you.
    Jharryone

    Click here, explain to them that you can't call, and see what they say.
    (120676)

  • I just moved and wireless internet is now provided for me. I am not using my Time Capsule as a router anymore but can I still use it as my storage device wirelessly?  So far I cannot get it to work. Please help.

    Hi,
    I just moved to a new place.  I used to have my own internet setup and used my Airport Time Capsule as my router.  Now that I don't need to use it as a router I would still like to use it as a storage device for my pictures.  Can I still do that wirelessly or do I have to plug it into my computer?  And if I do (which would really be crumby) do I just use a USB cable?
    Please help.  I have a lot of work stored on it and I am feeling pretty stuck at the moment.
    Thank you,
    Charlie

    You can use your Time Capsule in your new network in a number of ways. One would be as a NAS device which I believe you are looking to do.
    To do so, you would connect the TC to the new router by Ethernet. You would also want to reconfigure the TC as a bridge and disable its wireless radios.
    You can do both of these using the AirPort Utility, as follows:
    Run the AirPort Utility.
    Select the TC, and then, select Edit.
    Select the Network tab.
    Change Router Mode to: Off (Bridge Mode)
    Select the Wireless tab.
    Change Network Mode to: Off
    Select Update and allow the TC to restart.

Maybe you are looking for

  • Flex 3 and Form submits

    I am using a Flex form to gather information that is submitted to a Cold Fusion function page via HTTPService. I can successfully gather, submit and insert the data with no problems. What is the best way to provide feedback from my CF page to my Flex

  • Missing two screws on the bottle of 15 rmbp

    Missing two screws on the bottle of 15 retina macbook pro. Where can I get screw? I need to repair it.

  • Load balancing from the BI portal

    Hi everybody, We have a BW system with two application servers. When we use BEx, the load balancing leads the user to the application server that is used less. When we use the portal, everything goes over the central server. Does anybody know how we

  • One green light instead of two?

    Whenever I had used my built-in isight camera (black macbook) in the past both of the green lights around the camera lit up. Today when I started my computer the left green light turned on by itself and I had not opened any applications that uses the

  • Sudden Surge of Unsolicited Calls

    First and foremost, I've been on the Do Not Call Registry since I got my phone number.  Yes, I already verified that the number is still there. Which brings me to my actual issue: Over the past few weeks / months we've had a sudden surge of unsolicit