Using Mac OS Dictation in Logos for notes, sermons, etc..

Keith Aguila
Keith Aguila Member Posts: 2 ✭✭
edited December 2024 in English Forum
I am using the Mac version of Logos.  I love it 100%. Recently updated to logos 8 and love all the new features. One thing that I often try to take advantage of is the Mac OS is the built-in dictation and I  sometimes use dictation to enter notes or thoughts into the computer. I recently tried it with the notes in Logos 8 and discovered it does not work. It seems that 8 does not support dictation that is built into mac os. I understand that this mac feature is not currently used.  I would love to see this feature enabled.  Has anyone else tried to use dictation?  Did you use and outside the app?  Are there others that would like to see dictation enabled in the mac version?

Comments

  • Chrys Jones
    Chrys Jones Member Posts: 7 ✭✭

    I just noticed the same thing. In the meantime, we can use a sticky note to dictate and then copy/paste into Logos.

  • Dr. Mike Fabarez
    Dr. Mike Fabarez Member Posts: 2 ✭✭

    Agreed. This functionality would be very helpful to be included soon.

  • Bodacius Hodges
    Bodacius Hodges Member Posts: 1 ✭✭

    It seems to work only if you use Logos in the browser, which is not a big deal for me. 

  • ds. P.J. Kotze
    ds. P.J. Kotze Member Posts: 120 ✭✭

    I am using the Mac version of Logos.  I love it 100%. Recently updated to logos 8 and love all the new features. One thing that I often try to take advantage of is the Mac OS is the built-in dictation and I  sometimes use dictation to enter notes or thoughts into the computer. I recently tried it with the notes in Logos 8 and discovered it does not work. It seems that 8 does not support dictation that is built into mac os. I understand that this mac feature is not currently used.  I would love to see this feature enabled.  Has anyone else tried to use dictation?  Did you use and outside the app?  Are there others that would like to see dictation enabled in the mac version?

    We are in Logos 10 and I still struggle with this.

    So, I created a small AppleScript.

    1. Compile the Script as L4Dictation.app
    2. Allow Accesability for the script
    3. Go to where you want to dictate into Logos.
    4. Run the Script (maybe from a shortcut in Logos)
      1. It will popup an InputBox.
      2. Turn on your Dictation by pressing your Dication Keyboard Shortcut.
      3. Dicate as normal into the InputBox.
      4. When finished, stop Dictation.
      5. Press "ok" on the inputBox.
    5. The L4Dictation.app will paste your text into Logos.

    Code

    -- You can improve the code to your liking

    set userInput to display dialog "Please dictate your input:" default answer "" buttons {"Cancel", "OK"} default button "OK" cancel button "Cancel" with icon note

    if button returned of userInput is "OK" then

    set the clipboard to text returned of userInput

    tell application "Logos" to activate

    tell application "System Events"

    keystroke "v" using {command down}

    end tell

    end if

  • Kevin A. Purcell
    Kevin A. Purcell Member Posts: 3,421 ✭✭✭

    So, I created a small AppleScript.

    1. Compile the Script as L4Dictation.app
    2. Allow Accesability for the script
    3. Go to where you want to dictate into Logos.
    4. Run the Script (maybe from a shortcut in Logos)
      1. It will popup an InputBox.
      2. Turn on your Dictation by pressing your Dication Keyboard Shortcut.
      3. Dicate as normal into the InputBox.
      4. When finished, stop Dictation.
      5. Press "ok" on the inputBox.
    5. The L4Dictation.app will paste your text into Logos.

    This is cool and thanks for sharing it. I am not a programmer and know almost nothing about Apple Script other than a rudimentary understanding of what it is. So I have a couple ??

    1. Do I simply remove the .scpt ending? Because Apple Script Editor added it after .app
    2. How do I do step 2 above. I did a google search and didn't find anything that seemed useful.

    Dr. Kevin Purcell, Director of Missions
    Brushy Mountain Baptist Association

    www.kevinpurcell.org

  • Kennie Jenkins
    Kennie Jenkins Member Posts: 2

    It would help to have a more simplified explanation of this. I'm not that strong on computers, but I do need this functionality on my software set up.

  • Kennie Jenkins
    Kennie Jenkins Member Posts: 2

    It would help to have a more simplified explanation of this. I'm not that strong on computers, but I do need this functionality on my software set up.

  • Andrew Neely
    Andrew Neely Member Posts: 2 ✭✭

    Here's how I got it to work...

    1. Paste the code into Script Editor
    2. When you save, change the file type in the dropdown from Script to Application
    3. Open the app and try it - it will give an error that the app doesn't have permissions
    4. Click on the button to edit system settings (or go to System -> Accessibility 
    5. Put a check next to the app (L4Dictation in this case) (you might need to click the lock in the bottom left corner)
    6. Leave settings and try running the app again. It should paste into Logos fine.
    7. You will need to open the app every time you begin a new dictation