<?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: Add white background to text in Isodraw. in Arbortext</title>
    <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/753871#M32531</link>
    <description>&lt;P&gt;Any suggestions for me?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bryon&lt;/P&gt;</description>
    <pubDate>Tue, 19 Oct 2021 19:39:51 GMT</pubDate>
    <dc:creator>bfriesen</dc:creator>
    <dc:date>2021-10-19T19:39:51Z</dc:date>
    <item>
      <title>Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/698654#M32279</link>
      <description>&lt;P&gt;We have a macro that inserts the file name of the file onto the illustration. Is there a way to make the text background white automatically? We currently do it manually after we add the text by the macro. If I try to create a macro the option to modify the text background is greyed out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 13:33:14 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/698654#M32279</guid>
      <dc:creator>bfriesen</dc:creator>
      <dc:date>2023-09-12T13:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/710023#M32303</link>
      <description>&lt;P&gt;Came across this today in the support search&amp;nbsp;&lt;A href="https://www.ptc.com/en/support/article/CS203689?&amp;amp;language=en&amp;amp;posno=1&amp;amp;q=text%20background&amp;amp;ProductFamily=Arbortext&amp;amp;source=search" target="_blank"&gt;https://www.ptc.com/en/support/article/CS203689?&amp;amp;language=en&amp;amp;posno=1&amp;amp;q=text%20background&amp;amp;ProductFamily=Arbortext&amp;amp;source=search&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I get it to find a text string. We have a seven digit numeric code that we use for our image number. Currently it works if I enter a&amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Macro debenedetti
# recorded with PTC Arbortext IsoDraw 7.3
	Select none
	Select if Text is equal to '0'
	Select if Text contains '0'
	MESSAGE activeDoc.selectedElements
	DEFINE el AS element
	el = activeDoc.firstSelectedElement
	
	IF (exists(el ) = false) THEN
		MESSAGE "No element in the active document!"
	Else
		WHILE (exists(el) = true)
			el.text.backfill_color.type = "rgbValues"
			el.text.backfill_color.rgb.red = 0
			el.text.backfill_color.rgb.green = 255
			el.text.backfill_color.rgb.blue = 0			
			el = el.nextSelectedElement
		END WHILE
	END If	
	Select none
End Macro&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 20:36:55 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/710023#M32303</guid>
      <dc:creator>bfriesen</dc:creator>
      <dc:date>2021-01-28T20:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/753871#M32531</link>
      <description>&lt;P&gt;Any suggestions for me?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bryon&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2021 19:39:51 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/753871#M32531</guid>
      <dc:creator>bfriesen</dc:creator>
      <dc:date>2021-10-19T19:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754011#M32534</link>
      <description>&lt;P&gt;Maybe I should modify my original macro instead This creates a text then places it in the bottom right corner and then rotates it 90 degrees. If I add the text backfill as suggested in the above sample from PTC. What do&amp;nbsp; need the element to be as I want it to add the background to the selection which is the text.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add_FileName&lt;/P&gt;
&lt;P&gt;Define h As Integer&lt;BR /&gt;Define w As Integer&lt;BR /&gt;w = activeDoc.window.pageX-2&lt;BR /&gt;h = 2&lt;/P&gt;
&lt;P&gt;#Message "The height is " + h&lt;BR /&gt;#Message "The width is " + w&lt;/P&gt;
&lt;P&gt;#Added below command to ensure number is placed on the Illustation number layer&lt;/P&gt;
&lt;P&gt;ACTIVATE LAYER "Illustration Number"&lt;BR /&gt;Select none&lt;BR /&gt;Text Align Left&lt;BR /&gt;Text font 'Calibri'&lt;BR /&gt;Text size 6&lt;BR /&gt;Create Text w h stripext(activeDoc.name)&lt;BR /&gt;Rotate selection w h 90&lt;BR /&gt;selection.text.backfill_color.type = "rgbValues"&lt;BR /&gt;selection.text.backfill_color.rgb.red = 255&lt;BR /&gt;selection.text.backfill_color.rgb.green = 255&lt;BR /&gt;selection.text.backfill_color.rgb.blue = 255&lt;/P&gt;
&lt;P&gt;End Macro&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bryon&lt;/P&gt;</description>
      <pubDate>Wed, 20 Oct 2021 13:32:54 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754011#M32534</guid>
      <dc:creator>bfriesen</dc:creator>
      <dc:date>2021-10-20T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754221#M32535</link>
      <description>&lt;P&gt;Thanks to PTC support for explaining some things to me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Macro Add_FileName&lt;/P&gt;&lt;P&gt;Define h AS Integer&lt;BR /&gt;Define w AS Integer&lt;BR /&gt;Define el AS Element&lt;BR /&gt;w = activeDoc.window.pageX-2&lt;BR /&gt;h = 2&lt;/P&gt;&lt;P&gt;#Message "The height is " + h&lt;BR /&gt;#Message "The width is " + w&lt;/P&gt;&lt;P&gt;#Added below command to ensure number is placed on the Illustration number layer&lt;/P&gt;&lt;P&gt;ACTIVATE LAYER "Illustration Number"&lt;BR /&gt;Select none&lt;BR /&gt;Text Align Left&lt;BR /&gt;Text font 'Calibri'&lt;BR /&gt;Text size 6&lt;BR /&gt;Create Text w h stripext(activeDoc.name)&lt;BR /&gt;el = activeDoc.firstSelectedElement&lt;BR /&gt;el.text.backfill_color.type = "rgbValues"&lt;BR /&gt;el.text.backfill_color.rgb.red = 255&lt;BR /&gt;el.text.backfill_color.rgb.green = 255&lt;BR /&gt;el.text.backfill_color.rgb.blue = 255&lt;BR /&gt;el = el.nextSelectedElement&lt;/P&gt;&lt;P&gt;Rotate selection w h 90&lt;BR /&gt;Select none&lt;/P&gt;&lt;P&gt;End Macro&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 13:34:29 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754221#M32535</guid>
      <dc:creator>bfriesen</dc:creator>
      <dc:date>2021-10-21T13:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add white background to text in Isodraw.</title>
      <link>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754228#M32536</link>
      <description>&lt;P&gt;Thanks for sharing the solution!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 13:50:12 GMT</pubDate>
      <guid>https://community.ptc.com/t5/Arbortext/Add-white-background-to-text-in-Isodraw/m-p/754228#M32536</guid>
      <dc:creator>VladimirN</dc:creator>
      <dc:date>2021-10-21T13:50:12Z</dc:date>
    </item>
  </channel>
</rss>

