mike2003 Posted July 29, 2021 Share Posted July 29, 2021 I have a couple of problems with this panel. I don't have enough space. I want to see a lot of code and constantly have to resize the panel to see the output info. And two questions. Can I detach this OUTPUT panel into a separate window on a second monitor? Or at least change font size? Now the text size of the code and this panel is the same. But the panel doesn't need that much. Ideally, of course, transfer to a second monitor ) But maybe there are some other interesting solutions to this problem?? To debug code like ConsoleWrite Link to comment Share on other sites More sharing options...
Developers Jos Posted July 29, 2021 Developers Share Posted July 29, 2021 (edited) 3 hours ago, mike2003 said: Can I detach this OUTPUT panel into a separate window on a second monitor? Not that I know.... I am using the standard SciTE distribution with minimal core source changes specifically for AutoIt3. 3 hours ago, mike2003 said: Or at least change font size? Now the text size of the code and this panel is the same. But the panel doesn't need that much. This line will change the outputpane to courier new size 8 style.errorlist.32=font:Courier New,size:8,back:#FFFFFF ..or temporary change the fontsize by clicking in the outputpane and do Ctrl+NumMin to make the font smaller. Jos Edited July 29, 2021 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Marc Posted July 29, 2021 Share Posted July 29, 2021 3 hours ago, mike2003 said: But maybe there are some other interesting solutions to this problem?? To debug code like ConsoleWrite You could use a logging UDF like Loga. It allows two ways: it print its debug messages into the console, but at the same time into a logfile. Which you could open and watch on your 2nd monitor, preferrably using a tool which constantly displays new lines of the file. I think LogExpert should do the job (untested) it allows to have its own outpout windows, see example 09 of the udf. mike2003 1 Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL) Link to comment Share on other sites More sharing options...
mike2003 Posted July 29, 2021 Author Share Posted July 29, 2021 10 hours ago, Jos said: This line will change Which file? I found 9 with this parameter. I also found parameter output.magnification=-3 for file SciTEGlobal.properties. Link to comment Share on other sites More sharing options...
Developers Jos Posted July 29, 2021 Developers Share Posted July 29, 2021 Always use the sciteuser.properties when you want to make this a new personalisatie default. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
mike2003 Posted July 29, 2021 Author Share Posted July 29, 2021 I'm experimenting with Debug.au3. Can I increase the size of the text GUICtrlSetFont? #include <Debug.au3> _DebugSetup("Check Excel", True) GUICtrlSetFont($__g_hReportEdit_Debug, 14, 400, 0, "Tahoma") WinMove ($__g_sReportTitle_Debug,"" , 100, 100 , 1000, 500) _DebugOut("Moved Mouse Down") Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now