I want to stop iMessage opening when i login

Hello people,
would love to know how i stop iMessage and mail opening when i login. 
Thanks in advance
Stevie

Make sure it iMessage is shut down before you reboot and look in Users & Groups, Login Items and remove it from there. Reboot and see if it opens.

Similar Messages

  • How to stop iPhoto opening when connecting a device

    I want to stop iphoto opening when I connect my iphone, I can't find this in iphoto's preferences, any ideas?
    This is iphoto 6

    That worked thank you
    Just to clarify, you have to have the device connected to alter the preference.

  • MacPro stop FaceTime opening when connecting camera

    MacPro stop FaceTime opening when connecting camera

    thanks for helping, but i already saw this thread.
    Ive got the same problem than this people, given my camera is firewire iidc.
    "Unfortunately, FireWire video cameras are not recognized as imaging sources, so Image Capture doesn't pick them up. As a result, you can't use Image Capture to prevent FaceTime from accessing this video camera"
    Another solution?
    using Terminal?
    killing facetime?

  • Want to stop for opening multiple frames ????

    Dear i am working on an application .
    in that there is a frame ok in that frame there is a button.
    so when u click on that button a new frame will open ok now the problem is that.
    suppose u click 5 times on that button so that button will open 5 same type of frames.
    so i dont want to open more then 1 frame so pl help me .i cant find out how to stop to open more then 1 frame.
    here is a code of 1st frame . which have a button ok
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    public class bookdata implements ActionListener
         JFrame frame;
         JLabel label;
         JPanel panel , panel2 , panel3;
         JButton but1,but2,but3,but4,but5,but6;
         Color cc;
         BoxLayout bak;
         ImageIcon icon;
         FlowLayout flo;
         public bookdata()
              icon = new ImageIcon("book/book.jpg");
              frame = new JFrame("Book Database");
              //frame.setResizable(false);
              frame.setIconImage(new ImageIcon("book/logo.gif").getImage());
              Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
              int x = (d.width - 550)/2;
              int y = (d.height - 500)/2;
              frame.setBounds(x,y,400,300);
         public void main1()
              JLabel label = new JLabel(icon);
              flo = new FlowLayout();
              panel3 = new JPanel();
              but1 = new JButton("NEW BOOK");
              but2 = new JButton("EDIT");
              but3 = new JButton("DELET");
              but4 = new JButton("SHOW");
              but5 = new JButton("LONE");
              but6 = new JButton();
              but1.addActionListener(this);
              panel = new JPanel();
              bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
              panel.setLayout(bak);
              // 1st 220 is for R
              // 2nd 177 is for G
              // 3rd 162 is for B
              // 4th 255 is for Alpha
              cc = new Color(51,51,255);
              panel2 = new JPanel();
              panel2.setLayout(flo);
              panel2.setBackground(cc);
              panel2.add(label);
              JSeparator hh = new JSeparator(SwingConstants.VERTICAL);
              SpringLayout layout = new SpringLayout();
              panel3.setLayout(layout);
              panel3.add(but1);          // pp1
              panel3.add(but2);          // pp2
              panel3.add(but3);          // pp3
              panel3.add(but4);          // pp4
              panel3.add(but5);          // pp5
              //ActionListenet Calling
              layout.putConstraint(SpringLayout.WEST,  but1, 15,SpringLayout.WEST,  panel3);          // pp1
             layout.putConstraint(SpringLayout.NORTH, but1, 25,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but2, 15,SpringLayout.WEST,  panel3);          // pp2
             layout.putConstraint(SpringLayout.NORTH, but2, 55,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but3, 15,SpringLayout.WEST,  panel3);          // pp3
             layout.putConstraint(SpringLayout.NORTH, but3, 85,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but4, 15,SpringLayout.WEST,  panel3);          // pp4
             layout.putConstraint(SpringLayout.NORTH, but4, 115,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but5, 15,SpringLayout.WEST,  panel3);          // pp5
             layout.putConstraint(SpringLayout.NORTH, but5, 145,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  label, 60,SpringLayout.WEST,  panel3);
             layout.putConstraint(SpringLayout.NORTH, label, 100,SpringLayout.NORTH, panel3);
              frame.getContentPane().add(panel);
              panel.add(panel2);
              panel.add(panel3);
              frame.setSize(600,500);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public void actionPerformed(ActionEvent e)
              Object obj = e.getSource();
              if(obj == but1)
                   newbook nebook = new newbook();
    }

    Dear i am working on an application .
    in that there is a frame ok in that frame there is a
    button.
    so when u click on that button a new frame will open
    ok now the problem is that.
    suppose u click 5 times on that button so that button
    will open 5 same type of frames.
    DO U WANT TO COME AGAIN ON THE PARENT FRAME.IF NOT THAN
    parentFrame.setVisible(false);
    if yes then ................
    so i dont want to open more then 1 frame so pl help
    p me .i cant find out how to stop to open more then 1
    frame.
    here is a code of 1st frame . which have a button
    ok
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    public class bookdata implements ActionListener
         JFrame frame;
         JLabel label;
         JPanel panel , panel2 , panel3;
         JButton but1,but2,but3,but4,but5,but6;
         Color cc;
         BoxLayout bak;
         ImageIcon icon;
         FlowLayout flo;
         public bookdata()
              icon = new ImageIcon("book/book.jpg");
              frame = new JFrame("Book Database");
              //frame.setResizable(false);
    frame.setIconImage(new
    ew ImageIcon("book/logo.gif").getImage());
    Dimension d =
    = Toolkit.getDefaultToolkit().getScreenSize();
              int x = (d.width - 550)/2;
              int y = (d.height - 500)/2;
              frame.setBounds(x,y,400,300);
         public void main1()
              JLabel label = new JLabel(icon);
              flo = new FlowLayout();
              panel3 = new JPanel();
              but1 = new JButton("NEW BOOK");
              but2 = new JButton("EDIT");
              but3 = new JButton("DELET");
              but4 = new JButton("SHOW");
              but5 = new JButton("LONE");
              but6 = new JButton();
              but1.addActionListener(this);
              panel = new JPanel();
              bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
              panel.setLayout(bak);
              // 1st 220 is for R
              // 2nd 177 is for G
              // 3rd 162 is for B
              // 4th 255 is for Alpha
              cc = new Color(51,51,255);
              panel2 = new JPanel();
              panel2.setLayout(flo);
              panel2.setBackground(cc);
              panel2.add(label);
    JSeparator hh = new
    ew JSeparator(SwingConstants.VERTICAL);
              SpringLayout layout = new SpringLayout();
              panel3.setLayout(layout);
              panel3.add(but1);          // pp1
              panel3.add(but2);          // pp2
              panel3.add(but3);          // pp3
              panel3.add(but4);          // pp4
              panel3.add(but5);          // pp5
              //ActionListenet Calling
    layout.putConstraint(SpringLayout.WEST,  but1,
    1, 15,SpringLayout.WEST,  panel3);          // pp1
    layout.putConstraint(SpringLayout.NORTH, but1,
    but1, 25,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but2,
    2, 15,SpringLayout.WEST,  panel3);          // pp2
    layout.putConstraint(SpringLayout.NORTH, but2,
    but2, 55,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but3,
    3, 15,SpringLayout.WEST,  panel3);          // pp3
    layout.putConstraint(SpringLayout.NORTH, but3,
    but3, 85,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but4,
    4, 15,SpringLayout.WEST,  panel3);          // pp4
    layout.putConstraint(SpringLayout.NORTH, but4,
    but4, 115,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but5,
    5, 15,SpringLayout.WEST,  panel3);          // pp5
    layout.putConstraint(SpringLayout.NORTH, but5,
    but5, 145,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  label,
    l, 60,SpringLayout.WEST,  panel3);
    layout.putConstraint(SpringLayout.NORTH, label,
    abel, 100,SpringLayout.NORTH, panel3);
              frame.getContentPane().add(panel);
              panel.add(panel2);
              panel.add(panel3);
              frame.setSize(600,500);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
         public void actionPerformed(ActionEvent e)
              Object obj = e.getSource();
              if(obj == but1)
                   newbook nebook = new newbook();

  • How do I stop iMessage opening on my laptop

    iPhone 5c / MacBook pro (brand new)
    Turned off accounts on laptop iMessage .However, iMessage opens on my laptop every time I open the text app on my phone. Instead of showing me texts, now it asks me to log in.
    Saw in another post about going to phone--Settings--Messages--stop text forwarding. But I don't have that option. There is nothing in the Messages section to stop text forwarding.
    I don't want my computer to open anything or react in any way to text messages.
    Thanks for the help...

    Are you seeing pop-up ads on sites that should not have such ads? If so, see my Adware Removal Guide.

  • How to stop iPhoto opening when I connect iPad

    Calibre enabled me to stop iTunes from opening every time I connected my iPad, but since Yosemite, it's now iPhoto that opens every time we're joined. I don't understand iPhoto, which never wants to do anything I want it to, so I almost never use it. Not only that, it takes an age to fully open while it tries to read photos from my iPad, the Cloud and probably from the Other Side.
    I am guessing this might be connected with iCloud, but I want to stop it. I've looked at iPhoto's Preferernces, I've looked at a number of things in System Preferences, but so far I can't stop this automatic opening.

    OK, I found it, but I can't see how I can control it. I have tried to insert a screen shot. Despite it being only 211KB and 911 x 542 in size, this program will not let me insert it. Right, so I select iPad in the sidebar, and it shows me a load of photos premsumably on the pad that it wants to copy to Pictures and which I don't want it to since they are already there, but there does not seem to be a way of stopping it. Oh, yes I could possibly send them somewhere else, but there doesn't seem to be a way of not sending anything anywhere. I think this may be an iCloud issue. With "advanced editor", I have finally manage to insert the screen shot - hope that explains what I couldn't.

  • How do I stop iPhoto opening when not wanted?

    I don't use iPad - I prefer Lightroom.  So when my iMac was updated to Yosemite iPhoto started opening every time I plug a compact flash card into the iMac.  This is annoying to say the least as each time I have to close it making sure it doesn't start importing images into the wrong place.
    How do I "turn off" this feature?  No is no help in the iPhoto "help" and online Apple isn't any better.

    Changing this in iPhoto alone may not suffice. Then change the setting in Image Capture as well.
    Insert your Compact Card reader with the card inserted.
    Then launch Image Capture.
    Under "Devices" select your card reader. Then click the disclosure triangle in the lower left corner to reveal the ""Connecting this ... opens" and set this to Light Room or "No Application".
    You will have to do this for each photo device (camera, iPhone, iPad, ...) you own.

  • Stop program opening when device (camera) is connected.

    When I connect a range of things (camrea, SD memory card from camera, iPhone, and iPad) the system assumes I want Aperture to open. I know there must be some way to change the application that starts.
    What I really want to do is stop any application from starting.
    Thaks very much.

    The Aperture->Preferences->Import is where I found it. No application is one of the choices.
    Thanks

  • How do i stop programmes opening when i start up the computer

    When i turn the mac book on it keeps opening all my programmes. How do i stop this?

    Remove the check in this box when you log out:

  • Why does iMessage open when I"m chatting in google?

    Why does the login to iMessage window open up when I'm chatting through gmail?

    Hi,
    By default the first thing the Messages app asks you to do is enter an Apple ID to use for the iMessages account.
    You can ignore this and use the set up to add other accounts (or use the System Preferences > Internet Accounts to enable them).
    If it is not already, I would go to Messages Menu > Preferences > Accounts and in the iMessages account untick the box for "Enable this Account" even if it does not have an Apple ID.
    9:22 pm      Monday; February 3, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Want new workspace to open when launching Bridge CS4

    Have set up new workspace option and would like to be default when opening bridge
    at the moment when launching bridge it opens in compact mode.

    Ms Tjäder is correct.  Perhaps your preferences files have become corrupted.  Hold down the Option key as you launch Bridge and keep holding it down unil you see a dialog box asking you for appropriate instructions to delete the preferences and re-set them.
    Wo Tai Lao Le
    我太老了

  • Stop iTunes opening when I change a song with Remote, Stop iTunes opening when I change a song with Remote

    Hey Guys,
    I use the Remote app on my iTouch a lot. The problem is when I'm gaming, iTunes becomes the front window and block the view of my game.
    Is there anyway to stop that happening?
    Thanks,
    cccc297

    bump 10char

  • Want sidebar to be open when slideshow begins

    Hi
    Is there a way that we can set the sidebar to default as open rather than the user having to click on the video icon?
    Thanx

    You will have to live with it. This is one of the mysteries of Adobe's programmers which will probably never be solved. For example, my Indesign CS6 never remembers being closed with maximised window, my Photoshop CS6 does. Every application, at least before CC, is different to the next, because programmed by different divisions. Just compare the GUIs of a freshly installed PS, AI and ID. All in different colour and layout. Even if you set up the GUI colour to the lightest grey you can select, it is equal between PS and AI, but different to ID, for example (see below). AI and ID have buttons for Bridge and others in the top bar, PS has none.

  • Why does a mystery application try to open when I login?

    I wonder if anyone can help me with an issue I'm having with a mystery application trying to open.
    Every time I wake my iBook G4 from sleep, or I start it from shutdown (I am the only user), I see an application is trying to open at the right side of the dock. It shows as the generic application "A" starting to open, but then it suddenly vanishes. On the advice of a Mac-user friend, I went to System Preferences/Accounts/Login Items and removed everything there, then rebooted my machine, but I still have the same problem.
    From my unfortunate experiences with PCs, I remember this type of login behavior usually indicates the machine is infected with a virus. Is that what is causing my iBook problem? I have the Firewall turned on, and I'm running Norton Antivirus for Mac (which has found nothing in repeated scans). What should I try next? Any help with this would be really appreciated.
    iBook G4   Mac OS X (10.4.6)  
    iBook G4   Mac OS X (10.4.6)  

    It's difficult to say what the application may be if you can't see its name, but in the Dock, the name won't show unless you are pointing at the icon. If you can get your mouse there fast enough (maybe put it in the right place, sleep, then wake your Mac?) you might see the app name before it closes. Then you'll have a better idea what it is.
    You might also try the Activity Monitor application, which is in the /Applications/Utilities folder. It shows all the running processes, so you might be able to catch the app name before it closes.
    When you know what the application is called, you may decide it's not a problem at all. If it's still unclear, come back and post it, and maybe someone will be able to tell you what it is. Lots of applications use little "helper apps," and it's possible it could be something like that. It's best to know what it is, but it's probably harmless.
    G4 400 AGP   Mac OS X (10.4.2)  

  • Stop image capture from opening when iphone is connected ?

    how do i get "image capture" to stop auto opening when i connect my iphone ?
    i have set image capture to open when i connect a camera, but i don't want it to open when i connect the iphone.
    is this possible ?

    Chenks,
    The way you have it set, Image Capture will open whenever it detects photos that have been taken with the iPhone. To prevent it, you can just import the photos you've taken with the iPhone to your computer and then erase them off the phone (you can then sync them back to the phone if you want them), or you can set Image Capture to not open when any camera is connected. That will apply to other digital cameras as well as the iPhone.
    Hope this helps,
    Jennifer B.

