How to setup auto dim, when light darkens

when i went to the Mac Store, the guy working there showed me this auto dim feature, that when the light around the laptop(environment) darkens the laptop gets brighter and the keyboard lights up.
i just bought my laptop and got it today and i would like to know how i can activate this feature  i have the 15.5 inch macbook pro with normal screen

System Preferences/Keyboard/Keyboard - place a check mark next to "Illuminate keyboard in low light conditions."
Or call the store where you purchased the computer and ask the sales clerk you spoke to.

Similar Messages

  • Screen auto-dimming when I hit delete

    I bought a 17" macbook pro for school three weeks ago. It is 2.5ghz, 4gigs of ram, 250gb hd and the high res scree. I upgraded from a 17" powerbook g4.
    One thing I have noticed that really bugs me is that when I hit the delete key the display will dim as if I where to turn out the lights and it will light back up when I take my hand away. I only hit the delete key for just a second and it does this. It is quite annoying that I never had a issue with on the powerbook. I assume the light sensor is right around there but it would seem that apple would make it so it would take longer then a second of darkness to dim the screen.
    I am sure someone else has had this issue as well.
    Thanks,
    -rob

    Annoyingly, this feature re-enabled itself when I upgraded to 10.5.5 recently.
    Re-disabling it was a bit of a pain, because searching for "dimming display" in System Preferences brought up Energy Saver prefs, but did not find this setting -- Google came to my rescue, of course.

  • How to setup auto paddle & constant speed for ball

    I wanted to setup an automatic paddle so that this game will works as a one-player game. I have 3 files here. Ball.java, Play.java and pong.java.
    My code below doesn't seem to get the paddle moving at all. How can I do so? What's my mistake or how should I do it correctly?
    Pls help....:(
    Also the ball runs faster and faster after each volley and the ball deflects at a smaller x-axis angle after hitting the rightWall & leftWall. How can I get a constant velocity as well as a more balance deflection??
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Toolkit;
    import java.awt.event.ItemEvent;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.Rectangle2D;
    import javax.swing.JButton;
    import javax.swing.Timer;
    import javax.swing.JPanel;
    import java.awt.*;
    import java.awt.event.*;
    class Play extends JPanel implements ActionListener, MouseMotionListener, ItemListener {
         private double maxX,maxY,y; // dimensions of the surface of play
         private double heightP,widthP,semiWidthP; // dimensions of the paddle
         double thickness = 10; // thickness of the walls, ceiling and floor
         private Toolkit tk;
         private Ball ball; // graphic objects
         private Rectangle2D user_paddle,computer_paddle, leftWall, rightWall, exitA, exitB;
         private Timer timer; // objects of interaction
         private JButton button, reset;
         private int countA, countB;
         int computer ;
         int user;
         TextField userscore = new TextField(4);
         TextField compscore = new TextField(4);
         Thread t = null;
         Play(Ball ball,Timer timer,JButton button, JButton reset) {
              this.ball=ball;
              this.timer=timer;
              this.button=button;
              this.reset=reset;
              userscore.setEditable(false);
              compscore.setEditable(false);
              // dimensions of the applet
              this.maxX = getSize().width;
              this.maxY = getSize().height;
              tk = getToolkit();
              // paddle
              semiWidthP = ball.getDiametre()/2;
              widthP=semiWidthP*2;
              heightP = 50;
              user_paddle = new Rectangle2D.Double((maxX-thickness-heightP)*0.05,(maxY)/4,
              semiWidthP,heightP);
              computer_paddle = new Rectangle2D.Double((maxX-thickness-heightP)*1.03,(maxY)/4,
              semiWidthP,heightP);
              // borders
              exitA = new Rectangle2D.Double(0,0,thickness,maxY);
              exitB = new Rectangle2D.Double(maxX-thickness,0,thickness,maxY);
              rightWall = new Rectangle2D.Double(0,0,maxX,thickness);
              leftWall = new Rectangle2D.Double(0,maxY-thickness,maxX,thickness);
              // to indicate that the movements of the mouse will be listened to
              addMouseMotionListener(this);
         }//end of Play
         // to adjust the graphic objects if the play changed dimension
         public void updateWall() {
              double maxX=getSize().width, maxY=getSize().height;
              if(this.maxX!=maxX ||this.maxY!=maxY){
                   this.maxX=maxX;
                   this.maxY=maxY;
                   user_paddle.setFrame((maxX-thickness-heightP)*0.05,(maxY)/4,semiWidthP,heightP);
                   //computer_paddle.setFrame((maxX-thickness-heightP)*1.03,(maxY)/4,semiWidthP,heightP);
                   exitA.setFrame(0,0,thickness,maxY);
                   exitB.setFrame(maxX-thickness,0,thickness,maxY);
                   rightWall.setFrame(0,0,maxX,thickness);
                   leftWall.setFrame(0,maxY-thickness,maxX,thickness);
         }//end of UpdateWall
         // posting of the contents of the screen
         public void paintComponent (Graphics g) {
              super.paintComponent(g);
              Graphics2D g2D = (Graphics2D)g;
              updateWall();
              paintPad(y);
              //g2D.drawString(ball.getX()+","+ball.getY(),10,15);
              g2D.drawString("Player A: "+ countA,10,20);// drawString update scores
              g2D.drawString("Player B: "+countB,500,20);
              g2D.fill(exitA); g2D.fill(exitB);
              g2D.fill(rightWall);
              g2D.fill(leftWall);
              g2D.setColor(Color.blue);
              ball.toPost(g2D);
              g2D.setColor(Color.red);
              g2D.fill(user_paddle);
              //g2D.fill(computer_paddle);
              g2D.setColor(Color.gray);
              g2D.drawLine(300,0,300,400);
              while( t!=null) {
                   try     {
                        t.sleep(10);
                   catch(InterruptedException e) {}
         }//end of paintComponent
         private void bip(){
              tk.beep();
         public void itemStateChanged(ItemEvent ev) {
                   Object sc = ev.getSource();
                   boolean on =ev.getStateChange()== ItemEvent.SELECTED;
         //treatment of the Action Vents of Timer
         public void actionPerformed(ActionEvent e) {
              double dx = ball.getDx();
              double dy = ball.getDy();
              // to move the ball//
              ball.toGoA(ball.getX()+ball.getDx(),ball.getY()+ball.getDy());
              // checking of a change of direction (with acceleration...)
              if(ball.intersects(leftWall) || ball.intersects(rightWall)){ // striking with dimensions
                   ball.setDy(dy>0 ? -(++dy) : -(--dy));
                   bip();
              else if((ball.intersects(user_paddle)) || (ball.intersects(computer_paddle))){
                   ball.setDx(dx>0 ? -(++dx) : -(--dx));
                   bip();
              else if((ball.intersects(leftWall)||ball.intersects(user_paddle)) || (ball.intersects(leftWall)||ball.intersects(computer_paddle))){
                   ball.setDx(dx>0 ? -(++dx) : -(--dx));
                   bip();
              else if((ball.intersects(rightWall)||ball.intersects(user_paddle))||(ball.intersects(rightWall)||ball.intersects(computer_paddle))){
                   ball.setDx(dx>0 ? -(++dx) : -(--dx));
                   bip();
              else if(ball.intersects(exitA)){
                   ball.toHide();
                   button.setText("Start");
                   timer.stop();
                   ++user;
                   paintC(computer, user);
                   //++countB;
              else if(ball.intersects(exitB)){
                   ball.toHide();
                   button.setText("Start");
                   timer.stop();
                   ++computer;
                   paintC(computer, user);
                   //++countA;
              paintPad(dy);
              repaint();
         }//end of actionPerformed
         public void setTextFields(TextField c1, TextField c2) {
              compscore=c1;
              userscore=c2;
         public void paintC(int computer, int user) {
              compscore.setText( " " + computer );
              userscore.setText( " " + user );
              compscore.repaint();
              userscore.repaint();
         public void paintPad(double y){
              computer_paddle.setFrame((maxX-thickness-heightP)*1.03,y-semiWidthP,semiWidthP,heightP);
              while( t!=null) {
                   try     {
                   t.sleep(10);
                   catch(InterruptedException e) {}
              //computer_paddle.setFrame(computer_paddle.getX(),dy-semiWidthP,semiWidthP,heightP);
              repaint();
         // draft displacements of mouse
         public void mouseDragged(MouseEvent ev){// ignore
         public void mouseMoved(MouseEvent ev){
         // replace X by making sure that one remains in the terminals of the applet
              double dy = ball.getDy();
              double px = Math.min(maxY-thickness,
              Math.max(ev.getY(),semiWidthP+thickness));
              user_paddle.setFrame(user_paddle.getX(),px-semiWidthP,semiWidthP,heightP);
              repaint();
    }

    Hi,
    For creating the deliveries automatically you can use the T.code VL04 in the b/g or run the program RV50SBT1 in the b/g every 2 hours. This can be done using T.code SM36, this is where you set up the job. Here you can specify the details and the timing.
    For creating the TO's for the delivery, either you do it through the config setting or run a similar job in the b/g and TO's should be created automatically.
    For some reason if you find deliveries are not created you may use V.22 and give the Log number(which you will get from the job log) and see the reasons for delivery not being created.
    hope this helps.

  • [SOLVED] Alsa: How to disable auto-mute when plugging in headphones?

    I have a set of headphones plugged into my workstation permanently (the headphone jack is hard to reach so I don't want to plug those headphones in and out) as well as some speakers. Jack sensing works perfectly - when I unplug the headphones, the speakers are unmuted and when I plug the headphones back in the speakers are muted. Now as I said, my headphones are plugged in permanently and occasionally I want to have sound on the speakers at the same time. So far I have not found a way to have both headphones and speakers unmuted simultaneously.
    I originally thought this was a problem with Pulseaudio (I am using Cinnamon as my desktop) but when I directly go to the Alsa hw device I get exactly the same behavior. The sound chip is a built-in VIA VT1818S and aplay displays the correct cards and devices:
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: SB [HDA ATI SB], device 0: VT1818S Analog [VT1818S Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: SB [HDA ATI SB], device 1: VT1818S Digital [VT1818S Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: SB [HDA ATI SB], device 2: VT1818S HP [VT1818S HP]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    I verified with "mpg123 -a hw:0,0" that I get no sound on the speakers when the headphones are plugged in and vice versa. I tried a lot of different settings with alsamixer and amixer to no avail. These are my current settings:
    $ amixer -c 0 contents
    numid=42,iface=CARD,name='Front Headphone Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=on
    numid=44,iface=CARD,name='Front Mic Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=46,iface=CARD,name='HDMI Phantom Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=on
    numid=45,iface=CARD,name='Line Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=40,iface=CARD,name='Line Out CLFE Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=38,iface=CARD,name='Line Out Front Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=on
    numid=41,iface=CARD,name='Line Out Side Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=39,iface=CARD,name='Line Out Surround Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=43,iface=CARD,name='Rear Mic Jack'
    ; type=BOOLEAN,access=r-------,values=1
    : values=off
    numid=47,iface=CARD,name='SPDIF Phantom Jack',index=1
    ; type=BOOLEAN,access=r-------,values=1
    : values=on
    numid=37,iface=MIXER,name='Master Playback Switch'
    ; type=BOOLEAN,access=rw------,values=1
    : values=on
    numid=36,iface=MIXER,name='Master Playback Volume'
    ; type=INTEGER,access=rw---R--,values=1,min=0,max=42,step=0
    : values=23
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=13,iface=MIXER,name='Headphone Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=12,iface=MIXER,name='PCM Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=11,iface=MIXER,name='PCM Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=31,31
    | dBscale-min=-34.50dB,step=1.50dB,mute=0
    numid=28,iface=MIXER,name='Front Mic Boost Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=3,step=0
    : values=0,0
    | dBscale-min=0.00dB,step=10.25dB,mute=0
    numid=24,iface=MIXER,name='Front Mic Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=23,iface=MIXER,name='Front Mic Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=31,31
    | dBscale-min=-34.50dB,step=1.50dB,mute=0
    numid=2,iface=MIXER,name='Front Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=1,iface=MIXER,name='Front Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=42,step=0
    : values=42,42
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=4,iface=MIXER,name='Surround Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=3,iface=MIXER,name='Surround Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=42,step=0
    : values=42,42
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=6,iface=MIXER,name='Center Playback Switch'
    ; type=BOOLEAN,access=rw------,values=1
    : values=on
    numid=5,iface=MIXER,name='Center Playback Volume'
    ; type=INTEGER,access=rw---R--,values=1,min=0,max=42,step=0
    : values=42
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=8,iface=MIXER,name='LFE Playback Switch'
    ; type=BOOLEAN,access=rw------,values=1
    : values=on
    numid=7,iface=MIXER,name='LFE Playback Volume'
    ; type=INTEGER,access=rw---R--,values=1,min=0,max=42,step=0
    : values=42
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=26,iface=MIXER,name='Line Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=25,iface=MIXER,name='Line Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=31,31
    | dBscale-min=-34.50dB,step=1.50dB,mute=0
    numid=16,iface=MIXER,name='Capture Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=18,iface=MIXER,name='Capture Switch',index=1
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=15,iface=MIXER,name='Capture Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=0,0
    | dBscale-min=-16.50dB,step=1.50dB,mute=0
    numid=17,iface=MIXER,name='Capture Volume',index=1
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=0,0
    | dBscale-min=-16.50dB,step=1.50dB,mute=0
    numid=14,iface=MIXER,name='Loopback Mixing'
    ; type=ENUMERATED,access=rw------,values=1,items=2
    ; Item #0 'Disabled'
    ; Item #1 'Enabled'
    : values=0
    numid=35,iface=MIXER,name='IEC958 Default PCM Playback Switch'
    ; type=BOOLEAN,access=rw------,values=1
    : values=off
    numid=31,iface=MIXER,name='IEC958 Playback Con Mask'
    ; type=IEC958,access=r-------,values=1
    : values=[AES0=0x0f AES1=0xff AES2=0x00 AES3=0x00]
    numid=32,iface=MIXER,name='IEC958 Playback Pro Mask'
    ; type=IEC958,access=r-------,values=1
    : values=[AES0=0x0f AES1=0x00 AES2=0x00 AES3=0x00]
    numid=33,iface=MIXER,name='IEC958 Playback Default'
    ; type=IEC958,access=rw------,values=1
    : values=[AES0=0x04 AES1=0x00 AES2=0x00 AES3=0x00]
    numid=34,iface=MIXER,name='IEC958 Playback Switch'
    ; type=BOOLEAN,access=rw------,values=1
    : values=off
    numid=30,iface=MIXER,name='Dynamic Power-Control'
    ; type=ENUMERATED,access=rw------,values=1,items=2
    ; Item #0 'Disabled'
    ; Item #1 'Enabled'
    : values=0
    numid=29,iface=MIXER,name='Independent HP'
    ; type=ENUMERATED,access=rw------,values=1,items=2
    ; Item #0 'OFF'
    ; Item #1 'ON'
    : values=0
    numid=19,iface=MIXER,name='Input Source'
    ; type=ENUMERATED,access=rw------,values=1,items=4
    ; Item #0 'Rear Mic'
    ; Item #1 'Front Mic'
    ; Item #2 'Line'
    ; Item #3 'Stereo Mixer'
    : values=1
    numid=20,iface=MIXER,name='Input Source',index=1
    ; type=ENUMERATED,access=rw------,values=1,items=4
    ; Item #0 'Rear Mic'
    ; Item #1 'Front Mic'
    ; Item #2 'Line'
    ; Item #3 'Stereo Mixer'
    : values=0
    numid=27,iface=MIXER,name='Rear Mic Boost Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=3,step=0
    : values=0,0
    | dBscale-min=0.00dB,step=10.25dB,mute=0
    numid=22,iface=MIXER,name='Rear Mic Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=off,off
    numid=21,iface=MIXER,name='Rear Mic Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=31,step=0
    : values=23,23
    | dBscale-min=-34.50dB,step=1.50dB,mute=0
    numid=10,iface=MIXER,name='Side Playback Switch'
    ; type=BOOLEAN,access=rw------,values=2
    : values=on,on
    numid=9,iface=MIXER,name='Side Playback Volume'
    ; type=INTEGER,access=rw---R--,values=2,min=0,max=42,step=0
    : values=42,42
    | dBscale-min=-63.00dB,step=1.50dB,mute=0
    numid=49,iface=PCM,name='Capture Channel Map'
    ; type=INTEGER,access=r----R--,values=2,min=0,max=36,step=0
    : values=0,0
    | | TLV size error (257, 8, 0)!
    numid=50,iface=PCM,name='Capture Channel Map',index=1
    ; type=INTEGER,access=r----R--,values=2,min=0,max=36,step=0
    : values=0,0
    | | TLV size error (257, 8, 0)!
    numid=48,iface=PCM,name='Playback Channel Map'
    ; type=INTEGER,access=r----R--,values=8,min=0,max=36,step=0
    : values=0,0,0,0,0,0,0,0
    | | TLV size error (257, 8, 0)!
    numid=51,iface=PCM,name='Playback Channel Map',device=1
    ; type=INTEGER,access=r----R--,values=2,min=0,max=36,step=0
    : values=0,0
    | | TLV size error (257, 8, 0)!
    numid=52,iface=PCM,name='Playback Channel Map',device=2
    ; type=INTEGER,access=r----R--,values=2,min=0,max=36,step=0
    : values=0,0
    | | TLV size error (257, 8, 0)!
    If I read the Alsa kernel docs right, the VIA driver simply does not provide any option to disable auto-muting: http://git.alsa-project.org/?p=alsa-ker … xt;hb=HEAD.
    I would be glad if I had misread/misunderstood something or there were any other means of achieving what I am after? All I found so far is lots of posts where auto-muting did not work but very few people seem to want the opposite. FWIW, my old installation of Ubuntu 11.10 was working fine in that regard, i.e. it probably did not support auto-muting for my hardware.
    Last edited by fax (2013-03-24 20:20:19)

    Solved, well, good enough for me anyway. In alsamixer, I enabled "Independent HP". Independent HP means that two of the six surround channels get diverted to the headphones. Alsa creates a second device, one for line out and the other one for the headphones. It is a very neat feature that is meant to allow you to e.g. do a voice call with your headphones while you play music through the speakers at the same time. I can now choose in PulseAudio whether I want output to my headphones or the speakers. It required that in /etc/pulse/default.pa, I added the line "load-module module-alsa-sink device=hw:0,2" after this paragraph:
    ### Automatically load driver modules depending on the hardware available
    .ifexists module-udev-detect.so
    load-module module-udev-detect
    .else
    ### Use the static hardware detection module (for systems that lack udev support)
    load-module module-detect
    .endif
    # Take Independent HP into use.
    load-module module-alsa-sink device=hw:0,2
    All this really is a work-around for two bugs:
    Call it a bug or a missing feature, but it does not look like the Alsa snd_hda_codec_via driver allows to disable auto-muting.
    Before the change to default.pa, PulseAudio already allows me to switch between two output devices - "analog output" and "analog headphones". "Analog headphones" however does the same thing as "analog output" and plays sound on the external speakers and not the headphones. I suspect that the PulseAudio module-udev-detect detects both Alsa devices but wires them wrongly.
    The above still doesn't give me what I originally asked, i.e. sound on both speakers and headphones at the same time, but I realized that I don't really need that. I just need a way to switch on speakers occasionally while my headphones are plugged in.
    Last edited by fax (2013-03-24 23:06:27)

  • How do setup an alert when a users password has expirying

    I am using Outlook 2013 via Corporate Office365 and I want to setup an alert via my Active Directory to send an email alert that users password is expirying

    You may also download the PS script from technet gallery available at : http://gallery.technet.microsoft.com/Password-Expiry-Email-177c3e27
    The script will query AD for the MaxPasswordAge value, and add that to a users last password set date, giving the expiry date. If
    the date is less than your Expire-In-Days variable, an email will be sent to user in the event that their password is due to expire in X number of days.
    To manage this task automatically, you can have a look at Lepide password expiration reminder(http://www.lepide.com/user-password-expiration-reminder/)
    that comes with the same enabled features. It remind the users when their password is about to expire by sending customized email notification based upon pre-defined date range. 

  • How to setup new sync when other devices not avaliable

    Firefox Sync creates a nice circle which you cannot get out of when you try to setup Sync and you don't happen to be sitting next to your other device. When you click "setup Sync" -> "I already have an account" it then presents you with a key to use on one of your existing machines to add this one (no machine nearby), so I click on the link "I don't have the device with me" which then asks you to sign in with your username and password and provide a sync key from an existing machine! DUMB. I suggest some way on the Sync Website to add the sync key for the new machine there or something. I don't happen to be home with my other machines, and am trying to setup a new machine. I do NOT want to setup new sync info!

    Hi Madskiier,
    My suggestion is to copy the Sync key and take it to the other machine with you. You can carry it on a USB memory or send it by email.

  • Screen Auto-Dims, when Auto-Dim is Off

    I did the SL upgrade a few days ago on my 2008 MBP, I did a clean install. And now I've been noticing my screen will dim a few ticks from full brightness by itself while I'm working. My power is plugged in and I have made sure auto-diming is set off. ONce it dims I have to hit F2 to bring it back full. I never had this issue with 10.5

    When does this occur? There is another option in the Energy Saver settings that will dim the display before it goes to sleep, but that doesn't sound like the problem you're having. Just thought I'd throw that out there as a possibility.

  • How to disable auto notification when Leads assigned

    Hi,
    Does anyone know how to disable or modify the automatic notification that gets sent to owner of Leads when rules assign Leads?
    I've found where to change the "from" email address but want to change/stop these altogether
    Thanks
    Example below:
    -----Original Message-----
    From: XXXXX
    Sent: Monday, November 17, 2008 10:09 PM
    To: XXXXX
    Subject: Lead(s) have been assigned to you in Oracle Siebel CRM On Demand
    192 Lead(s) have been assigned to you in Oracle Siebel CRM On Demand.
    Click the following URL to review your new Leads:
    https://secure-XXXXX.crmondemand.com/OnDemand/user/LeadsHomepage

    At this time there is no way to disable this email notification to the owner of the lead as a result of going thru the lead assignment rules.

  • How to restore auto complete when composing emails?

    Up until 2 days ago, when I compose a new email, there would appear a drop down box of email addresses starting with that
    letter, I could then click on the correct email address and enter.
    And now suddenly it does not work. Even frequently used email
    addresses have to be typed in it's entirety. I loved that short-cut
    feature and have no reason why it quit??
    Network Solutions said it was a browser situation since my
    setting is correct with them.

    In the Hub, tap the three dots overflow menu icon.
    Settings > Recent Contact Management.
    Delete those you don't want appearing.
    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

  • How to setup Recovery drive when upgrading Vista to Win 7.

    I am preparing to do a clean install of  Windows 7 onto a hard drive that shipped with Vista Home and the Recovery partition.  I want to reuse the recovery tools along with Windows 7 in the recovery partition.  I have the original recovery disks. 
    What steps do I need to do to replace the operating system on the recovery partition with Win 7 and retain all the other HP tools?
    Thanks,
    Luke

    The short answer is NO as it only has Vista drivers.  You should go to the WIndows 7 upgrade page to get more information on how to perform your upgrade.  It will also tell you if your system is supported or not, and any precautions that need to be taken prior to performing the upgrade.
    Whatever you do be sure to backup ALL of your date just in case.
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • How to disable auto lookup when typing in address

    I don't like the new automatic lookup that happens when I type a web address. For example, if I start typing google.com it comes up with new.google.com. I don't want it to search within the text. I am not one of those people who thinks the address is a search box. I know what address I want to go to. I don't use bookmarks. I just want it to start with the letters I type in (except www).
    If I type goo it should come up with www.google.com but not new.google.com.

    HI Gregg,
    About the only thing you can do for the time being to avoid this is use Private Browsing which you can enable from the Safari Menu Bar. Click Safari/Private Browsing. Safari won't remember pages you visit, search history or your AutoFill information from which Safari fetches data from when you type a url in the address bar.
    Providing feedback here will help.
    http://www.apple.com/feedback/safari.html
    Carolyn

  • How do i stop my laptop from auto dimming in dark rooms?

    My computer has recently started auto dimming when in darker rooms of the house, i know its an issue with the light sensor because I've held a flashlight to it and it instantly brightens, however, i have unchecked the "automatically adjust brightness" box in the system settings and it continues to dim it's self even when unchecked and brightness is on full. It isn't the result of any recent updates, as there haven't been any in some time and it's only started in the last two weeks. please help!!

    Intel-based Macs: Resetting the System Management Controller (SMC)

  • Auto dimming on MBP-Retina

    I've noticed that my MBP-Retina doesn't auto dim when the room gets darker like my old MBP.  Is there a setting that allows for this?
    -- Skifahrer7

    I have exactly the same issue, not good for driving using GPS driving! For the avoidance of doubt, the phone is not plugged in when driving but dims by itself; brightnesses gone down to 0 itself whether auto-brightness is on or off; even after driving when not on Google GPS I found the phone to be dimming...
    This problem seems to only occur only when using Google GPS. This problem goes away when using GPS function via Contacts i.e when the address fields are populated selecting that takes you to maps, with the option to navigate or drive to...
    Hope this helps - if anyone knows how to use the Apple Navigation without using Contacts already saved in the phone ie enter the postcode only without having to create the contact and address first please let me know!
    JT

  • Auto-dimming LCD and stripes

    The unit is a X121e with 64-bit original preinstalled windows 7.
    Stripes are appearing when moving cursor in Firefox and " Thunderbird. As both are Mozilla products, maybe it is a developer dependent problem. Restart didn't help. Just asking whether anyone encountered something like this.
    Second problem: Screen got totally (and auto) dimmed when bringing Google chrome or firefox in foreground. Restart did help, but want to know if I missed anything. Same question here: did anyone have this kind of problem?
    Thanks

    I would like to share with you that it might be because of software issue.
    To diagnose, I would suggest you to please update the graphics driver and also update the Bios of your Notebook from the below mentioned web link.
    http://support.lenovo.com/en_US/downloads/default.page?
    After this, please restart the Notebook and check if the issue resolved.
    Regards,
    Sameer
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution".! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • How to setup a new apple ID when one is already connected to ipod

    how to setup a new apple ID when one is already connected to ipod

    See:
    Frequently Asked Questions About Apple ID
    Just what do you want to do?

Maybe you are looking for

  • Itunes 9 and itunes 10 on one computer

    I have two accounts on my computer, one for me and one for my wife. I use itunes 9 (for my music and ipod) and she needs to use itunes 10 for her ipod (nano g6) and music, our tastes are vastly different. Can I install itunes 10 on her account with o

  • 49 Service Error - Turn Off then On - LaserJet Pro 200 M276nw

    I was adding to another post for a different printer but didn't want anyone with MY printer to MISS this problem. ***UPDATE*** (at least for my LaserJet Pro 200 M276nw) I have found the root cause but will need further assistance from someone at HP t

  • HT1363 my IPod Classic 160GB. hold switch stuck to "hold"

    Have already "restored" the factory settings yet the hold switch doesn't seem to function. It remains locked regardless of how many times I slide it? Any thoughts?  Padre

  • Disk are not appearing in DBCA

    i have windows xp oracle 11g standard edition release one. When i use DBCA for ASM instacne it does not show me disk within 'create disk group' page, i have raw disk and stamped wth ASM. Initially it was showing me those raw and asm stamped disk as c

  • HP C5380 DVD/CD Printing Feature Not Compatible With Mac

    I purchased this all-in-one specifically for the feature of printing direct to cd/dvds. Other functions work fine but this will not. After contacting HP Support I am informed that this feature is not compatible with Mac. Surely this is false advertis