[ES4] ... too horrible to be an editor ...
... but probably simple enough for these milestones. Its name is ES4me, it's for windows and works in this way: download the file in your es4 folder, where there is the run.exe and the es4.bat file double click Basically, there is a place to write something, where for some reason TABS are usable only with CTRL + TAB instead of single TAB key, a panel where errors or output will be showed, and finally, 5 buttons: Run, to execute the code Clear, to clear the code in the area Add Before, to add area code before execution Get Before, to add in area the code added before Clear Before, to clear content added before Here some example: var i:int = 123; print(i); Press Run, and You'll read 123 on output panel. Now press clear, and area will be without text. Write again ... var i:int = 123; Without the print, now press Add Before, area will be clean again ... BUT, write this: print(i); and press Run, you'll read 123 in the output panel. This mean that precedent code is in ram, and...