Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Help output: Wanted to close the image pop-up window by pressing any keys

Community Beginner ,
May 08, 2025 May 08, 2025

Hello All,

We are using RH 2022 and implementing Accessibility in the help output. One of the requirement is that we have used the image thumbnail feature in the output. When we click the smaller verison of the image, the image is opened in a window. We can close the window by clicking the Close icon. Our requirement is that the Window should also be close if we press any keys from the Keyboard. 

In the RH, there are not such configuration settings available. 

 

Please help to acheive this goal.

Thanks in advance.

601
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 08, 2025 May 08, 2025

ALT-F4 doesn't work?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 08, 2025 May 08, 2025

Alt+F4 closes the browser.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 08, 2025 May 08, 2025

What's CTL-W do?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 14, 2025 May 14, 2025

It closes the current tab of the browser. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 08, 2025 May 08, 2025

Our requirement is that the Window should also be close if we press any keys from the Keyboard. 

 

Only Adobe can make that happen so again I have to point you to Support to confirm I am correct, sorry.

 

Then they or you can request a feature change if they don't have a solution.

________________________________________________________

My site www.grainge.org includes many free Authoring and RoboHelp resources that may be of help.

 

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 14, 2025 May 14, 2025

Yes, you are right.

How could RH miss these types of simple and basic features. We have already connected to the RH support team, but it seems that they are also not supportive. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 14, 2025 May 14, 2025

I'm not sure what you mean by "they are also not supportive"? If the feature is not there, there's not much Support can do. At most they could submit a feature request.

________________________________________________________

My site www.grainge.org includes many free Authoring and RoboHelp resources that may be of help.

 

 

 

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 14, 2025 May 14, 2025

I can't find any way of achieving what you want, any key closing the popup. 

 

There is a point to make about accessibility. Frameless template as supplied and without customisation meet accessibility requirements, that does not extend to topic content. Adobe have no control over what you do in your topics. It would seem that as designed, you cannot use thumbnails. That said, I think this is something they would consider adding as it would be a good feature.

 

Please follow this link to report bugs or request new features. https://tracker.adobe.com. Post the link to your bug report / feature request in this thread and others can vote for it. The more people who do so, the higher it gets prioritised. Do submit it as a feature request. Also make it clear whether "any" means any specific key or just any old key.

________________________________________________________

My site www.grainge.org includes many free Authoring and RoboHelp resources that may be of help.

 

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 14, 2025 May 14, 2025

I'm thinking the ESC key would be the best key to suggest Adobe uses.

________________________________________________________

My site www.grainge.org includes many free Authoring and RoboHelp resources that may be of help.

 

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
May 19, 2025 May 19, 2025
LATEST

Achievable if you're okay with mucking about in Javascript. I'm assuming you're talking about Frameless output.

 

Start situation

WoutJacobs_0-1747654458131.pngWoutJacobs_1-1747654484454.png

Confirmation of issue: this image overlay can only be clicked away with the X button.

 

""Fix""

Add a JS file to your template:

WoutJacobs_2-1747654789601.png

The name of the file does not actually matter, I'm just too lazy to add a new one

WoutJacobs_3-1747654874290.png

(function enableThumbnailCloseOnAnyKey() {
document.addEventListener('keydown', function () {
const thumbnails = document.querySelectorAll('.RH-LAYOUT-thumbnail');
thumbnails.forEach(el => {
el.remove(); // Or use el.style.display = 'none'; to just hide it
});
});
})();

 

Image overlay should now be cleared on any keypress.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
RoboHelp Documentation
Download Adobe RoboHelp