How to make mac speak when logging on or waking up

hi, i was wondring how you make your mac speak to you and say welcome or hello everytime you log on or wake it up.
if anybody knows, plesae help.
Thanks!

A login greeting is simple.  Make a small application with Automator:
1. Choose Application from the Automator template.
2. Add one action: Run Shell Script.  In this action, replace cat with say welcome.
Save the application and store it somewhere.  (The Applications folder is a good choice.)
Open System Preferences, choose Accounts, then select the account you want to target.  In that account, select Login Items.  Drag your new application to the login item window to create a link to the file.  Close System Preferences.
Each time that you login to that account, the application will run and the Mac will say "Welcome."   Once it becomes annoying, return to the Login Items to remove the link to your application.
A spoken wake-up message is trickier, but it can be done.  See these discussions: https://discussions.apple.com/message/3240458 and http://hints.macworld.com/article.php?story=20060908113605812, then get a copy of SleepWatcher, http://www.bernhard-baehr.de/.

Similar Messages

  • How do I delete ..when logging into my email.. it populates my entire email address .. how do I stop this ?

    how do I delete.. when logging into my email.. it populates my entire email address.. how do I stop this ?????

    Hi Roam.
    Message understood.
    I managed to delete me and substitute her as Administrator. Thanks.
    you ask what machine I am now using, I am a Windows man, currently using XP Pro SP3 and have been for 10 years. A friend from the Education Dept gave me a phased out Mac with OS X in an endeavor to convert me.
    At first I was very impressed but as time went on I found that the Mac was not as user friendly as I had thought. The terminology was foreign to me, and where Windows placed thing automatically into place, with Mac I had to physically pick up and re-locate programs.
    But what really turned me off was that nearly every thing that I wanted to do I had to go to the net and try and find drivers or whatever to overcome my problems.
    A point in question, I purchased an external USB dual layer DVD burner. When connected to XP, it was recognized instantly and within a few minutes I as up and going. With the Mac, it is not even recognized let alone getting it to work!
    And then there are all the other little things like printing. In windows every thing from every page I can print, Ctrl + P. With the Mac, I am still trying to find out how to print a page from the Help menu.
    Enough said. My daughter is interested and that is all that counts. Let her work it all out, she is smarter (an younger) than me.
    Regards

  • How to make it selected when clicked and open popup

    Hi,
    I 've a form in the parent page with many form elements.
    I've 2 radio buttons with values "Yes" and "No". I am opening a modal popup when clicked on "Yes" radio button. The modal popup is opening fine.
    But when I click "Yes", it' s not selected. After modal popup is closed, when I return to parent page, the option "Yes" is still not selected.
    How to make it selected when clicked and open popup?

    Perhaps try moving the application to your preferred desktop and then right-click it's dock icon > options > Assign to This Desktop.

  • CS6 Fluid Grids - how to make images resize when page is resized? [was: Hello]

    I am new to fluid grid layouts in Dreamweaver cs6, I want to insert a GIF file on my index page but I do not know how to make it so when the page shrinks the GIF or image shrinks as well. The only code that I have found is
    img, {
        max-width: 100%;
    But this code already exists in the css file when you create a new fluid grid based layout
    img, object, embed, video {
        max-width: 100%;
    can anyone help a newbie please..

    this is my source code
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Kyle Childress Foundation</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="/layout.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="animation"><img src="images/images/kyleanimation2014gif2.gif" alt="kylechildressfoundationanimation"></div>
    </div>
    </body>
    </html>
    this is my css
    @charset "UTF-8";
    @import url("/kyle.css");
    /* Simple fluid media
       Note: Fluid media requires that you remove the media's height and width attributes from the HTML
       http://www.alistapart.com/articles/fluid-images/
    img, object, embed, video {
        max-width: 100%;
    /* IE 6 does not support max-width so default to width 100% */
    .ie6 img {
        width:100%;
        Dreamweaver Fluid Grid Properties
        dw-num-cols-mobile:        5;
        dw-num-cols-tablet:        8;
        dw-num-cols-desktop:    10;
        dw-gutter-percentage:    25;
        Inspiration from "Responsive Web Design" by Ethan Marcotte
        http://www.alistapart.com/articles/responsive-web-design
        and Golden Grid System by Joni Korpi
        http://goldengridsystem.com/
    /* Mobile Layout: 480px and below. */
    .gridContainer {
        margin-left: auto;
        margin-right: auto;
        width: 87.36%;
        padding-left: 1.82%;
        padding-right: 1.82%;
    #LayoutDiv1 {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #animation {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #image {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
        width: 90.675%;
        padding-left: 1.1625%;
        padding-right: 1.1625%;
    #LayoutDiv1 {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #animation {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #image {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
        width: 88.2%;
        max-width: 1232px;
        padding-left: 0.9%;
        padding-right: 0.9%;
        margin: auto;
    #LayoutDiv1 {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #animation {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    #image {
        clear: both;
        float: left;
        margin-left: 0;
        width: 100%;
        display: block;
    the animation GIF is 700 x 908
    I changed the code from max-width to just width 100% but it still did not work ,, please help

  • How to make session invalid when user refresh the page?

    How to make session invalid when user refresh the page?

    I have a <form> in a JSP file that has another JSP file as an action.
    I have main.jsp that has <form> with action.jsp file as an action.
    Now when I submit the <form>, request forwarded to action.jsp and it will take the action. But this file is taking so long, hence user refresh the page again and again, hence duplicate request processing is occuring.
    I want to prevent this.

  • Hello, I have a macbook pro late 2011 15 inch with 4 gb ram. My macbook runs extremely slow when logging in after waking up from sleep, locking up and I am unable to use the keyboard. Is there a fix?

    My macbook runs extremely slow when logging in after waking up from sleep, locking up and I am unable to use the keyboard. Furthermore, when just using safari to watch streaming television, my computer gets really slow, and locks up, and the dock appears blank and I sit here frustrated. Anytime i wake up my computer, my keys don't respond and I've waited at most 3 minutes untill i can type in my password. Even sometimes when i type in my password and hit enter, it takes forever to open up my mac. I have barely used any storage in my macbook, since i only use it for college, and I have run clamscan wiht no viruses showing... Any ideas?

    when just using safari to watch streaming television, my computer gets really slow, and locks up, and the dock appears blank
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output andWi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • How to make Mac Mini (Early 2009) sleep in Lion?

    After upgrading to Lion, my Mac Mini (Early 2009) stopped going to sleep from the Apple menu or from the keyboard. The problem has persisted with all point releases of Lion. The computer went to sleep with the same peripherals just fine under Snow Leopard.
    The display goes to sleep but the computer itself neither suspends nor hibernates. The power light is lit and doesn't pulsate. Measuring how many watts the device draws from the power socket shows that it's not sleeping. It wakes up so quickly that it must be only the display sleeping.
    Console log shows nothing when trying to sleep.
    Changing the hibernate mode from the default 3 to 25 makes no difference. Running the PleaseSleep app make no difference.
    How to put Mac Mini (Early 2009) to sleep (preferably hibernation--not just suspension) under Lion?

    Hello,
    Open console in Applications>Utilities, check the system log for the date/time of the last problem  & the Startup right after that for clues.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • While using mac as wireless router ; How to make Mac sleep?

    Hi all.
    I set up my macbook to act as a wireless router [sharing it's wireless signal, via the "Sharing" settings in System Preferences]
    using this guide
    http://www.macinstruct.com/node/118
    I am wondering how to make my mac sleep while this wireless-sharing setting is enabled?
    Since I have enabled this setting, the mac will not sleep, however, the mac will sleep when I disable it.
    I am also wondering ; [if it is possible to make the mac sleep while this setting is enabled], can I still use the mac as a wireless router even while it is asleep?
    Or does it need to be awake to function as a router?
    Thanks very much in advance for any help!

    Thank you very much everybody for your answers.
    Dominic23
    and
    BobTheFisherman
    Yes, I kind of thought what you are saying would be the case.
    It makes "sense" that when the computer is asleep, so are all it's functions,
    but I *WISH* there was an option to keep the airport functioning even while the computer is asleep.
    Bob, I don't think having the OPTION to leave the airport on while mac sleeps would defeat the power-saving feature of the computer (:
    I know the "best" way to share wifi is with a router, but for me, a router just another piece of plastic I don't need. All I need to do is share wifi in a small space [my room] from my mac to my iPad and ipod touch.
    I like to use my ipad as a reader, and when I am reading, I may be sitting down for many hours just reading from the ipad. It doesn't make sense to leave the mac running during these long periods just for a wireless signal, so I may sadly buy a router ):
    Anyway, I get what you are all saying, and thank you for telling me the current limits of this function.
    Cheers! (:

  • Can 3 vertical Radio Buttons span 3 rows in a table? AND how to make form highlight when radio butto

    I am trying to add 3 grouped vertical radio buttons where one is on each line of a 3 row table. When I group the 3 buttons it squeezes them into one row, is there a way I can have them grouped and one in each.
    Also, I would like to know how to make part of the form highlight when one of the 3 buttons is selected

    Hi,
    If I am not wrong, a table cell can hold only one component or none. In order to place the radio group to different positions vertically, you can use subforms instead of table.
    Asiye

  • How To Make Text Disappear When Mouse is On a Button?

    Hello,  I'm completely new to Flash and well I need some help. I created a page that has static text in the center.
    The page has buttons on side and when I rollover a button text appears, but the problem is that when I rollover a button, the static text in the center is there and I want to hide it as I can't read anything because the texts are overlapped.
    How do I make the text in the center disappear/hide when I rollover a button and how do I make it reappear when the the mouse is off the button?
    I hope what I am explaining makes sense.

    You can assign onRollOver and onRollOut code to the buttons to make the text dispappear, but you'll need to make the text a movieclip with an instance name that you can use to target it to turn it invisible.  In the simple example below, the button has an instance name of "btn" and the text movieclip has an instance name of "text_mc"
    btn.onRollOver = function(){
          text_mc._visible = false;
    btn.onRollOut = function(){
          text_mc._visible = true;

  • How to make attachments "show" when sending mail?

    Hello
    How can I make sure that when I add attachments to my mail it would show in the body of the mail on the receivers end,
    regardless of what mailprovider or program he/she is using. (e.g. a pdf file)
    Any clues?

    If you make sure your message is in rich text (Format -> Make Rich Text, if it says Make Plain Text it's already rich text) and make sure that you're sending Windows-friendly attachments (Edit -> Attachments), that will increase the chances. But there is *no way* to guarantee that an attachment will be displayed inline at all, since different mail clients work differently and different people have different settings... many people prefer plain text e-mails, and there is nothing you can do about that.

  • How to make internal speaker of a computer system on with a java program

    hi experts........
    i got a requirement that i have to just make a sound when i get some exception. is this possible to make internal speaker on from a java program? if so please tell me the solution
    thanks
    Naresh G.

    thanks for the solution it is making default
    fault beep ....... what if i explicitly neet to put
    on internal specker rather than default beep of
    windows....You can't. Some systems might not even have speakers. Standard sound output will be done using the sound card.
    and tell me some solution .... first let me tell
    tell u the situation...
    it is a web application , a jsp contains an
    ns an input type text...i will give some input in the
    text box where i have to play a wave file through
    javascript function if that input is wrong...... and
    it should happen in a javascript function ....... So go ask in a Javascript forum.

  • How to make mac projector on a pc computer

    When I create a mac projector on a pc (flash 8 professional),
    the file comes out as zip. any suggestions how to generate mac
    projector on a pc that will work. Thanks, Kinga

    inside that zip file is the mac projector (and the mac will
    automatically
    read it), so don't worry and use it
    "kinga_d" <[email protected]> escribió
    en el mensaje
    news:eb306t$kec$[email protected]..
    > When I create a mac projector on a pc (flash 8
    professional), the file
    > comes out as zip. any suggestions how to generate mac
    projector on a pc
    > that will work. Thanks, Kinga

  • How to make phone vibrate when call is answered?

    Hi!
    Does anybody know how to make a BB phone (Bold 9700) to have a short vibrate when your call is being answered, so that you don't have to look at the phone or hold it to your ear when making a call?
    Appreciate any advice, thks!

    Hello Daven02,
    You might want to try using a bluetooth headset as there is no way to enable a vibration when a call is connected.
    You can find a variety of supported headsets at the Shop BlackBerry website.
    Thanks and have a great day!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How to make round curves when you are animatting with the Rec mode?

    Hi! I am making a project in motion. I recored a freind writing words and stuff in the roof of my house with two flashlights. My plans was to follow the lights with motion traking: Analize move or match move. And then add a particle emmite for making something like this: http://www.youtube.com/watch?v=MZf2W3S7gV0&feature=fvw . When i tried to make the match move it was imposible. So i desided to make it manually with the REC button. And it work perfectly, the only problem is that it can's achive the round cruves (bezier like). I can only make squared like turns and it looks awful. I have also tried bezier as a path but i don't know how to make the particle emmiter follow it with different speeds, becouse the movement of the flashlight is inconstant.
    What can i do to make a round curved path and make a particle emmiter follow it with the rec button with the different speeds of the flashlights? Please help me!!!! I have to deliver this work for tuesday!
    Thanks for you time y hope you can help me out as soon as possible.
    Juan Javier.
    PD Sorry for my english! jajajaja.

    Juan Javier Ibarra Pitts wrote:
    When i tried to make the match move it was imposible.
    Hi
    Why was it impossible?
    It sounds like tracking is the only way your going to achieve what your after given the way you've shot your footage and the spatial and temporal nuances therein.
    You'll find comprehensive instructions on how to track particles to footage starting on page 49 of this document:
    http://manuals.info.apple.com/en/MotionSupplementalDocumentation.pdf
    Regards.

Maybe you are looking for

  • Apple mini displayport to vga cable. ...doesn't work. help.

    Tried hooking up my mac mini using the apple mini displayport to vga cable to my 22" acer monitor but im getting nothing. At the same time I hooked my tv to the hdmi connection and could see in the display settings on the mini that a dialogue box for

  • Alert based on Batch Expiration Date

    Scenario: Batch Managed Items Type: for every transaction Goods receipt PO >  Batch setup window > "Expiration date" ( activate expiration date field from form settings)  > set date Requirement: An alert to be sent to the purchase dept. user 10 days

  • HELP! Can't connect on 2 or more wireless connection

    I have WRT110 Linksys wireless router. I also have the latest firmware. fw 1.0.04. I have no problems connecting wired connections(2 PCs) and 1 wireless connection. However, when i tried connecting 2 or more wireless connections(3 laptops). All compu

  • Best way to implement a upload to developer feature?

    I wish to implement a feature in a guessing game I am developing which allows the user to upload a database of AI questions and answers they have on their phone. I need to upload to a server for storage (I will try ssh or https if possible) or onedri

  • SSO2 configuration for 4.6C R/3, Kernel 46D

    After "Activating" my SSO configuration (transaction SSO2) when I rebooted my machine I get the following error: - Function SSFP_GETAPPCERTIFICATE Return code 2 RFC destination NONE - Function SSFP_GETCERTIFICATELIST Return code 2 RFC destination NON