Forum Discussion
Astutis2
4 years agoCommunity Member
Scrollbars still not working in text entry boxes
Hi all.
Are there any plans to make scrollbars work in text entry boxes? This has been an issue for about 6 months now.
I've got 'Add scroll bars' selected in the 'Overflow handling' options, bu...
- 2 days ago
Hi Everyone!
I'm happy to share that we just released a new update for Storyline 360!
In version 3.107.35958.0 we included essential fixes and new features. One of the bugs we’ve fixed is:
- A scrollbar didn't appear as expected when text overflowed
Launch the Articulate 360 desktop app on your computer to take advantage of this update, and click the Update button next to Storyline 360. You’ll find our step-by-step instructions here.
Please let us know if you have any questions!
Nedim
2 years agoCommunity Member
I usually use this JavaScript code for enabling scrollbars in multiline text entry fields. While it’s not a perfect solution, it does improve the experience. Hopefully, Articulate will address this in an upcoming update!
const TextAreaScrollbar = () => {
const textAreas = document.querySelectorAll('.acc-textinput');
textAreas.forEach(textArea => {
textArea.style.scrollbarWidth = 'thin';
});
};
setTimeout(TextAreaScrollbar, 100);Related Content
- 2 years ago
- 10 months ago
- 12 months ago
- 10 months ago
- 11 months ago