CrazyEngineers
  • Ever thought of doing something after starting the application and forgot it when something new comes? Let me go through a small script, which "speaks" when you start an app, reminding you of something! 😀

    Using a bit of simple VBScript you can create smart launchers, or "smartcuts" that talk to you and alert you or remind you to do things when you start an application such as change the default printer.

    Enter the text in line one you want to be spoken when you click the shortcut, enter the path to the application in line two, and save to your desktop as a vbs file:
    Message="Change the default printer to black and white"
    Application="C:\Program Files\Mozilla Firefox\firefox.exe"
     
    WScript.CreateObject("WScript.shell").exec Application
    WScript.CreateObject("SAPI.SpVoice").Speak Message
    Do say your tryouts! 😀

    PS: This works only on Windows, as it uses Microsoft VBScript! Others, I will try finding some shell script! 😔
    Replies
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a member of our community. Consider creating an account or login.
Home Channels Search Login Register