<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: AutoCAD - Changing background color throughout company in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11572155#M47213</link>
    <description>The standard bockground color is white, which does not contrast enough with our standard layer colors. (also, white backgrounds are harder on the eye then darker ones)</description>
    <pubDate>Wed, 23 Nov 2022 07:01:07 GMT</pubDate>
    <dc:creator>j.Acad</dc:creator>
    <dc:date>2022-11-23T07:01:07Z</dc:date>
    <item>
      <title>AutoCAD - Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569858#M47209</link>
      <description>&lt;P&gt;I am trying to change the paperspace background to a different color for the entire company. I know how to change it locally (options &amp;gt; display &amp;gt; colors...) but I cannot seem to find the setting for the entire company. I expected that this was done via the CIU, but this does not seem to include this setting. Can anyone point me into the right direction?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[ The subject line of this post has been edited for clarity by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12851358"&gt;@handjonathan&lt;/a&gt; Original: Changing background color throughout company ]&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 15:22:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569858#M47209</guid>
      <dc:creator>j.Acad</dc:creator>
      <dc:date>2022-11-22T15:22:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569898#M47210</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's part of the (Acad)User-Profile!&lt;/P&gt;
&lt;P&gt;Per Windows-User, foreach product, foreach AutoCAD-Profile..&lt;/P&gt;
&lt;P&gt;You can setup a line of code what runs on AutoCAD start (familiar with that?)&lt;/P&gt;
&lt;P&gt;or as admin - iterate thru all users, all version, all profiles and change the setting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;(setq oldcolX (vla-get-GraphicsWinLayoutBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object))))))&lt;/P&gt;
&lt;P&gt;(vla-put-GraphicsWinLayoutBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 5987163)&lt;BR /&gt;(vla-put-GraphicsWinLayoutBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 16777215)&lt;/P&gt;
&lt;P&gt;(vla-put-GraphicsWinLayoutBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) oldcolX)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or this way (needs a refresh, so switch the layout one time to see the new color)&lt;/P&gt;
&lt;P&gt;(setq oldcolY (getenv "Layout background"))&lt;/P&gt;
&lt;P&gt;(setenv "Layout background" "5987163")&lt;BR /&gt;(setenv "Layout background" "16777215")&lt;BR /&gt;(setenv "Layout background" oldcolY)&lt;/P&gt;
&lt;P&gt;same for LT&lt;/P&gt;
&lt;P&gt;setenv "Layout background" "5987163"&lt;BR /&gt;setenv "Layout background" "16777215"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See also tool like &lt;A href="https://jtbworld.com/autocad-backgroundchanger-lsp" target="_blank" rel="noopener"&gt;&amp;lt;This&amp;gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 12:38:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569898#M47210</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2022-11-22T12:38:52Z</dc:date>
    </item>
    <item>
      <title>Betreff: Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569988#M47211</link>
      <description>&lt;P&gt;Thank you, this was exactly the solution which I was after. Your response and google pointed me into the right direction. We already do use a startup script, so I added the following to it, which seems to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;;set model colors&lt;BR /&gt;(vla-put-GraphicsWinModelBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 3156001)&lt;BR /&gt;(vla-put-ModelCrosshairColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 16777215)&lt;BR /&gt;;set layout colors&lt;BR /&gt;(vla-put-GraphicsWinLayoutBackgrndColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 3156001)&lt;BR /&gt;(vla-put-LayoutCrosshairColor (vla-get-Display(vla-get-Preferences(vla-get-application(vlax-get-acad-object)))) 16777215)&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 13:15:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11569988#M47211</guid>
      <dc:creator>j.Acad</dc:creator>
      <dc:date>2022-11-22T13:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD - Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11571668#M47212</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11743657"&gt;@j.Acad&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I am trying to change the paperspace background to a different color for the entire company.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 23:45:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11571668#M47212</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2022-11-22T23:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD - Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11572155#M47213</link>
      <description>The standard bockground color is white, which does not contrast enough with our standard layer colors. (also, white backgrounds are harder on the eye then darker ones)</description>
      <pubDate>Wed, 23 Nov 2022 07:01:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11572155#M47213</guid>
      <dc:creator>j.Acad</dc:creator>
      <dc:date>2022-11-23T07:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: AutoCAD - Changing background color throughout company</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11572432#M47214</link>
      <description>&lt;P&gt;Shouldn't it be a personal choice? Not everyone is bothered by a white background.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't you print on white paper?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 09:44:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/autocad-changing-background-color-throughout-company/m-p/11572432#M47214</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2022-11-23T09:44:05Z</dc:date>
    </item>
  </channel>
</rss>

