<?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: Change the background image file path in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319109#M124506</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7048560"&gt;@danny.lewisA9QBW&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See these quick iLogic examples&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;oInput = InputRadioBox("Select one", "Use Image", "Don't Use Image", True, "iLogic")

oSchemes = ThisApplication.ColorSchemes

If oInput = True Then
	oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
	ThisApplication.ActiveColorScheme.ImageFullFileName = "C:\Temp\BG1.jpg"
Else
	oSchemes.BackgroundType = BackgroundTypeEnum.kOneColorBackgroundType
End If

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;oInput = InputRadioBox("Select one", "Use Image1", "Use Image2", True, "iLogic")

If oInput = True Then	
	oPath = "C:\Temp\BG1.jpg"
Else
	oPath = "C:\Temp\BG2.jpg"
End If

oSchemes = ThisApplication.ColorSchemes
oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
ThisApplication.ActiveColorScheme.ImageFullFileName = oPath
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 May 2021 20:25:04 GMT</pubDate>
    <dc:creator>Curtis_Waguespack</dc:creator>
    <dc:date>2021-05-17T20:25:04Z</dc:date>
    <item>
      <title>Change the background image file path</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319010#M124502</link>
      <description>&lt;P&gt;I've seen lots of forum postings about changing the background colour, but I can't find anything about changing the background to the 'background image' and then providing what the path should be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...shouldn't be too hard right?&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 19:25:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319010#M124502</guid>
      <dc:creator>danny.lewisA9QBW</dc:creator>
      <dc:date>2021-05-17T19:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Change the background image file path</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319109#M124506</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7048560"&gt;@danny.lewisA9QBW&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See these quick iLogic examples&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;oInput = InputRadioBox("Select one", "Use Image", "Don't Use Image", True, "iLogic")

oSchemes = ThisApplication.ColorSchemes

If oInput = True Then
	oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
	ThisApplication.ActiveColorScheme.ImageFullFileName = "C:\Temp\BG1.jpg"
Else
	oSchemes.BackgroundType = BackgroundTypeEnum.kOneColorBackgroundType
End If

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;oInput = InputRadioBox("Select one", "Use Image1", "Use Image2", True, "iLogic")

If oInput = True Then	
	oPath = "C:\Temp\BG1.jpg"
Else
	oPath = "C:\Temp\BG2.jpg"
End If

oSchemes = ThisApplication.ColorSchemes
oSchemes.BackgroundType = BackgroundTypeEnum.kImageBackgroundType
ThisApplication.ActiveColorScheme.ImageFullFileName = oPath
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 20:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319109#M124506</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2021-05-17T20:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change the background image file path</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319116#M124507</link>
      <description>&lt;P&gt;Are you looking for Application.ActiveColorScheme.ImageFullFileName?&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 20:24:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319116#M124507</guid>
      <dc:creator>jjstr8</dc:creator>
      <dc:date>2021-05-17T20:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change the background image file path</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319138#M124508</link>
      <description>&lt;P&gt;I was looking for the where I would even put that path in Yes.&amp;nbsp; The help files were pretty thin on details when you look up 'Background Image', it just gives the enum value stuff; nothing else.&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 20:31:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319138#M124508</guid>
      <dc:creator>danny.lewisA9QBW</dc:creator>
      <dc:date>2021-05-17T20:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change the background image file path</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319188#M124510</link>
      <description>I agree. Since BackgroundType applies to all color schemes, you would think that the help file would spell that out better in ColorScheme Object.</description>
      <pubDate>Mon, 17 May 2021 20:59:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-the-background-image-file-path/m-p/10319188#M124510</guid>
      <dc:creator>jjstr8</dc:creator>
      <dc:date>2021-05-17T20:59:56Z</dc:date>
    </item>
  </channel>
</rss>

