Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. NVDA/Jaws screen reader don't read qml TextArea emoji
Forum Updated to NodeBB v4.3 + New Features

NVDA/Jaws screen reader don't read qml TextArea emoji

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
3 Posts 1 Posters 367 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Jiayun
    wrote on last edited by
    #1

    Dear Qt experts,

    I am using Qt 6.3.1. I find a issue: NVDA/Jaws screen reader don't read qml TextArea emoji
    9cab81f2-3014-483b-a58b-60c53a03ce93-image.png
    You can see: When TextArea get focus, NVDA/Jaws will anounce: edit test my
    In fact I want it anounce: edit test my smile emoji
    Could you give some suggestions, thanks a lot~

    1 Reply Last reply
    0
    • J Offline
      J Offline
      Jiayun
      wrote on last edited by
      #2

      Here is qml file:
      import QtQuick 2.3
      import QtQuick.Controls 2.0
      import QtQuick.Window 2.2

      Window {
      visible: true
      width: 1000
      height: 800

      Rectangle {
          x: 10
          y: 10
          width: 600
          height: 100
          border.color: "gray"
          border.width: 2
      
          TextArea {
              id: textArea
                  
              textFormat: TextEdit.RichText
              wrapMode: Text.WordWrap
              font.pointSize: 15
              text: "<p>test my <img src=\"qrc:/1f642.svg\" height=\"20\" width=\"20\" align=\"middle\" alt=\"smile emoji\" /></p>"
              color: "black"
              visible: true
      
              anchors {
                  top: parent.top
                  left: parent.left
                  leftMargin: 5
                  topMargin: 5
              }
      
          }
      
      }
      

      }

      1 Reply Last reply
      0
      • J Offline
        J Offline
        Jiayun
        wrote on last edited by
        #3

        Dear Qt experts, could you give some comments on it?

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved