Show a "Display Text Large" Bezel But Smaller

I like the idea of being able to show the bezel style notification that "Display text large" uses, but I'd like to be able to make it smaller, and possibly customize it's display position and color etc. Size being the most important customization.

Thanks,

Noted. Although there is no obvious way to configure that given it is a menu selection in a variety of actions.

I just joined the forum to request the same feature. When I first applied a ‘display text’ action in a macro I was hoping it would use the same moderately sized bezel overlay as seen in the ‘Activate/Deactivate Macro Group’ action when ‘Display Toggle’ is enabled.

I hope you will consider expanding on the ‘display text’ action set.

Thank you.

2 Likes

Years later, please include me on the list of people wanting more control over the Display Text Large action. I'm looking for easy duration, size, opacity, and screen target. I really like a floating text action more than the HTML option.

You can change the duration - see this discussion thread https://forum.keyboardmaestro.com/t/display-text-large-can-the-duration-of-the-display-be-changed/5296

Oh - just saw the other discussion going on about this.

Are there any updates on this feature request? @peternlewis

I'd like to be able to control the size, position, and color of the display text large too.
Maybe not the same action, but something similar to it that allows us to customize the display.

1 Like

You can do this using the Custom HTML Prompt action.

In fact, I'm pretty sure there have been topics/posts about using the HTML Prompt for this very use case. A Forum Search should find these.

1 Like

The Custom HTML Prompt in KM does not offer a transparent/semitransparent background, as the Display Text Large action has, and as BetterTouchTool offers. With BTT, people can build some cool stuff like this:
image

If I were to use the Custom HTML Prompt to replace the Display Text Large function, I would probably use the BTT floating HTML because of the translucency background option. But, although I've been using the Custom HTML Prompt in many places, I would still prefer not to use the Custom HTML Prompt action if there are other easier ways.

Lastly, since @peternlewis "Noted" the request. I was just checking in to see if there have been any updates. :grin:

2 Likes

No, there are no changes on this front.

As noted, the display is typically invoked as an option from a menu, and so it doesn't really have any way to configure it. It would need an entirely new action, or new UI.

And to allow all the customisations would require a lot of code and options, so more likely I would expand the Custom HTML Prompt to allow transparent backgrounds and borderless windows (if any of that turns out to be possible).

2 Likes

Thanks for your reply. I'm patiently waiting for this feature to be available in the future.

Personally, I see transparency as nothing more than eye candy, and it decreases readability. I see no functional benefit to it. I know there are others that like it, and that is fine.
My 2¢ would be to put other items that provide new capability, new functionality, higher on the KM to-do list.

"expand the Custom HTML Prompt to allow transparent backgrounds and borderless windows (if any of that turns out to be possible"

This will be amazing because Custom HTML Prompt is one of the most powerful actions but often overlook feature.

1 Like

First of all I'd like to pay my respects to JMichaelTX. He was very active in this thread and I respect and admire his hard work. He will be missed.

Talking about this macro. I'd like to at least be able to change the size of it, which at the moment is rather obnoxious.

With apple implementing new Focus modes and improving the Do Not Disturb function, I rely less and less on system notifications for messages.

So an upgrade to this feature would be a godsend.

Hi @splitpersonality,

Peter has added "hide title bar" and "transparency" to the Custom HTML Prompt action. If you want to have more customization for "Display Text Large", "Custom HTML Prompt" is for you. You can, for instance, control the size and position of the window, as well as the fonts of the text to be displayed.

Hey @splitpersonality,

Please see Post #10 if you haven't already.

I realize this is complex for the average user, but it's the only solution available.

Perhaps @martin would post a “simple” example...

-Chris

Here it is:

Display Text Large with HTML Prompt.kmmacros (3.9 KB)

The window will show up at the upper-right corner of the screen, where the system notification usually appears.

The window auto closes in 5s.

Almost everything, the window position, size, the text font, etc. may be customized.

3 Likes

I use this, nice,...
I see the SCREEN area of code but don't know how to center it on the screen.
How do I center the prompt on the screen?
Also, it there a way to dynamically size the prompt based on the text variable that is to be displayed? I entered a sentence and only the first few words were shown...

Hi @troy,

I'm glad you like it.

Try this:
change

<body data-kmwindow="SCREEN(Main,Width)-300,38,300,150">

to

<body data-kmwindow="SCREEN(Front,Right)-SCREEN(Front,Width)/2-300/2,(SCREEN(Front,Height)-150)/2,300,150">

Note:
This is works with multiple monitors. The HTML Prompt window appears on the Front Screen.
300 is the width of the HTML Prompt window, 150 is the height of the HTML Prompt window.
You may change the number to suit your need. Just remember to change the number at both places.

2 Likes

I don't know how to determine the size of the window needed for a dynamic text. Sorry about that. I myself use the full screen to display dynamic text. This way, I don't need to worry about the text size. :laughing:

I also added AppleScript to hide the menu bar before the HTML Prompt and restore the menu bar after the HTML Prompt window is closed.

Display Text Large with HTML Prompt - Full Screen.kmmacros (5.2 KB)

2 Likes