I'm tired of having a plain white background while tagging SGML in Arbortext Editor. I want to try something darker to reduce some eye strain. I can easily change the color of my tags, but I'm struggling with how to change the default white background to something else. Is it even possible?
I've tried window_set(canvasbackground blah blah blah) , but either I'm not sure how to use that command or that command does not work in the way I'm thinking it should work.
Thanks
Solved! Go to Solution.
Hi--
You need to specify the window in the window_set() call. I was able to make this work as expected:
window_set(current_window(), "canvasbackground", "green")
You can use any of the named colors (search the Help Center for the complete list), or a CSS style hex triplet color spec, e.g. "#FFAAAA" for light red.
--Clay
Hi--
You need to specify the window in the window_set() call. I was able to make this work as expected:
window_set(current_window(), "canvasbackground", "green")
You can use any of the named colors (search the Help Center for the complete list), or a CSS style hex triplet color spec, e.g. "#FFAAAA" for light red.
--Clay
Awesome! Thank you. The help page that discussed the "window_set" command doesn't make it very clear exactly how to fomat the syntax for the command - at least for this novice. I'm sure somewhere in the help there is a page discussing how to set up command line stuff, but it probably would have taken me hours to find it.
Thanks for the clarification on this: I was able to successfully change the background color. However, despite saving preferences and configurations, the same file reopens with a white background every time. Can this be set as a permanent preference?