Cant figure out why i cant get on to the apps

i just got this thing any one out there help me

Hello and Welcome to Apple Discussions. 
Could you please elaborate on your problem?
Merry Christmas
mrtotes

Similar Messages

  • I want to reinstall CS4 as it has been doing some strange things regarding printing, etc. However, when I did this before, it created a major problem and I ended up buying a new computer because no one could figure out why it kept hanging up during the in

    I want to reinstall CS4 as it has been doing some strange things regarding printing, etc. However, when I did this before, it created a major problem and I ended up buying a new computer because no one could figure out why it kept hanging up during the installation. Hours on the phone, no results. I'm scared to do it on this computer. Should I try? Not even the Adobe support could get it resolved. I believe it was somehow reading a product number that could not be deleted or something, and nothing worked.
    Message was edited by: Doug Doug

    Hello, as an addition:
    In your case I would download a really new trial version of your program(s) in question and change it/them into a "real" version later, BUT because you said, that you "re-installed" already, so it will become a little bit more complicated. It would be necessary that you have to use "Adobe Creative Suite Cleaner Tool" as Keith wrote.
    Here an advice for that (The order varies depending on your individual needs. Please read all my proposals first, so you can better choose the first step:)
    1. Maybe you have to activate/deactivate, so please have a look there:
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    2. Sometimes, we know in the meantime, the "opm.db file" is the culprit. In this case you should delete it.
    3. Be careful with (de)installing aso. by (de)installing by your own resources. As much as I regret it and as strange as it may seem I fear it's a challenge for Adobe's Creative Cloud Cleaner Tool. Sometimes - for whatever reasons - CC doesn't "want" to work. In this case you should CC completely delete and reinstall by help of Adobe Creative Cloud Cleaner Tool. (A try to uninstall by own resources is not enough!)
    I quote: Adobe Creative Suite Cleaner Tool helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3-CS6) applications. The tool removes installation records for prerelease installations of Creative Cloud or Creative Suite applications. It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.
    Please use: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html   and follow the prescribed sequence of operations
    4. If necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use the chat, I for may part - as it seems unlike you - had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Hans-Günter

  • Can't figure out why my navbar gets all pixelated online?

    Hi Everyone,
    I'm designing a floating site.  My workflow is PS=====>Fireworks====>Dreamweaver.  I made a navbar in FW with a transparent background and exported html to dreamweaver.  I inserted the fireworks htm, put it online and it looks terrible.  You can see it here:
    http://www.njtraininggrounds.com/thirddaydesign.com/identity.html
    Don't worry about the portfolio button, I know what's going on there.  But I can't figure out why there is "stairstepping" on the logo and on all the navbar buttons.  This is the first time I've ever created a floating site.  I just put a jpeg for repeat using the dreamweaver css, and then inserted the rest in a table. 
    Could anyone give me an idea of what I'm doing wrong?  Thanks so much.
    Wil

    There's no problem with using PNG8, PNG24, or PNG32, other than the huge
    weight of the latter two.  But there's no need to go PNG here.
    Personnaly I see only advantages in using PNG. The good thing about using PNG for graphics like this is that it does not tie you to a background with a certain color. like a GIF with a colored matte does. Should you wish to change your background color later you can keep on using your menu buttons. There is no need to prepare new graphics for the menu just because you change a background color or image.
    As for the "huge" weight of the PNG file, I'd say that depends on your definition of "huge"
    If you compare the filesizes of a simple graphic like that, I see no big improvement by using GIF.
    see screenshot:

  • I can't figure out why I'm getting a Null Pointer Exception

    I'm writing a program that calls Bingo numbers. I got that part of the program to work but when I started adding Swing I kept getting a Null Pointer Exception and I don't know how to fix it. The Exception happens on line 15 of class Panel (g = image.getGraphics();). Here is the code for my classes. I'm still not finished with the program and I can't finish it until I know that this issue is resolved.
    package Graphics;
    import java.awt.Graphics;
    import javax.swing.JFrame;
    public class DrawFrame extends JFrame{
         public Panel panel;
         public DrawFrame(int x, int y, String s) {
              super(s);
              this.setBounds(0, 0, x, y);
              this.setResizable(false);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              this.setPreferredSize(getSize());
              panel = this.getPanel();
              this.getContentPane().add(panel);
              panel.init();
              this.setVisible(true);
         public Graphics getGraphicsEnvironment(){
              return panel.getGraphicsEnvironment();
         Panel getPanel(){
              return new Panel();
    package Graphics;
    import javax.swing.JPanel;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Image;
    public class Panel extends JPanel{
         Graphics g;
         Image image;
         public void init() {
              image = this.createImage(this.getWidth(), this.getHeight());
              g = image.getGraphics();
              g.setColor(Color.white);
              g.fillRect(0, 0, this.getWidth(), this.getHeight());
         Graphics getGraphicsEnvironment() {
              return g;
         public void paint(Graphics graph) {
              if (graph == null)
                   return;
              if (image == null) {
                   return;
              graph.drawImage(image, 0, 0, this);
    package Graphics;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    public class Keys extends KeyAdapter{
    public int keyPressed; //creates a variable keyPressed that stores an integer
    public void keyPressed(KeyEvent e) { //creates a KeyEvent from a KeyListner
              keyPressed = e.getKeyCode(); //gets the key from the keyboard
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Graphics;
    import java.awt.event.KeyEvent;
    import Graphics.*;
    public class Bingo {
         static Ball balls[][] = new Ball[5][15]; //creates a 2D 5 by 15 array
         public static void main(String[] args) {
              DrawFrame frame = new DrawFrame(1500, 500, "Welcome to the automated Bingo Caller."); //creates instance of DrawFrame that is 1000 pixels wide and 500 pixels high
              Graphics g = frame.getGraphicsEnvironment(); //calls the getGraphicsEnvironment method in the DrawFrame class
              Keys key = new Keys(); //creates instance of the Key class
              frame.addKeyListener(key); //adds a KeyListener called Key
              for (int x = 0; x < 5; x++) { //fills rows
                   for (int y = 0; y < 15; y++) { //fills columns
                        balls[x][y] = new Ball(x, y+1); //fills array
              frame.pack(); //adjusts the size of the frame so everything fits
              g.setColor(Color.black); //sets the font color to black
              g.setFont(new Font("MonoSpace", Font.PLAIN, 20)); //creates new font
              for(int y=0;y<balls.length;y++){ //draws all possible balls
                   g.drawString(balls[y][0].s, 0, y*100); //draws numbers
                   for(int x=0;x<balls[y].length;x++){ //draws all possible balls
                        g.drawString(balls[y][x].toString(), (x+1)*100, y*100); //draws letters
              do {
                   frame.repaint(); //repaints the balls when one is called
                   int x, y; //sets variables x and y as integers
                   boolean exit; //sets a boolean to the exit variable
                   do {
                        exit = false; //exit is set to false
                        x = (int)(Math.random() * 5); //picks a random number between 0 and 4 and stores it as x
                        y = (int)(Math.random() * 15); //picks a random number between 0 and 14 stores it as y
                        if (!balls[x][y].called) { //checks to see if a value is called
                             exit = true; //changes exit to true if it wasn't called
                             balls[x][y].called = true; //sets called in the Ball class to true if it wasn't called
                             System.out.println(balls[x][y]); //prints value
                   } while (!exit); //if exit is false, returns to top of loop
                   int count = 0; //sets a count for the number of balls called
                   for(int z=0;z<balls.length;z++){ //looks at balls
                        g.setColor(Color.black); //displays in black
                        g.drawString(balls[z][0].s, 0, z*100); //draws balls as a string
                        for(int a=0;a<balls[z].length;a++){ //looks at all balls
                             if (balls[z][a].called){ //if a ball is called
                                  g.setColor(Color.red); //change color to red
                                  count++; //increments count
                             } else {
                                  g.setColor(Color.black); //if it isn't called stay black
                             g.drawString(balls[z][a].toString(), (a+1)*100, y*100); //draws balls as string
                   do {
                        if (key.keyPressed == KeyEvent.VK_R||count==5*15) { //if R is pressed or count = 5*15
                             count=5*15; //changes count to 5*15
                             for(int z=0;z<balls.length;z++){ //recreates rows
                                  g.setColor(Color.black); //sets color to black
                                  g.drawString(balls[z][0].s, 0, z*100); //redraws rows
                                  for(int a=0;a<balls[z].length;a++){ //recreates columns
                                       balls[z][a] = new Ball(z, a+1); //fills array
                                       g.drawString(balls[z][a].toString(), (a+1)*100, z*100); //redraws columns
                   } while (key.keyPressed!=KeyEvent.VK_ENTER || count == 5 * 15); //determines if the key was pressed or counter is 5*15s
              } while (key.keyPressed == KeyEvent.VK_ENTER);
    public class Ball {
         String s; //initiates s that can store data type String
         int i; //initiates i that can store data as type integer
         boolean called = false; //initiates called as a boolean value and sets it to false
         public Ball(int x, int y) {
              i = (x * 15) + y; //stores number as i to be passed to be printed
              switch (x) { //based on x value chooses letter
              case 0:
                   s = "B";
                   break;
              case 1:
                   s = "I";
                   break;
              case 2:
                   s = "N";
                   break;
              case 3:
                   s = "G";
                   break;
              case 4:
                   s = "O";
         public String toString() { //overrides toString method, converts answer to String
              return s + " " + i; //returns to class bingo s and i
    }

    The javadoc of createImage() states that "The return value may be null if the component is not displayable."
    Not sure, but it may be that you need to call init() after this.setVisible(true).

  • Can someone please help me figure out why I keep getting the "can not reach server" when I try to download the ebook? This is happening with Adobe Digital Editions.

    When I try to download the ebook I bough, the Adobe Digital Reader shows the following message: "can not reach server".  Can someone please help me with this?
    TO be precise, it says "licensee server communication problem"
    Thank you

    The thread running through your explanation has to do with connectivity to your server. (iCloud out of the blue asking for password, unable to message your boyfriend, unable to access e-mail). You said that you boyfriend restart his device and then the two of you were able to then imessage. My best advice for you would be to go to settings to reset to reset network settings. Once this has been done you then will need to enter the name and password of your wifi. ONce this is done you then can attempt to check to see that all passwords are enter correctly.
    Good luck.

  • RE case number 185479759 which was closed today (thought problem was fixed but still persists). LR keeps crashing and no one seems to be able to figure out why. Am getting really frustrated here as I have been dealing with this with Adobe for several days

    Come on now, how many times do I have to type the above question. I need help getting my LR5 to work. It keeps crashing. Have been working with Adobe for this problem for several days now and still no resolution.

    You're not talking to Adobe here - this is a user-to-user forum.
    If you want help here, you'll need to explain exactly what the problem is, and include details like your OS, your camera, what you're doing when the crash happens, etc.
    FAQ: What information should I provide when posting, or What do you need to know to solve my issue?

  • Can't figure out why I'm getting this error on New-ADUser

    The command is:
    New-ADUser –SamAccountName “TestProvider” -UserPrincipalName "[email protected]” -GivenName “Test” -Surname “Provider” -DisplayName “Test Provider” -Name "Test Provider" -Enabled $true -path “ou=CompanyName,ou=Users,ou=Providers,DN=intranet,DN=CompanyName,DN=com” -AccountPassword (ConvertTo-SecureString "TEST123test" -AsPlainText -force) -PasswordNeverExpires $True
    The error is: 
    New-ADUser : No superior reference has been configured for the directory service. The directory service is therefore un
    able to issue referrals to objects outside this forest
    At line:1 char:11
    + New-ADUser <<<< -SamAccountName "TestProvider" -UserPrincipalName "[email protected]" -GivenName "Test" -
    Surname "Provider" -DisplayName "Test Provider" -Name "Test Provider" -Enabled $true -path "ou=CompanyName,ou=Users,ou=
    Providers,DN=intranet,DN=CompanyName,DN=com" -AccountPassword (ConvertTo-SecureString "TEST123test" -AsPlainText -force
    ) -PasswordNeverExpires $True
    + CategoryInfo : NotSpecified: (CN=Test Provide...panyName,DN=com:String) [New-ADUser], ADException
    + FullyQualifiedErrorId : No superior reference has been configured for the directory service. The directory servi
    ce is therefore unable to issue referrals to objects outside this forest,Microsoft.ActiveDirectory.Management.Comm
    ands.NewADUser
    I think it has something to do with the way I'm specifying the "path" but i'm not sure.
    The user should be created in an OU: CompanyName > Users > Providers
    The domain is intranet.companyname.com

    Hi,
    Instead of ou=CompanyName,ou=Users,ou=Providers,DN=intranet,DN=CompanyName,DN=com, try ou=CompanyName,ou=Users,ou=Providers,DC=intranet,DC=CompanyName,DC=com.
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)

  • Can't figure out why I'm getting error #1034

    var handsUpChannel:SoundChannel = new SoundChannel();
    var handsUp:Sound = new Sound();
      handsUp.load(new URLRequest("audioFiles/finalAudio/song1.mp3"));
    var watUpChannel:SoundChannel = new SoundChannel();
    var watUp:Sound = new Sound();
      watUp.load(new URLRequest("audioFiles/finalAudio/song2.mp3"));
    var cowboyChannel:SoundChannel = new SoundChannel();
    var cowboy:Sound = new Sound();
      cowboy.load(new URLRequest("audioFiles/finalAudio/song3.mp3"));
    var casualChannel:SoundChannel = new SoundChannel();
    var casual:Sound = new Sound();
      casual.load(new URLRequest("audioFiles/finalAudio/song4.mp3"));
      handsUp.addEventListener(MouseEvent.MOUSE_DOWN, handsUpStart);
      watUp.addEventListener(MouseEvent.MOUSE_DOWN, watUpStart);
      cowboy.addEventListener(MouseEvent.MOUSE_DOWN, cowboyStart);
      casual.addEventListener(MouseEvent.MOUSE_DOWN, casualStart);
    function handsUpStart(event:MouseEvent):void  {
      handsUpChannel = handsUp.play();
    function watUpStart(event:MouseEvent):void  {
      watUpChannel = watUp.play();
    function cowboyStart(event:MouseEvent):void  {
      cowboyChannel = cowboy.play();
    function casualStart(event:MouseEvent):void  {
      casualChannel = casual.play();
    I'm trying to play audio using a MovieClip object. I have multiple other objects with the exact same code, just changing the variables, working perfectly.
    All it says is:
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@1327340d1 to flash.media.Sound.
      at flash.display::Sprite/constructChildren()
      at flash.display::Sprite()
      at flash.display::MovieClip()
      at Unit2_AudioFail_fla::MainTimeline()
    help please

    You appear to be naming the buttons the same as the Sound objects.  You will need to define different names for one or the other.

  • Having problems trying to figure out why my code isn't displaying the page I want it to display...

    Yea, so, title pretty much explains it, but I have this code so far (Not Complete...obviously)
    package 
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    public class Clandestine extends MovieClip
      var logoPage:LogoPage;
      var startPage:StartPage;
      var firstPage:FirstPage;
      var creditsPage:CreditsPage;
           public function Clandestine()
       // constructor code
        logoPage = new LogoPage();
        startPage = new StartPage();
        firstPage = new FirstPage();
        creditsPage = new CreditsPage();
        addChild:(logoPage);
        //Event Listeners
        logoPage.logoButton.addEventListener(Mouse.CLICK,onLogoButtonClick);
        startPage.campaignButton.addEventListener(Mouse.CLICK,onCampaignButtonClick);
        startPage.creditsButton.addEventListener(Mouse.CLICK,onCreditsButtonClick);
        startPage.backLogoButton.addEventListener(Mouse.CLICK,onBackLogoButtonClick);
       function onLogoButtonClick(event:MouseEvent):void
        addChild(startPage);
        removeChild(logoPage);
    And I can't get it to display the "LogoPage" by calling for it using addChild "logoPage" I don't understand why it's not working, some help would be great.

    uhm...I'm really new to programming...could you explain what a document class is? What I can tell you is, uh, I named the .fla file "MultiChoiceStoryBook" and the .as file "Clandestine." and i told the clandestine file to call upon the multichoicestorybook file and yea...giving it second thought I was thinking maybe it wasn't displaying the logopage because I used a picture, and it didn't like that or something...?

  • IM TRYING TO FIGURE OUT WHY MY IMAC KEEPS FREEZING ON THE OPTIONS TO CHANGE MY WALL PAPER CAN SOMEONE PLZ HELP ME?

    im trying to just change my wallpaper on my brand new imac and when i try to change it it freezes on the option screen. plz help me

    I suggest you change the title of your question from upper case to lower case. Upper case is annoying.

  • My time machine doesnt show up in the finder and ive done the checkboxes in the finder preferences and ive restarted in safeboot. i still cant figure out why it wont show up

    my time machine doesnt show up in the finder and ive done the checkboxes in the finder preferences and ive restarted in safeboot. i still cant figure out why it wont show up

    iOS: Device not recognized in iTunes for Windows

  • My desk top Calender and My IPhone products have stopped communicating.  even during hard wire sync.  I cant figure out why..?

    My desk top Calender and My IPhone products have stopped communicating.  even during hard wire sync.  I cant figure out why..?

    Hi,
    Try resetting your Sync Services. See here to reset your sync services.
    Let us know how it goes.
    Best wishes
    John M

  • Hi. I cant figure out, what I will get in the creative cloud.

    Hi. I cant figure out, what I will get in the creative cloud. ?? Do I get it all ?? if not wich programs are in it. ? I hope, i can get an answar fast :-)

    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • Right after the firefox upgrade I can no longer acess my text window in my yahoo mail account. I cant figure out why.

    Once firefox completed its upgrade I can no longer access my text window/box in my yahoo mail account. Which means I cannot text from my mail account now. I cant figure out why this is happening.

    Once firefox completed its upgrade I can no longer access my text window/box in my yahoo mail account. Which means I cannot text from my mail account now. I cant figure out why this is happening.

  • Been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft? Help me please.. getting a bit bored?

    been sat here for the past 5 hours trying to figure out why itunes wont download, it says error and something to do with Microsoft version? Help me please.. getting a bit bored?

    i have this problem too
    my dad thinks its because itunes is getting overloaded

Maybe you are looking for