I am trying to provide an object in JS, then use those in C++.
Qt Code:
  1. function GI(parent) {
  2. QGraphicsItem.call(this, parent);
  3. this.myProp =1.0;
  4. }
  5.  
  6. ...
  7. var item = GI()
  8. var anim = QPropertyAnimation (item, "myProp", null);
  9. anim.setEndValue("myProp", 2);
  10. anim.setDuration(10);
  11. anim.start();
To copy to clipboard, switch view to plain text mode 

Also is there a way for me to tell which set*() functions were converted to properties *before* I get the debugger error?

TIA.