Jump to content

kraig85

Member
  • Posts

    12
  • Joined

  • Last visited

  • Days Won

    1

kraig85 last won the day on November 11 2022

kraig85 had the most liked content!

kraig85's Achievements

Helping Hand

Helping Hand (3/5)

3

Reputation

  1. Hey, You need to do the following: Open the Workflow in Finder Replace the line in the consts.py document that says "/Users/giovanni/Desktop/Main Profile/Data/Outlook.sqlite" with your own path for your Outlook.sqlite file. (Try looking here: /Users/<username>/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 15 Profiles/Main Profile/Data/Outlook.sqlite. Then run the outlook::refresh command from Alfred and it should say done. Hope it works. Ta-da! Craig
  2. I got a box popping up, asking me to grant permissions and Terminal said "Terminal", but nothing has changed with regards to the API inspection message.
  3. Hi. Was a fix for this ever found? I'm having the same problem (using ultrawide monitor as main display) and I can't seem to find a fix for the panel being lower on the screen than the 'Alfred box' (I've tried searching, I promise 🙂 ). C
  4. Hi. Just to add... I have had this error message come up with every automation task in Alfred since I upgraded to the latest Ventura beta the other day. I've trawled Google for, what feels like days, and the only thing I can find is about the web inspector/Safari, and even though the error message mentions the web inspector, the issues that I and oorbx are having are not Safari/web-related (but feel free to correct me if I'm wrong). So it will be interesting to see how and when this is resolved by Apple, or if someone finds a workaround sooner. If I find out how to fix it, I'll let you know. Craig
  5. I've created this workflow template for you (I think) - I've never actually used GitHub before (still a newbie) so fingers crossed it works. https://github.com/kraig85/myalfredworkflows
  6. ta-da!! do shell script "open -b com.apple.systempreferences /System/Library/PreferencePanes/Displays.prefPane" use AppleScript version "2.4" set iPadName to "iPad Pro" tell application "System Events" repeat until (exists window "Displays" of application process "System Settings") delay 0.1 end repeat tell process "System Settings" tell pop up button 1 of group 1 of group 2 of splitter group 1 of group 1 of window "Displays" click delay 0.1 tell (last menu item of menu 1 whose name contains iPadName) click it end tell end tell end tell end tell tell application "System Settings" to quit
  7. As a temp work around (and hoping Vitor is right with the 'yet' part), I've used this script by placing the screen mirroring icon in the menu bar and copying from automator's watch me do - bearing in mind that my script has British English spellings of centre etc.) -- Click the “Screen Mirroring” menu bar item. set timeoutSeconds to 2.0 set uiScript to "click menu bar item 6 of menu bar 1 of application process \"Control Centre\"" my doWithTimeout(uiScript, timeoutSeconds) -- Click the “<fill in title>” tickbox. set timeoutSeconds to 2.0 set uiScript to "click checkbox 3 of scroll area 1 of group 1 of window \"Control Centre\" of application process \"Control Centre\"" my doWithTimeout(uiScript, timeoutSeconds) on doWithTimeout(uiScript, timeoutSeconds) set endDate to (current date) + timeoutSeconds repeat try run script "tell application \"System Events\" " & uiScript & " end tell" exit repeat on error errorMessage if ((current date) > endDate) then error "Can not " & uiScript end if end try end repeat end doWithTimeout
  8. Have you tried... do shell script "open -b com.apple.systempreferences /System/Library/PreferencePanes/Displays.prefPane" ?
  9. Hi. I'm still getting that Code 1/null error. I'm assuming it's due to iCloud messages but I can't seem to find where to disable them on Ventura?
  10. Hi. Is there any way to add all day events using this workflow? Thanks :-)
  11. Hi. This doesn't seem to want to work for me. I get the message that the start date could not be set. Could it be because it's set up for US date format, or am i just missing something obvious? 🙂 Cheers.
×
×
  • Create New...