Error message i keep getting with my new mac (YOSEMITE), trying to install my CS6 software

"You can’t use this version of the application “Adobe After Effects CS6” with this version of OS X." is the error message! help!

anna123456789, Please do update your After Effects CS6 to version 11.0.4 to work in Yosemite from here : Adobe - After Effects : For Macintosh : Adobe After Effects CS6 11.0.4 Update : Thank You

Similar Messages

  • Error message I keep getting on my MacbookPro when trying to install

    I recently had my macbook pro fixed and Apple had to wipe everything off of it while correcting the problem so now I have to redownload and re-install adobe flash player but I will download it and then when I double click on it to install it I keep getting the same error message.  The error message it keeps giving me is:
    “Install Adobe Flash Player” can’t be opened because the identity of the developer cannot be confirmed.
    I have tried a couple of things but nothing is working and I have not seen anyone with the same problem.  How can I fix this and download and install adobe flash player?

    Hello,
    What OS X version are you running? Please go to 'About this Mac' and provide the 'Startup Disk' information.
    What URL did you download Flash Player from?
    What is the name of the Flash Player installer file returning this message?
    Maria

  • Help with dealing with Error messages I keep getting

    I am new to Java Programming and would appreciate some help please. I keep getting this errors each time I compile my program and I have no clue what to do about it.... can anyone help?
    cannot find Symbol- method getChar()
    Infact, I don't mind if someone will please take a look at this program I have written and basically critic it. thanks.
    thanks
    Java NewBie
    public class Ticket
         private double ticketPrice;//price of the ticket
         private String ticketType;//Type of ticket this is
         private int ticketNumber;//ticket number
         private String feature;//features the ticket offers
         //Constructors
         public void Ticket()
              ticketPrice=10.00;
              ticketType="Basic";
              ticketNumber= 10000001;
              feature=" Ticket is void after one use";     
         public void Ticket(double tprice, String tType, int tnumber,String fTicket)
              ticketPrice=tprice;
              ticketType=tType;
              ticketNumber=tnumber;
              feature=fTicket;
         // Set Methods for the Class
         // reset the ticket price
         public void setTicketPrice(double price)
              ticketPrice = price;
         // set the type of ticket
         public void setType(String type)
              ticketType=type;
         // set the ticket number
         public void setTicketNumber(int numbero)
              ticketNumber=numbero;
         // save the features of the ticket
         public void setTicketFeature(String feat)
              feature = feat;
         // reset the ticket price
         // Get method for the Class
         //get the ticket price
         public double getTicketPrice()
              return ticketPrice;
         // get the type of ticket
         public String getType()
              return ticketType;
         // get the ticket number
         public int getTicketNumber()
              return ticketNumber;
         // get the features of the ticket
         public String getTicketFeature()
              return feature;
         //method to print out information about Ticket
         public void printTicketInfo()
              System.out.println(getTicketNumber()+" " getType()": $"+ getTicketPrice());
              System.out.printf("/n/nFeatures: /n",getTicketFeature());
    }// end class Ticket
    import java.util.*;
    import java.io.*;
    public class TicketSales
         //create Scanner to obtain input from command window
         //Scanner input= new Scanner(System.in);
         //create Ticket Objects for each Ticket type
         static Ticket premium = new Ticket();
         static Ticket choice= new Ticket();
         static Ticket basic= new Ticket();
         static Random generator1 = new Random(2000000);
         static int r = generator1.nextInt();
         //process money exchange
         //Varibles to help collect and process User choices
         double userTotalTicketCost;
         double Useramount;// Cost of Ticket User would like to purchase and amount of money user has
         double userChange;//calculated change user recieves back, if any
         static String userTicketChoice;//choice of ticket user would like to purchase
         static int numTickets;//number of tickets user would like to purchase
         // free variable for use
         static char x;
         //this method is designed to obtain Users ticket choice
         // where input obtain is a character stored in a variable x
         public static void getTicketChoice()
              //Select Ticket Type
              System.out.println("Please Select the type of Ticket you would like to purchase");
              System.out.println("Please enter A, B, or C");
              //print out the information for each of the ticket types
              //System.out.println("A. "+ premium.printTicketInfo());
              //System.out.println("/nB. "+ basic.printTicketInfo());
              //System.out.println("/nC. "+ choice.printTicketInfo());
              System.out.println("/nD. if you want to quit the transaction/n"+"/n");
              //call method to get user information and save the information as userTicketChoice
              selection();
              confirm();//confirm that User wants to go ahead with choice
         }//end getTicketChoice() method
         public static void selection()
         {// get and process user selection     
              //create Scanner to obtain input from command window
              Scanner input= new Scanner(System.in);
              //x = input.nextChar();          
              for( int i = 0; i < 3;i++)
                   //verify User selection to know which Ticket was selected
                   if(x=='A' || x=='a')
                        userTicketChoice = "premium";
                        break;
                   if(x=='B' || x=='b')
                        userTicketChoice = "basic";
                        break;
                   if(x=='C' || x=='c')
                        userTicketChoice = "choice";
                        break;
              }//end for loop
              //display greeting and than exit program
              greeting();     
         }//end selection
         public static void confirm()
              //create Scanner to obtain input from command window
              Scanner input= new Scanner(System.in);
              char b;
              System.out.println("You have selected to purchase the "+ userTicketChoice +" Ticket. Y/N?");
              b = input.getchar();
              //Process user response
              if(b=='y'||b=='Y')
                   processEntry("userTicketChoice".getTicketPrice());//exits this method
              else
                   getTicketChoice();// this starts over to receive valid input from user
         }//end confirm
              public static void greeting()
              System.out.println("Thank you for Using Our Carmike Cinema Ticket Machine/n");
              System.out.println("We hope you have a nice Day!!!/n");
              //exit program here
         public void processEntry(double ticketCost)
              //use a do while loop to process payment
              //Inquire as to how many tickets user is willing to purchase
              Scanner input= new Scanner(System.in);
              int i = 1;
              do
                   System.out.println("How many Tickets would you like to purchase?");
                   numTickets = input.nextInt();
                   //display the total cost of tickets that user would like to purchase
                   userTotalTicketCost= (numTickets *ticketCost);//userTotalTicketCost happens to be the total cost of the ticket
                   //display calculated cost for User to see
                   System.out.println("The Total Cost of Tickets you have Ordered is: " + userTotalTicketCost+"/n");
                   System.out.println("Enter the Amount of Money you have to pay for Tickets: ");
                   Useramount = input.nextDouble();//Useramount happens to be total money user enters
                   //compare userTotalTicketCost and z to be sure that User entered the right amount of money
                   if (userTotalTicketCost > Useramount)//User did not enter sufficient funds
                        System.out.println("you have entered an invalid amount");
                        i++;
                        continue;
                   //User enter sufficient funds or even more
                   else if(userTotalTicketCost == Useramount || userTotalTicketCost < Useramount)
                        processPayment();
                        //process ticket printing
                        for(i=0; i> numTickets; i++)
                             printTicket();
                        break;
              } while( (i < 4)&& (userTotalTicketCost > Useramount));//close of do while loop     
         }//end processEntry
         public void processPayment()
         {// this processes payment and issues ticket
              //Calculate users return
              userChange=(Useramount-userTotalTicketCost);
              if ( userChange> 0)
                   System.out.println("Your Change is $"+ userChange +"/n/n/n/n/n");
         }//end processPayment method     
         public void printTicket()
              // Simulate the printing of a ticket.
              System.out.println("######################################/n");
              // use the Ticket Class method to print the Ticket information
              System.out.println(String.valueOf(userTicketChoice).printTicketinfo());// convert to the saved ticket choice
              System.out.println("######################################");
              System.out.println("/n/n");
         //main method begins program execution
         public static void main()
              //set the properties of the choice ticket
              choice.setTicketPrice(45.00);
              choice.setType("Choice");
              choice.setTicketNumber(r);
              choice.setTicketFeature("Access to viewing of 10 movies, at any of the hundreds of/n of Carmike movie theatre's nationwide./nYou also get 5 free refills on your drinks and 20 tubs of/npopcorn/n");
              //set the properties of the basic ticket
              basic.setTicketPrice(15.00);
              basic.setType("Basic");
              basic.setTicketNumber(r);
              basic.setTicketFeature("Ticket is only good for one use. You get a free Cup of Soda/n and a tub of Popcorn at the food counter./n");
              //set the properties of the premium ticket
              premium.setTicketPrice(100.00);
              premium.setType("Premium");
              premium.setTicketNumber(r);
              premium.setTicketFeature("Access to viewing of 25 movies,at any of the hundreds of/nthe 300 Carmike Cinema around the country./n You get free refills at the food counter for up to 50/ndrinks and 10 tubs of popcorn/n");
              //Select Ticket Type
              getTicketChoice();
              System.out.println("How many "+ numTickets +" tickets would you like to purchase? ");
         }//end main
    }//end class TicketSales

    cannot find Symbol- method getChar()That means you're trying to call a method that doesn't exist.
    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.

  • Can anybody help me with this error message I keep getting

    When I try to export my document as a pdf I keep getting this error message...  "The document “Client Invoice_TMC copy” could not be exported as...."

    What version of Numbers?What version of Mac OS X?
    Have you tried restarting Numbers?
    Have you tried restarting your computer?
    Can you export other documents to pdf?
    Have you tried printing the docmment to pdf using the built-in print dialog?  To do this select the menu item "File > Print", then click the print button, then select the "Open in Preview" select from the PDF button in the bottom left corner:

  • "The requested operation requires elevation" is an error message I keep getting when trying to open attachments or documents. How do I get rid of this?

    I keep getting the error message "The requested operation requires elevation" when I try to open attachments or documents. How do I get rid of this?

    This is the entire message. I have gotten this message many, many times and it's always the same.
    I'm trying to open text attachments to Thunderbird with Open Office.

  • Error Message:  I keep getting this error when I try to download apps or songs :  MZCommerce.CreditBalance Mismatch.Mobile_message   Can someone tell me how to get rid of this?  It is very aggravating when trying to use the IPAD.

    I keep getting this error when I try to download apps or songs :  MZCommerce.CreditBalance Mismatch.Mobile_message   Can someone tell me how to get rid of this?  It is very aggravating when trying to use the IPAD.

    Try to go to Settings and then Store. Tap to your Apple ID and select View Apple ID. Now choose to check your payment information and when you're done tap Done. I had to rewrite my three digit code of the credit card and now it works.
    Oh, I also activated Genius for Apps but I don't think it makes any difference.

  • I use MacIntosh, system 10.5.8. But I keep getting pop-ups . I have tried to install Firefox and it responds saying it is not compatible with my systems architecture. What should I do to stop the pop-up?

    I use G4 MacIntosh, System 10.5.8. I keep getting pop-ups asking me to upgrade my version of Firefox. But when I try to install I get the message that Firefox cannot operate with my computers architecture. How can I stop the pop-ups?

    I believe Firefox 4 is Intel only. That means it will not install on a PPC Mac. You can get TenFourFox, which is made for PPCs.
    http://www.floodgap.com/software/tenfourfox/

  • Getting error message "the requested item could not be found" when trying to install Firefox on my android.

    I had to uninstall Firefox for Android because I was having problems logging in to sync. I got a support e-mail to uninstall and reinstall because the sync issue had been fixed. I uninstalled the Firefox app and then when I tried to reinstall it I get the error message on my phone "the requested item could not be found." HELP!

    Some supported phones are not displaying Firefox in the Market for some reason. We're still investigating this. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    and then download the app directly from here:
    http://ftp.mozilla.org/pub/mozilla.org/mobile/releases/4.0b3/android-r7/multi/
    (Note: If your phone is from AT&T, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • Installation problem with the new iso after trying to install the LTS

    I tried to install arch (i have always succeeded before) but i wanted to use the LTS kernel. When choosing packages i unchecked the linux package (which provides the 3 kernel) and checked the kernellts package.
    After i was done with the configuration i got this error message (not exactly sure) something to do with the mkinitcpio : error Preset not found: '/etc/mkinitcpio.d/linux.preset'
    The system was unbootable of course... I assume that it has to do something with the kernel version. Any help would be appreciated. Maybe i should try to install with the older iso...

    Thanks for the quick reply. But I 've  already formatted the partion... Can you tell me a way to do this during the instalation? If it can't be done should I use the older iso? I am not an expert by the way. I assume I could install the 3.0 first and then add the lts kernel but I hate installing anything that I will not use (that's one of the reasons I want to use Arch). Thanks in advance.
    PS. Would the archboot iso help?
    Last edited by Denethor (2011-08-30 19:05:29)

  • Best external harddrive to get with my new Mac desktop (solid state and regular)

    New really expensive Mac. Id like to know the best external and solid state thanks

    Run Apple Hardware Test first.
    Backup / clone your hard drive before making changes.
    Once cloned to new drive, and run Repair Permissions and insure it works properly, pull the original drive and keep off line for now.
    Don't import G5 PPC applications, reinstall (if they have installers).
    Test it works with Apple RAM before pulling.
    Make changes one at a time so you know if something isn't right.
    It could take awhile to really know if something needs updating, and assume your PCIe cards are Leopard + Mac Pro compatible and you have the latest drivers handy if you need to apply updates (very common with new systems and new OS like Leo).
    Plug in the power cord last.
    Once you know everything works, import your personal settings to your new OS.

  • I recently updated to Firefox 4. It worked that whole day, but next morning I get a crash error message and cannot get into Firefox. I've tried some suggestions on the site, but no help. Should I uninstall Firefox, then reinstall.

    I can't even get into Firefox to troubleshoot

    I don't know if this helps, but I'm still working on this problem and took a screen shot of my Console Message errors:
    What's happening here is opening the program, trying to save and it crashes. Then trying to open the program again and it crashing before it even opens.  Finally opening the program a third time and trying to save it using "save as" instead of "save" (which I found one forum recommending) and it crashing again. 

  • Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    when I launch Photoshop CC, I get an error message
    and what exactly is the text of that error message?

  • I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. H

    I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. Have Disabled UAC and Startup items and Services with no success. Please help - frustrated to no end. Can someone help me?

    make sure you're using the adobe cleaner, not crap cleaner, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    copy the installation files to a desktop folder and install from there.

  • I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    you must also use a browser that allows cookies.  try a different browser or download from adobe.com
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • If someone messages my iphone 6 with the new quick video option when I get it I do not get the option to keep. Therefore it never vanishes. If I send a quick message video to them it has keep listed below the video on theirs.

    If someone messages my iphone 6 with the new quick video option when I get it I do not get the option to keep. Therefore it never vanishes. If I send a quick message video to them it has keep listed below the video on theirs.

    1. Every iPod, since the first generation model back in 2001 (of which I am proud to be an original owner) has always scratched on all surfaces – front, back, you name it, but basically everything scratches and this is nothing new. If you toss your shiny new cell phone into your pocket with your car keys it is also bound to be scratched. Just because the iPod costs about ten times more than your cell phone doesn't mean that the iPod is scratch-proof or will stop a bullet.
    If you go out and buy a brand new, scratchless BMW are you going to expect it to never get a scratch or fingerprint on it? Excuse me, but get real or get a case for it.
    2. Transferring video to the iPod was meant to be "easy" for videos that you have purchased over iTunes. It gets more complicated when you want to "back up" your DVDs or avi files that you have on your computer. Unfortunately, QuickTime Pro is not the fastest option for converting to m4v format. There are dozens of applications out there that will rip your DVDs to your hard drive and a handful more which will take this file and convert it to an iPod-friendly format.
    3. It's possible to use your iPod with more than one computer without it being erased. When you connect the iPod to a computer which isn't the first one you used it with, it will say that the iTunes library is not the same one on your iPod and whether or not you want to overwrite the iPod. Obviously you can click no. In the iPod's preferences (found in iTunes), click "manually transfer songs and playlists". You can now take single songs or entire albums from your secondary computer and put them on your iPod.

Maybe you are looking for

  • Error when loading data

    Hi, Please need help! I get a strange error message when loading data from R/3 to BW. A lot of rows in the PSA get red with following description (I don't recognize the object REQUESTER): "InfoObject REQUESTER does not contain alpa-conforming value 3

  • Problem with Batch Updates

    Hi All, I have a requirement where in I have to use batch updates. But if there's a problem in one of the updates, I want the rest of the updates to ingore this and continue with the next statement in the batch. Is this not one of the features in Bat

  • Tabs in Pages

    I am new to Pages (in fact new to Mac), having always used Microsoft Word. I have managed to set up the Tab stops I require on my document in Pages, however, the document has several pages and as soon as the text drops down to the second and subseque

  • Problems with videos

    Hi, I recently bought an iPod video, but when i went to try and put some videos on it, the video either wouldnt even go into iTunes or an error message would come up saying "iPod was not able to copy this video." Can someone help please??

  • Flash forms in j2me applications

    Can I use flash objects in my application without using netBeans technologies???