Maybe you are looking for

  • Problems after upgrading to iOS 5.0...

    Hi, maybe it's been said and maybe it's a matter of the iPad 1, but after upgrading to ios 5.0 all my apps started to reset when used. Is there something I can do to avoid this?  I tried resetting the iPad and nothing.... Kind Regards

  • Can you convert a pdf that won't allow text to be highlighted so you can do highlighting?

    I have Adobe Acrobat 6.0 Standard. My monthly bank statement comes as a pdf. I would like to be able to highlight parts of it such as check and deposit amounts but, although the highlighting toolbar is available, when I select a tool such as the cros

  • Setting up Mircrosoft Server 2012

    Hellow friends......i need some suggestions from you for setting up a network. our company is supplying and repairing of Locomotives. our head office is in one city and two repairing center in other cities and we have warehouse as well. Problems: the

  • Problems with the 12.0.4 CS5 update aka poor support

    In my 30 years as a technical support director for national and global companies I would have been fired long ago if the customer suport I provided was as bad as this has been. Love the products -- regret the support. Since updating to 12.0.4 from 12

  • "Packages cannot be nested" error in Flex

    I want to use SoundFacade class from Adobe. (Here, from github). I simple created an "ActionScript File" and paste all the code. But when I want to compile my app I got following error: 1037: Packages cannot be nested. The only reason I can guess is