Hey there,

I'm trying to achieve the following using QtScript:

Qt Code:
  1. test.prototype.createPage = function(factory)
  2. {
  3. test = factory.newPicture("box.png");
  4. }
To copy to clipboard, switch view to plain text mode 

The newPicture interface is correctly binded and returns a qkPicture *.
The problem is, due to non typed variables, QtScript assumes he has to copy to content of the qkPicture.

Is there a way to emulate pointer behaviour and dereference test ?
Or a way to bypass non typed scripting syntax ?

Thanks.
Benjamin Arnaud.