Removing 'debug information'

usertale

Member²
I have compiled my code and tested it with the debugger.
Now I want to deploy - how do you remove the debug information? I still see the 'Add Debug Information' checked when I right-click on the object ... I want to remove this ...

thank u
 
A "Remove debug information" might be nice.

This is what I do. I have the "Add debug information when compiling" preference off. Then I just recompile it.
 
I use the Browser Extender plugin by Joachim Rupik. I have added a couple of items with the following script attached:
To compile without debug information:
alter #otype #oname compile
To compile with debug information:
alter #otype #oname compile debug

Kindest regards,
Patrick Barel
 
Back
Top