Weekly Top #Shortcuts on RoutineHub 2025-06-15
https://talk.automators.fm/t/18610
Moving to Bluesky
https://bsky.app/profile/gluebyte.bsky.social
Weekly Top #Shortcuts on RoutineHub 2025-06-15
https://talk.automators.fm/t/18610
Weekly Top #Shortcuts on RoutineHub 2025-06-08
https://talk.automators.fm/t/18592
‘Shortcut Source Tool’ automatically detects corruption (unbalanced if/repeat/menu) and offers to repair. I have checked with some recent #Shortcuts on RoutineHub, found 2 corrupted ones, and notified the developers🤟
https://routinehub.co/shortcut/5256/
@abrahamson @iBanks Hmm, I couldn’t find a workaround. <h3></h3> doesn’t give you a subheading, either. Markdown/RTF/HTML conversion in #Shortcuts is somewhat limited😕
‘Shortcut Source Tool’ now detects corruption (unbalanced if/repeat/menu actions) in Web Review
https://routinehub.co/shortcut/5256/
#Shortcuts
@atnbueno @johnvoorhees @appstories @viticci cliclick cannot emulate dragging/swiping/flicking in iPhone Mirroring, which could have been a game changer in iPhone automation😮💨
@davidbures Try
(?<=[0-9]),(?=[0-9])
or
(?<=\d),(?=\d)
because using + or * is not allowed in lookbehind in Shortcuts. And it works the same without the +’s anyway
A #shortcut to pixelate specific areas of an image by painting over them using the Markup tool 🙂
https://routinehub.co/shortcut/21783/
A few image operations needed for this shortcut aren't available in the #ShortcutsApp but, fortunately, I've been able to implement them in JavaScript and embed them inside the shortcut, so there are no external dependencies 😎
The shortcut includes several workarounds for Shortcuts and Safari bugs 😓
‘Shortcut Source Tool’ can now compare two #Shortcuts for differences (requires a-Shell mini)
https://routinehub.co/shortcut/5256/
Slowly moving over to Bluesky
https://bsky.app/profile/gluebyte.bsky.social
@lawsoflal Please share a post and run this shortcut. It will email me the post info that I can have a look:
https://www.icloud.com/shortcuts/0530af167e6343ffb13cc2552d8a96c4
@lawsoflal Hmm, can you delete Scriptable and the shortcut and try again?
@lawsoflal Hi, I can download media from posts but not from replies. Are you experiencing the same?
@iBanks @atnbueno @matthewcassinelli @viticci “Get Name of [Current App]” works, too🙂
@iBanks @atnbueno @matthewcassinelli @viticci How about Get Text from [Current App’s Name]
@DeanLiufeng Hi, it happens when YouTube is slow to respond. Can you try again at a later time or use a different network?
‘Bluesky Download’ downloads photos, gifs and videos from Bluesky
#Shortcuts
https://routinehub.co/shortcut/20406/
‘Shortcut Source Tool’ now lets you review #Shortcuts in plain text
https://routinehub.co/shortcut/5256/
@boxboxbox You can start from here https://developer.apple.com/library/archive/documentation/LanguagesUtilities/Conceptual/MacAutomationScriptingGuide/AutomatetheUserInterface.html
and googling “AppleScript GUI scripting” will find you more
@boxboxbox Here’s a one-liner:
tell application "System Events" to tell checkbox 3 of group 2 of scroll area 1 of group 1 of group 2 of splitter group 1 of group 1 of window "Notifications" of process "System Settings" to if value is 1 then click
but it can be written in many different ways. And there’s a 3rd party tool called Script Debugger but I haven’t used it.