Replies: 5 comments 84 replies
|
Hey there, do you already try to inspect those element and check out what are available to target in term of accessibility? It must be something for you to target for that element, the only thing is that it might be a very generic role say AXText without much identifier, and you probably can't distinguish it from other AXText. Note that I haven't inspect anything at this moment. Just guessing. Unfortunately, macOS accessibility is hard, and also not all electron apps are implementing proper accessibility too. Thats also why we started to support grid based navigations. |
|
Hi @y3owk1n, I'd like to share this new feature that I introduced in glyphlow 0.0.10 with you. I think it has endless possibilities, but I can't think of many useful scenarios except for those nested menu items. I'm not sure whether I should introduce:
Maybe you have some thoughts on that? |
|
@y3owk1n Maybe we can share some interesting use cases of workflow/macro/action feed? Here're the default ones that I enabled in glyphlow: [[workflows]]
display = " ProofRead"
key = "R"
starting_role = "TextField"
actions = [
"Focus",
"SelectAll",
"ShowMenu",
{ Sleep = 150 },
{ SearchFor = { role = "MenuItem", title = "Proofread" } },
"Press",
]
[[workflows]]
display = "⮺ Copy"
key = "C"
starting_role = "Image"
actions = [
"ShowMenu",
{ Sleep = 150 },
{ SearchFor = { role = "MenuItem", title = "Copy Image" } },
"Press",
]
[[workflows]]
display = " Copy Link"
key = "L"
starting_role = "Image"
actions = [
"ShowMenu",
{ Sleep = 150 },
{ SearchFor = { role = "MenuItem", title = "Copy Image Address" } },
"Press",
]
[[workflows]]
display = " Press [Left Click]"
key = "["
starting_role = "Generic"
actions = ["Press"]
[[workflows]]
display = " Menu [Right Click]"
key = "]"
starting_role = "Generic"
actions = [
"ShowMenu",
{ Sleep = 150 },
{ SearchFor = { role = "MenuItem" } },
"Press",
]Basically some copy actions for images, click/right click for all kinds of elements, apple intelligence proofread for text field input. |
|
Hi @y3owk1n, TIL |
|
Just to share, i recently created a small utility https://github.com/y3owk1n/mimi that you might be interested. It's very early stage tho. TLDR, it is a macOS event daemon that runs your shell commands when things happen. The events are still very limited, but the list will be more comprehensive along the way i believe. Whether or not this project will live or died quietly, I don't know yet, but I think there's not a lot of project like this in the scene now. |
Uh oh!
There was an error while loading. Please reload this page.
First of all, I'd like to show my sincere gratitude to the creator of this project. The macOS hint mode directly inspired me to create this PopClip alternative.
So far I'm pretty happy playing with it, but there're some nasty edge cases, like here in the Discord app:
Basically there're non-clickable elements found for the channel icons. Do you have any clue of how to work around such cases? Subrole or DomClass maybe?
All reactions