Is possible to add text background color using python on ArcGIS(ArcMap 10)? I wrote a function that able to change font color of the string but I want to add background color to it as well
<SPAN class="kwd">def</SPAN><SPAN class="pln"> changeColor </SPAN><SPAN class="pun">([</SPAN><SPAN class="pln">s1</SPAN><SPAN class="pun">]):</SPAN><SPAN class="pln"><BR /> </SPAN><SPAN class="kwd">return</SPAN><SPAN class="pln"> </SPAN><SPAN class="str">"<CLR red = '255'>"</SPAN><SPAN class="pln"> </SPAN><SPAN class="pun">+</SPAN><SPAN class="pln"> </SPAN><SPAN class="pun">[</SPAN><SPAN class="pln">s1</SPAN><SPAN class="pun">]</SPAN><SPAN class="pln"> </SPAN><SPAN class="pun">+</SPAN><SPAN class="pln"> </SPAN><SPAN class="str">"</CLR>"</SPAN>
Following links show me how add background color manually http://resources.arcgis.com/en/help/main/10.2/index.html#/Creating_text_symbols/00s60000000z000000/
Is that a way that I can write a python script instead of doing manually?
thank