Quote Originally Posted by wysota View Post
I don't understand what you mean.
For example I loaded three scripts by:
Qt Code:
  1. engine.evaluate(script1);
  2. engine.pushContext();
  3. engine.evaluate(script2);
  4. engine.pushContext();
  5. engine.evaluate(script3);
To copy to clipboard, switch view to plain text mode 
I can unload last script by engine.popContext() but how can I unload first script?