Looking for timer / bell program.

Hey all,
I am looking for a program that will play a sound / music file at various, specific times during the day, similar to a schoolbell.
ex. I would like at 10:45, 11:24, 1:30 a sound event etc.
Any suggestions? I haven't found anything useful. Any widgets, or program options would be welcome.
Thanks in advance

Can't you use iCal's built in Alarm system? If you create a new event in iCal you should be able to set the alarm to do something, ie ring a bell. If the bell on your computer isn't enough, it's possible you could have it open an Apple Script which rings a more appropriate bell. I've not tried that, but it might work. HTH.
-NifflerX

Similar Messages

  • I am looking for a good program to edit existing websites for about $99.00

    I am looking for a good program to edit existing websites for about $99.00 or less, any suggestions?
    Thanks,
    New MacBook owner.
    Martin

    Welcome to Apple Discussions!
    http://www.barebones.com 's Textwrangler. Use http://www.anybrowser.org/ as a guide for good HTML composition.
    If a web editor does not give you power to do full text editing and claims to be WYSIWYG, don't believe it. Chances are, it uses assumed standards of specific browsers, which are not fully http://www.w3.org/ compliant.

  • I am looking for a flowchart program similar to Visio or SmartDraw for pc's.  Anyone have experience?

    Hi -
    I am looking for a flowchart program for my MacBook similar to Visio or SmartDraw, both of which I used with my PC before switching over.  I would like the following features:
    User-friendly
    connector lines that follow the shapes when you move a shape
    Shapes that snap to gridlines
    The ability to move the whole diagram when desired (v. shape by shape, connector by connector)
    Help available if you have problems
    I don't need a lot of sophistication.  It would be nice if it had some fun features - colors and fun connectors, etc.
    Thanks!

    This article has 6 ways to do it.

  • Remote opportunity, Looking for assistance in programming a transfer function model

     Hello,
    Please see attached transfer function model. I am looking for assistance in programming in Labview 2014. Inputs are coming through cRIO and into the model and the model is determining the value of certain outputs being sent back to the cRIO, please PM if you are interested and we can discuss in more detail. Thanks!
     

    Hello,
    I could help as I've done this sort of thing for many of my clients. Let me know what you would like done.
    Thanks.

  • What is the best program to use on Mac for editing, cropping photos from my computer. Looking for a free program that is good.

    What is the best program to use on Mac for editing, cropping photos from my computer. Looking for a free program that is good.

    If your needs are limited to those tasks then both Preview and iPhoto will fit the bill They are already on your Mac. There is a free download from Google called Picasa available here:
    http://picasa.google.com/
      It works much the in same manner as iPhoto. For some really heavy duty work there is GIMP available from SourceForge:
    http://www.gimp.org/macintosh/  Also a free download.
    Message was edited by: kennethfromtoronto

  • Looking for a Maps program for Cloud for Customer

    Hello,
    I'm looking for a maps program like Microsoft Bing Maps for SAP ByDesign that is compatible with Cloud for Customer. In the process of finding this forum, I can see Cloud for Customer and Business by Design are related but are these program compatible?
    Is there any documentation confirming these programs are compatible? A how to for matching them up?
    Is there an alternative that I could use with Cloud for Customer to achieve the same thing?  
    Thanks,
    Gabriel

    "SAP has updated to HTML5 interface and now has Google Map integration and that we now have it enabled."
    It looks like this has worked out, thanks everyone.

  • Looking for good backup program

    im using a external HD for my music, copied from itunes. Im looking for a program so when i remount the drive it will reconize any new music or changes i have made to my music files. Thanks

    lawrence gelman wrote:
    im using a external HD for my music, copied from itunes. Im looking for a program so when i remount the drive it will reconize any new music or changes i have made to my music files.
    sorry, i fail to understand. if your music is on the external, changes or new music would be done on/going to the external. so when the drive remounts what will be there to recognize ?
    do you have a separate library on the external and your startup disk ? or did you split one library, partly on the internal and the rest on the external ?
    also, why are you posting in the time machine forum (TM, incidentally, is a backup program) and not in the iTunes forum ?
    JGG

  • Looking for "file management" program

    All,
    I am a collector of hundreds and hundreds of magazines, articles, etc. In recent times, I've been scanning articles from magazines and school books to digitize them.
    I'm looking for a program that will allow me to "tag" files and file them accordingly (sort of like del.icio.us).
    Any ideas?
    Thank you,
    Lindsay

    LindsayB63,
    Well, other than third-party software (and you have already received at least one recommendation there; will probably receive several more), a few things come to mind.
    Off the top of my head, you could "tag" the resultant files with comments, or at least creative names, place them all in a central library (perhaps sorted into folders alphabetically or otherwise), then create a collection of "Smart Folders" to sort/show them according to specific criteria. You could have "standard" smart folders that are persistent, or you can use Spotlight at any time to create an "off-the-cuff" search for a particular criterion, or criteria.
    In the end, your searches will only be as good as the system you develop when adding comments/keywords (given that your scans are probably images, not the results of OCR software). Which brings up another subject. If searching this content is important enough, you might want to invest in good OCR software, to convert the scanned images to real text. This text could then be searched directly, instead of second-hand via your comments and keywords.
    Scott

  • Help with calculation code!! for Times tables program

    I am creating a times tables program that lets the user select the Times tables, number of lines required and the type of table (multipy, addition etc).
    So if user selects 12 times tables and 4 lines it should look like this on the screen:
    12 x 1 = 12
    12 x 2 = 24
    12 x 3 = 36
    12 x 4 = 48
    and so on...
    Problem is that when I pass the info to the procedure in the below code I am not sure what I need to do to replicate the above.
    Appreciate some ideas! Here is code so far:
    class assign2{                                                                                                         // Begin Class
         public static void main(String[]args){                                                                      // Begin Main
              int table;                                                                                                    // Declare a variable
              int lines;                                                                                                    // Declare a variable
              char type;                                                                                                    // Declare a variable
              do                                                                                                              // Begin do - while loop
                   System.out.println("Please enter the times tables required (1 - 12)");
                   Keyboard.skipLine();
                   table = Keyboard.readInt();
                   if (table < 1 || table > 12)
                   System.out.print("INVALID ENTRY - Please try again and enter between 1 and 12");    // Error msg if invalid
                   System.out.println();
            }while (table < 1 || table > 12);                                                                      // End do - while loop
            do                                                                                                              // Begin do - while loop
                 System.out.println("Please enter the number of lines required (1 - 12)");
                 Keyboard.skipLine();
                 lines = Keyboard.readInt();
                   if (lines < 1 || lines > 12)
                   System.out.print("INVALID ENTRY - Please try again and enter between 1 and 12");    // Error msg if invalid
                   System.out.println();
            }while (lines < 1 || lines > 12);                                                                      // End do - while loop
              do                                                                                                              // Begin do - while loop
                   System.out.println("Please select the table type from one of the following (A - D): ");
                   System.out.println();
                   System.out.println("A: Multiplication Tables");
                   System.out.println("B: Division Tables");
                   System.out.println("C: Addition Tables");
                   System.out.println("D: Subtraction Tables");
                   Keyboard.skipLine();
                   type = Keyboard.readChar();
                   if (type != 'a' && type != 'b' && type != 'c' && type != 'd')
                   System.out.print("INVALID ENTRY - Please try again and enter either A - B - C - D");      // Error msg if invalid
                   System.out.println();
              }while (type != 'a' && type != 'b' && type != 'c' && type != 'd');                              // End do - while loop
                   switch(type){                                                                                          // Begin Switch
                        case 'a': getMultiply(table, lines); break;
                        case 'b': getDivide(); break;
                        case 'c': getAdd(); break;
                        case 'd': getSubtract(); break;
                   }                                                                                                         // End Switch
       //Procedure to calculate the Multiplication Times Tables//
              static void getMultiply(int table, int lines){
       //Procedure to calculate the Division Times Tables//
              static void getDivide(){
                   System.out.println("This is divide!!!");
       //Procedure to calculate the Addition Times Tables//
              static void getAdd(){
                   System.out.println("This is Add!!!");
       //Procedure to calculate the Subtraction Times Tables//
              static void getSubtract(){
                   System.out.println("This is Subtract!!!");
         }                                                                                                              // Ends Main
    }                                                                                                                   // Ends Class

    I wasn't being rudeYes, you were.
    or expecting an immediate
    responseYour posts suggested otherwise.
    I was simply expressing how I was stuck with
    the problem.That's not relevant to anybody here. What is relevant is your specific question, which I don't see in your initial post. Just "how do I do this?"
    You know what, I am a beginner to this programming
    and it's people like you with your smug attitute and
    'KNOW IT ALL' behaviour that puts people like me off
    even looking to go down this road as a career.Given your attitude so far, I doubt you'll be missed.
    So, why don't you stop acting like a spoilt little
    child and stop pretending like you own this forum.Flounder was right: Nobody here likes that demanding, "Help me now!" attitude. Coupled with the fact that your question is very vague and the tone of your subsequent posts, you're not doing much to encourage anyone to volunteer their time to help you.
    Not to mention that posting the same question multiple times is rude and annoying. It's very irritating to spend time answering a question, only to find out somebody else has already answered it.

  • Looking for Printer Test program

    I'm trying to find an ABAP program that will let me test out whether we have printers defined in SAP correctly.  Ideally the functionality I'm looking for would be an ABAP program that when run would display a list of all the printers defined in SPAD and then allow me to select one or more of them, and then print a page to each of the selected printers that would show stuff like: the name of the printer, the description, the type, etc, as well as instructions to mail or fax the output back to a contact.  The contact info could be hard-coded, or it could be defaulted with override capabilities.
    I had a program similar to this at another client, but it didn't do exactly what I wanted, but it sure came in handy testing out printers as you added them during a GoLive or office move.
    Any suggestions would be greatly appreciated.

    eRain makes Swfit3D (a stand alone app) as well as plug-ins
    for MAX and LightWave:
    http://www.erain.com/...a bit
    more money than you've suggested though...
    Poser also has Flash support, but I've never used it so I
    can't vouch for it:
    http://www.e-frontier.com/article/articleview/1597/1/281?sbss=281
    Hope that gives you some help!

  • Looking for this LV program

    hi member
    i am looking for this program in this web
    do any one have it??
    can i buy it
    http://sine.ni.com/cs/app/doc/p/id/cs-681
    best regards
    hi ?Q>

    If you "Read the Full Case Study" you find a contact address for further information on this matter. You should try this.
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Looking for must-read programming reference material

    I am relatively new to programming and would like a reading list of must-read programming references. I know several languages, but I am not looking for materials about any particular language; instead, I would like to read up on more fundamental things such as programming concepts, programming algorithms, programming paradigms,  computer architectures, programming style, etc. What are the classic, must-read books and articles that I should begin reading? Thank you for your suggestions.

    I've never used assembly for a 64-bit system, but I'm sure most of the same concepts apply.  In fact I'm pretty sure any change is analogous to the change from 16 to 32 which wasn't that drastic.
    With assembly language, learning the core concepts is the biggest step, the difference between 16 and 32 bit wasn't like learning a new language, rather it was just having more and bigger registers.  I don't do any actual programming in assembly - I dabbled a bit for fun, but I dont 'use' it.  But the concepts I learned through assembly have helped me in every other programming language.  Given that, I'm sure a book on 32-bit assembly would be useful for a 64-bit system.
    Consider too that assembly is a bit of a dying art.  Pair that with the fact that 64-bit systems are relatively new, and there won't be many people who can write a quality book about their lifetime of experience with 64-bit assembly.
    Lastly, (in this very disorganized listing of barely related points), 32-bit to 64-bit is also a trivial change compared to the various instruction sets that have been used.  If/when you understand the similarities and differences between the various assembly languages and instruction sets, is when you really start using the strengths of your particular architecture.  (I'm tempted to make a Matrix reference "There is no spoon").  My favorite assembly languages, just for the fun of it, are One-Instruction-Set systems.  When I realized that one single instruction used repeatedly can create the diversity of programs we use ... I was in geek heaven.  I put that day on par with learning about hardware-software interchangability, and the fact that our modern computers are made up of a vast series of only one type of logic gate ... and the day I learned some lamba calculus ... (end geekgasm)
    Anyhow, learning to 'think' in assembly language can help all your programming (IMHO) regardless of whether you ever speak to your computer in that language.  So, yes, I'd say the 32-bit book would be worth reading even if your current computer is 64.

  • I looking for time effect and i forgot its name

    Hey guys,
    Im looking for an effect i really want to use but i forgot its name. Its basically time changing like back,forward,back,forward you can mostly see it on some skate movies or somethink like that if anybody knows what i mean pls help me im desperate. I saw a tutorial on youtube a while back when i didnt need it but now when i need it i cant find it thx in advance

    Karol401 wrote:
    I i know this can be done by time remapping but i dont know how exactly if you could please explain or post a yt video i would be glad
    Todd's link includes tutorials and explanations aplenty.

  • Looking for the right program

    I would like to make a stop-action movie, essentially a slide show with some rapid frame changes, that has a coordinated sound track.  Which Adobe program, if any, would do this?

    That is a pretty big project. I have never used Premiere Pro for only pictures so I don't know how good it will be at this. 3000 pictures/30gigs is a lot of data for a program to handle and organize. And if you also want to add contextual content and audio clips then a lot of easier to use programs just won't cut it. You might really need an Adobe program.
    It if was a small onetime project I was going to suggest Corel VideoStudio, but definitely not for the amount of data you want to use. http://www.youtube.com/watch?v=mC88QA7xyyE. For really small projects Windows Movie Maker would probably do the trick haha.
    Most stop-motion software are designed to help you with the actual shooting of the frames, but you already have them. You still might want to look at these two programs to see if they'll work for you.
    http://www.dragonframe.com/
    http://www.stopmotionpro.com/
    Just because they might be better at organizing large amounts of pictures then a program designed around editing video.
    If Premiere Elements would do the trick I'd say that's a good option, or if it's too limited Premiere Pro. I'd go with the CS6 version, not CC. Because you get to keep a perpetual license so you can continue to use it in the future without monthly payments. But that's my biased opinion against renting software.
    This thread should probably be moved to the Premiere Pro section where he can get better help from people who have more experience with using large amounts of pictures to create a movie.

  • Indefinitely looking for Time Capsule when idle

    I have 2 Time Capsules set up (ethernet to router) and are working fine, except one issue I've noticed: I have Backup 3 set to back certain things up. If the computer is idle (not asleep, just idle) and a scheduled backup (via Backup 3) begins, it looks for my time capsule indefinitely.
    If I load up Finder and go to the drive to where I can see the folders on it, Backup will kick in and begin working fine. I do not need to enter any password to begin using the drive, I just need to click to it and suddenly it becomes "available".
    Anyone know how to fix this? I use my other Time Capsule for Time Machine, and that's been behaving fine.

    I am using the Airport Extreme as my router. The 27" is wired straight to it...the other 2 computers connect to it wirelessly.
    If you are not already, you need to be aware that Apple does not support Time Machine backups to AirPort Disks (USB drives attached to the 802.11n AirPort Extreme Base Stations). Although, it can be done, there are a number of reports that backups become corrupted over time. (ref: Time Machine doesn't back up to AirPort Extreme AirPort Disks)
    As far as a NAS device, it should work just fine.

Maybe you are looking for