# Komodo IDE

I use ActiveState's Komodo IDE exclusively for writing, testing, and debugging my Tcl/Tk code.  However, once I've set up the environment, I want to execute my code without navigating through the Debugging Options window.

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662695319132/XPAJBDgfp.png align="center")

To skip this dialogue window, we need to change our preferences.  

 - Click the EDIT tab on the main menu.

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662695500242/JxSXE404e.png align="center")

- Click PREFERENCES, and a dialogue box similar to the one shown below will appear:

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662695851061/LuhDpuKrC.png align="center")

- Click the Debugger option in the sidebar

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662695913108/xpMvQlwoW.png align="center")

- Click on the Checkbox next to "Skip debugging options dialogue when launching."

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662696516977/_NLzeS8Oq.png align="center")

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1662696083579/VqqzjieGi.png align="center")

If checked, the "Debugging Options" dialogue will NOT appear, and your code will execute immediately following the press of the "Play" button or the F5 key.

- Click the APPLY button on the bottom right corner of the screen.
- Click OK to return to the main IDE window.  

- Now, when you press the PLAY button, press the F5 function key, or Debug > Go/Continue from the main menu, your code will start running immediately.

