QScriptValueobject;...QScriptValueIteratorit(object);while(it.hasNext()) { it.next();qDebug()<<it.name()<<": "<<it.value().toString(); } Thenext() advances the iterator. Thename(),value() andflags() functions return the name, value and flags of the last item that was jumped...