Home Coding, Scripting, Shaders

No More Pinkish Maxscript Listener UI.

polycounter lvl 6
Offline / Send Message
savascetin polycounter lvl 6
Hi there...
Starting from 3ds max 2020 update 1 you can modify maxscript-listener ui colors.
Explained in maxscipt 2020 help document, the listener window  can be modified with few lines of code.
Or you can use this script to modify the  listener ui .


Replies

  • monster
    Offline / Send Message
    monster polycounter
    Here's where mine landed. You can just put this in a startup script. Also, change the font to Consolas in the Preferences | MaxScript tab.
        		listenerBackgroundColor = (color 80 80 80)
        		macroRecorderBackgroundColor = (color 40 40 40)
        		macroRecorderTextColor = (color 147 179 210)
        		pythonPromptColor = (color 240 95 146)
        		inputTextColor = (color 224 226 228)
        		messageTextColor = (color 255 147 179)
        		outputTextColor = (color 255 153 51)



Sign In or Register to comment.