Questions tagged [qtscript]

QtScript is an ECMA262-compatible implementation of JavaScript. It is the successor of QSA (Qt Script For Applications), but is being phased out in recent Qt versions in favour of Google's V8 engine.

Documentation can be found here (Qt4) and here (Qt5).

116 questions
0
votes
1 answer

Manipulate a 2d array from QtScript

I would like a way to be able to access an array of integers that is created somewhere in my main app from a QtScript, and after doing whatever manipulations that the script might perform return it back again. What I am able to work until now is…
dearn44
  • 3,198
  • 4
  • 30
  • 63
0
votes
1 answer

QWebView find text inside invisible elements

In my Qt project I'm using the QWebView to load my html table data. I'm using the findText function to find text in the html page. But, I can't find invisible text... HTML sample :
hello