<?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 Custom Icons to ArcGISExplorer 2500 in ArcGIS for Windows Mobile Questions</title>
    <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737503#M3086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can, but it will require updating files in the install folder on each computer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Explorer (x86)\Styles folder, add your icon as a .PNG image to the SymbolImages folder.&amp;nbsp; (Explorer uses 64x64 for image size, if you use larger images and lots of them, the gallery will be slower to load.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="addexplorersymbols.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/14538_addexplorersymbols.png" style="width: 620px; height: 589px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Example I will add this image "happy.png" for use as a symbol.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="happy.png" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/14539_happy.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the image in the SymbolImages folder.&amp;nbsp; In this case will put it in the "Health" folder.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="symbolimagehealth.png" class="jive-image image-3" src="https://community.esri.com/legacyfs/online/14546_symbolimagehealth.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am working with English language, so I will update the ExplorerSymbols.xml file to reference the image in the Symbolimages\Health folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="nameidpath.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/14547_nameidpath.png" style="width: 620px; height: 185px;" /&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14114141750162148 jive_text_macro" jivemacro_uid="_14114141750162148" modifiedtitle="true"&gt;
&lt;P&gt;&amp;lt;Symbol SymbolType="Marker" Name="happy" Category="Health" Id="happyMarker" Size="25"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;SymbolSource Type="Image" Location="Install" Path="SymbolImages\Health\happy.png" /&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/Symbol&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The File contains information for each symbol.&amp;nbsp; In the above example, I Named the Symbol happy and placed it in the Health category.&amp;nbsp; You must give it a unique ID as well as updating the Path to the symbol.&amp;nbsp; (Note: the path does not support using a URL)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="symbolgallery.png" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/14548_symbolgallery.png" style="width: 620px; height: 546px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second part of your question.&amp;nbsp; When an Explorer user creates a layer package from a note.&amp;nbsp; The note title is put in a Title Field and the body of the note is put in a Popup field.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="popupfields.png" class="jive-image image-6" src="https://community.esri.com/legacyfs/online/14549_popupfields.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you open in ArcMap it is represented as:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="popfiedls.png" class="jive-image image-7" src="https://community.esri.com/legacyfs/online/14550_popfiedls.png" style="width: 620px; height: 284px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You users can use the Note Title to convey some information, and it is just a string in the field.&amp;nbsp; In the body case, some style is included to account for HTML that may have been in the body of the note.&amp;nbsp; In your case it is straight text.&amp;nbsp; to make it a little easier to deal with, you could add a new field and calculate it equal to the popup field, and use some vbscript or python to strip out the style information.&lt;/P&gt;&lt;P&gt;Here is an example using vbscript.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="calculatefiedl.png" class="image-8 jive-image" src="https://community.esri.com/legacyfs/online/14630_calculatefiedl.png" style="width: 620px; height: 431px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14114163579242520 jive_text_macro" jivemacro_uid="_14114163579242520"&gt;
&lt;P&gt;k = InStr( [Popup], "&amp;lt;/style&amp;gt;" )&lt;/P&gt;
&lt;P&gt;l = k + 7 &lt;/P&gt;
&lt;P&gt;totallength = Len( [Popup] )&lt;/P&gt;
&lt;P&gt;bodycount = totallength - l&lt;/P&gt;
&lt;P&gt;bodytext = Right( [Popup], bodycount )&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="vbscriptcode.png" class="image-9 jive-image" src="https://community.esri.com/legacyfs/online/14631_vbscriptcode.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2014 20:11:01 GMT</pubDate>
    <dc:creator>MarkBockenhauer</dc:creator>
    <dc:date>2014-09-22T20:11:01Z</dc:date>
    <item>
      <title>Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737502#M3085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First off, I typed "add custom icons to arcexplorer" in search and found nothing, so if there's other threads on this topic, please forgive me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, what a great tool for people to use! Thank you ESRI!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now down to the bones.&lt;/P&gt;&lt;P&gt;I've created custom icons 64 x 64 with transparent backgrounds, saved as "name of image".png and have no problem loading them one at a time to maps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can set them up on an offline tablet (surface pro 2), send a crew out with the tablet in airplane mode, and they can use landmarks to put a fire hydrant icon smack dab as close as most gps units can place it. They can comment on it, then create a folder for this new placemark, share the folder as either a layer package or a kmz file, put it on a thumbdrive, and voila, I can bring it up on my ArcMap, and use it to update my information, and have the icon as close as it can be until our engineering department goes out and shoots the exact spot with their gps unit.&lt;/P&gt;&lt;P&gt;This is working great for us! We don't have to spend money on 4g or anything for the tablets we use in the field, which means we can afford to pursue this on a large scale. Thanks for this great tool, ESRI!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, My problem is, the custom icons are only custom for the map.nmf they are physically associated with. (with which they are associated, or whatever) No problem here. they work great! But I want them to be available specific to the program, not the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make the custom icons available to all maps? Or can I? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before answering, I am running build ArcMap 10.2.1.3497 and have no extra modules, etc whatever added, and want to know how to get these in explorer desktop USING explorer desktop. I say this because in searching google, I saw what looked like a way to use ArcMap's capabilities to create new styles or something, and my setup was not at all like what was mentioned in the thread I was looking at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, can I take the custom icons I've added to ArcExplorer Desktop 2500 on a windows surface pro 2 and make them available for each and every new map I might want to create on my surface pro without having to add each ... icon ... one ... at ... a ... time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We want our guys in the field to be able to use this new tool to its fullest capability. Besides, there's hydrant, valve, water tank, etc etc etc icons for explorer, and I've yet to find add on icons anywhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I've seen where you can write a script to give folders custom icons, but this has nothing to do with that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then there's also another problem: anything added to a custom icon, once placed, as far as comments seems lost when the icon is moved to arcmap. I try to look at any information (hydrant number, pressure, flow, was it 10 feet from the black dog or the oak tree, etc etc etc) is nowhere to be found. Can this be remedied in future builds? I've tried it in lpk and kmz files, and can't find any information. If these would carry over any comments made, it would be super helpful, thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all, I hope I've explained adequately what I am trying to accomplish and am posting this in the right place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 15:02:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737502#M3085</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-22T15:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737503#M3086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can, but it will require updating files in the install folder on each computer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Explorer (x86)\Styles folder, add your icon as a .PNG image to the SymbolImages folder.&amp;nbsp; (Explorer uses 64x64 for image size, if you use larger images and lots of them, the gallery will be slower to load.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="addexplorersymbols.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/14538_addexplorersymbols.png" style="width: 620px; height: 589px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Example I will add this image "happy.png" for use as a symbol.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="happy.png" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/14539_happy.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the image in the SymbolImages folder.&amp;nbsp; In this case will put it in the "Health" folder.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="symbolimagehealth.png" class="jive-image image-3" src="https://community.esri.com/legacyfs/online/14546_symbolimagehealth.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am working with English language, so I will update the ExplorerSymbols.xml file to reference the image in the Symbolimages\Health folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="nameidpath.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/14547_nameidpath.png" style="width: 620px; height: 185px;" /&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14114141750162148 jive_text_macro" jivemacro_uid="_14114141750162148" modifiedtitle="true"&gt;
&lt;P&gt;&amp;lt;Symbol SymbolType="Marker" Name="happy" Category="Health" Id="happyMarker" Size="25"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;SymbolSource Type="Image" Location="Install" Path="SymbolImages\Health\happy.png" /&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/Symbol&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The File contains information for each symbol.&amp;nbsp; In the above example, I Named the Symbol happy and placed it in the Health category.&amp;nbsp; You must give it a unique ID as well as updating the Path to the symbol.&amp;nbsp; (Note: the path does not support using a URL)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="symbolgallery.png" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/14548_symbolgallery.png" style="width: 620px; height: 546px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second part of your question.&amp;nbsp; When an Explorer user creates a layer package from a note.&amp;nbsp; The note title is put in a Title Field and the body of the note is put in a Popup field.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="popupfields.png" class="jive-image image-6" src="https://community.esri.com/legacyfs/online/14549_popupfields.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you open in ArcMap it is represented as:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="popfiedls.png" class="jive-image image-7" src="https://community.esri.com/legacyfs/online/14550_popfiedls.png" style="width: 620px; height: 284px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You users can use the Note Title to convey some information, and it is just a string in the field.&amp;nbsp; In the body case, some style is included to account for HTML that may have been in the body of the note.&amp;nbsp; In your case it is straight text.&amp;nbsp; to make it a little easier to deal with, you could add a new field and calculate it equal to the popup field, and use some vbscript or python to strip out the style information.&lt;/P&gt;&lt;P&gt;Here is an example using vbscript.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="calculatefiedl.png" class="image-8 jive-image" src="https://community.esri.com/legacyfs/online/14630_calculatefiedl.png" style="width: 620px; height: 431px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14114163579242520 jive_text_macro" jivemacro_uid="_14114163579242520"&gt;
&lt;P&gt;k = InStr( [Popup], "&amp;lt;/style&amp;gt;" )&lt;/P&gt;
&lt;P&gt;l = k + 7 &lt;/P&gt;
&lt;P&gt;totallength = Len( [Popup] )&lt;/P&gt;
&lt;P&gt;bodycount = totallength - l&lt;/P&gt;
&lt;P&gt;bodytext = Right( [Popup], bodycount )&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="vbscriptcode.png" class="image-9 jive-image" src="https://community.esri.com/legacyfs/online/14631_vbscriptcode.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 20:11:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737503#M3086</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-22T20:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737504#M3087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Mark. I was certain there would be a way. I don't mind having to do it for each tablet, I'll just set up my standard set of custom icons, and a custom .xml file and keep it to use on all the tablets we'll be setting up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great job with concise information. I really appreciate that!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 20:15:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737504#M3087</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-22T20:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737505#M3088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aw heck yeah, it's even better than that.&lt;/P&gt;&lt;P&gt;I added a folder called Water and Sewer to SymbolImages, and put a green hydrant image in it and edited the .xml file like this:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Symbol SymbolType="Marker" Name="Green Hydrant" Category="Water and Sewer" Id="GreenHydrantMarker" Size="25"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;SymbolSource Type="Image" Location="Install" Path="SymbolImages\Water and Sewer\Green Hydrant.png" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Symbol&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and put it all in my tablet, and voila, the new directory is in the program with the green hydrant right there where it's supposed to be.&lt;/P&gt;&lt;P&gt;Now I can get all my custom icons in there!&lt;/P&gt;&lt;P&gt;We've been using this tablet as a test and it is passing everything I can throw at it, now we've ordered another one and I'm going to set it up for one of our guys to take out in the field and use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is great, now I can set up separate tablets for out pumps and tank guys, sewer guys, water guys, etc and they will all have exactly what icons they need for each situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as notation of new placemarks, it's sad that the information doesn't just carry over from explorer to arcmap without any extra work. Nothing that was entered in the pop up field at all makes it to arcmap.&lt;/P&gt;&lt;P&gt;All I see in popup when I extract .dbf from attributes is this:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 1783px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="1783"&gt;&amp;lt;style&amp;gt;body { font-family:Arial; font-size:x-small; } h1 { font-family:Arial; font-size:x-large; } h2 { font-family:Arial; font-size:large; } h3 { font-family:Arial; font-size:medium; } h4 { font-family:Arial; font-size:small; } h5 { font-family:Arial; f&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and yes, it just stops at ~; f after h5 on both. huh.&lt;/P&gt;&lt;P&gt;I'll play around with it, though, but that's a lot of stuff to deal with.&lt;/P&gt;&lt;P&gt;I wonder if there's any chance in version 2500 x there'll be a straight forward notation field that will remain intact when shared via lpk or kmz? sure would be nice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway, you rock, thanks a ton!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*edit,&lt;/P&gt;&lt;P&gt;Of course when people bring the tablets in, I'll be collecting the layers they've placed on thumb drives, so it won't be a problem to have explorer open in one monitor and arcmap in another and look at the information in the pop up while I'm editing, if I ever have to, but I do hope someone with ESRI sees the need to have that field go into an attribute field named notes, perhaps with text format at perhaps 150 characters or something... or maybe have it customizable itself... for like text notes of x amount of characters, or numerical data, floating integers, etc, just like attributes for shapefiles are in arcmap. Sure would be useful if it worked that way in some future iteration... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:42:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737505#M3088</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-23T14:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737506#M3089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The popup field in the layer package has a length of 262144&amp;nbsp; so it should be more than enough to hold the contents of the note.&amp;nbsp; The note body only supports 32,608 typed characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using ArcGIS Explorer I create a note add 32,608 characters, create a layer package and the resulting file geodatabase contains a Popup field with all 32,608 characters, plus the style tags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure why your result is truncated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried creating a KML out of the note and using KML to layer, and viewing that in ArcMap showed all of the information as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice that your string is truncated at 255 characters.&amp;nbsp; Are you exporting to a shapefile?&amp;nbsp; if you are that would be the reason.&amp;nbsp; Shapefiles have a field length limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 19:52:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737506#M3089</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-23T19:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737507#M3090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(allow me to preface all of this with "I'm taking the lpk file and opening it in ArcMap", the information is intact when migrating from one place to another opening it up in explorer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I click Point, click where I want it to be, change word note to whatever reference I want, Hydrant R3-999, etc, then type in some description in the pop up field of whatever needs to be in there, maybe gpm static pressure, etc or anything else, then click okay. This leaves the dialogue up on screen.At this point, I can now (thank you) click on the pin and edit it to show one of my new icons.&lt;/P&gt;&lt;P&gt;Now I go to contents, right click on my new layer, and click share. I'm presented with map content, which only opens in arc explorer from all I can tell, Layer Package or KML (which is actually a KMZ file, but we won't quibble).&lt;/P&gt;&lt;P&gt;I have saved as each, and not gotten the map content to work in arc map, so that's a no go, but the other two - well you see above what happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as uploading maps, we'll stick with migrating them to tablets locally. Using shp files or even gdb files causes the maps to be stuck using only Explorer's symbols and styles, and this is not acceptable for the vast amount of information we're dealing with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I got custom icons!!!! woo hoo!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 11:51:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737507#M3090</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-24T11:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737508#M3091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just repeating what you wrote.&lt;/P&gt;&lt;P&gt;Create note.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="r3note.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/15001_r3note.png" style="width: 620px; height: 240px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Share as Layer Package and Add the Package back into ArcGIS Explorer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="R3package.png" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/15095_R3package.png" style="width: 620px; height: 276px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you repeat the same?&lt;/P&gt;&lt;P&gt;And re-confirm that you are using ArcGIS Explorer 2500 or 2505?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 16:10:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737508#M3091</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-24T16:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737509#M3092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is, I'm taking these and putting them on ArcMap and that is what is truncating the notes, etc.&lt;/P&gt;&lt;P&gt;they're fine on other devices running explorer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 16:12:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737509#M3092</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-24T16:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737510#M3093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what version of ArcMap are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 16:14:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737510#M3093</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-24T16:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737511#M3094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just re-read, see that it is 10.2.1.&amp;nbsp; I will research it...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 16:19:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737511#M3094</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-24T16:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737512#M3095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Esri ArcMap 10.2.1.3497&lt;/P&gt;&lt;P&gt;and explorer is 2500.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 16:21:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737512#M3095</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-24T16:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737513#M3096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was not able to reproduce what you are seeing.&amp;nbsp; Created a layer package from a note in ArcGIS Explorer 2500.&amp;nbsp; Opened the package in ArcMap 10.2.1.3497 and Popup information is present.&amp;nbsp; It is not truncated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 20:19:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737513#M3096</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-24T20:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737514#M3097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark, so that we're on the same page, would you mind posting a step by step, not images, just something like:&lt;/P&gt;&lt;P&gt;In Explorer, click on point, and place your point on the map, in the note dialog, enter a name, then in the pop up box beneath it, place information unique to the point, click OK.&lt;/P&gt;&lt;P&gt;Now go to your point icon in the contents window on the right and right click it and choose "share", in the Sharing window that appears, select ... etc etc.&lt;/P&gt;&lt;P&gt;At this point I can select either layer package or kml, and neither one, when migrated to arcmap will give me pop up info. The kmz file, though, will at least show the name of the pin I placed. See images:&lt;/P&gt;&lt;P&gt;This is in Explorer, the original pin.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="15295" alt="pin test explorer1.jpg" class="jive-image image-1" src="/legacyfs/online/15295_pin test explorer1.jpg" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the lpk file in ArcMap. Nothing I check in labels will display anything.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="15380" alt="pin test lpk1.jpg" class="jive-image image-2" src="/legacyfs/online/15380_pin test lpk1.jpg" style="width: 620px; height: 386px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the kmz file imported into ArcMap. The only thing that appears is Name. If I add ANYTHING else it's blank.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="15381" alt="pin test kmz1.jpg" class="jive-image image-3" src="/legacyfs/online/15381_pin test kmz1.jpg" style="width: 620px; height: 387px;" /&gt;&lt;/P&gt;&lt;P&gt;And here is the popup / popup info extracted to dbf from the attribute table, it is the same in the lpk as wel las the kmz files.&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 1511px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="1511"&gt;&amp;lt;style&amp;gt;body { font-family:Arial; font-size:x-small; } h1 { font-family:Arial; font-size:x-large; } h2 { font-family:Arial; font-size:large; } h3 { font-family:Arial; font-size:medium; } h4 { font-family:Arial; font-size:small; } h5 { font-family:Arial; f&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;[\code]&lt;/P&gt;&lt;P&gt;Wish this forum had code tags...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But wait, there's more!&lt;/P&gt;&lt;P&gt;I've attached them both if you want to give them a look see.&lt;/P&gt;&lt;P&gt;I'm thinking this is something I'll need to get my GIS IT guy to look at, and see if there's something in the settings keeping this from working.&lt;/P&gt;&lt;P&gt;We all answer to the IT department, and heaven forbid if our computers were functional and actually worked as tools, you know. Maybe he can get it going without begging IT to allow him to do anything. (I can't edit the xml file in explorer here on my desktop. I've been working on that in the tablet)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Edit:&lt;/P&gt;&lt;P&gt;I took the kmz file and tested it in google earth, and the pop up dialog is intact, so it's something to do with arcmap, I'm sure. I'll have our GIS guy see if he can figure it out, thanks, Mark!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 13:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737514#M3097</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-25T13:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737515#M3098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unbelievable.&lt;/P&gt;&lt;P&gt;Does the phrase "HTML POP UP TOOL" sound familiar?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unreal it's that easy. No idea why the attributes show that the pop up stuff is truncated, but it works now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 19:17:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737515#M3098</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-25T19:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737516#M3099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this is just an issue with labeling in ArcMap.&amp;nbsp;&amp;nbsp; I can reproduce the same issue. &lt;/P&gt;&lt;P&gt;If you set placement properties for the label you can make it show up, but it won't fit on the screen and won't look that good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the labeling properties.&lt;/P&gt;&lt;P&gt;I placed the label on the point.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="palcelabelonpoint.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/15393_palcelabelonpoint.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then set the Conflict Detection to place overlapping labels.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="palceoverlapping labels.png" class="jive-image image-2" src="/legacyfs/online/15394_palceoverlapping labels.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This labels the point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="labelonpoint.png" class="jive-image image-3" src="https://community.esri.com/legacyfs/online/15395_labelonpoint.png" style="width: 620px; height: 88px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use the following label expression to the make the Popup field from a layer package created in ArcGIS Explorer Desktop look better in ArcMap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function FindLabel ( [Popup] )&lt;/P&gt;&lt;P&gt;k = InStr( [Popup], "&amp;lt;/style&amp;gt;" )&amp;nbsp; &lt;/P&gt;&lt;P&gt;l = k + 7&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;totallength = Len( [Popup] )&amp;nbsp; &lt;/P&gt;&lt;P&gt;bodycount = totallength - l&amp;nbsp; &lt;/P&gt;&lt;P&gt;bodytext = Right( [Popup], bodycount )&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if len(bodytext) &amp;gt; 10 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if instr(bodytext," " )&amp;lt;&amp;gt;0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; str=split(bodytext," " )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i = lbound(str) to ubound(str)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FindLabel1= FindLabel1&amp;nbsp; &amp;amp; " " &amp;amp;&amp;nbsp; str(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if len(FindLabel1) &amp;gt;= 25 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label= label &amp;amp; " " &amp;amp; vbcrlf &amp;amp; " " &amp;amp; findlabel1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findlabel1=""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; findlabel = label &amp;amp; " " &amp;amp; vbCrLf &amp;amp; " " &amp;amp; FindLabel1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FindLabel = bodytext&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script removes the &amp;lt;style&amp;gt; tags and wraps the label text for display on the map.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="labelexpressionresult.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/15480_labelexpressionresult.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;To set text alignment use the Symbol Properties&lt;/P&gt;&lt;P&gt;&lt;IMG alt="allignmentproperties.png" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/15481_allignmentproperties.png" style="width: 620px; height: 434px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When it comes to really long strings ArcMap's Identify and table window do not show everything, the value displayed is truncated.&amp;nbsp; When you exported to .DBF that too is truncated as .DBF does not allow for text fields with lengths greater than 254.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ArcMap's table window if you right click and copy the string value, you can paste it into a text editor, like notepad, and see the full value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that you found a solution using the Popup tool in ArcMap, but to be thorough&amp;nbsp; ... added the above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 22:06:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737516#M3099</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2014-09-25T22:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737517#M3100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great advice, if I ever run into any Tolstoy-esque-ishly lengthy notes, I'll know how to handle them! But hopefully the only information these will have will be support data and measurements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your time and effort in helping me with the icons, and especially the note problem.&lt;/P&gt;&lt;P&gt;Sure the solution was typically simple (often times the answer's hiding in plain site, eh?), but the wealth of knowledge you have shared is greatly appreciated and welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting the notes to appear in arcmap was the last item on my list of things that perhaps didn't have to work for us to go full tilt using the tablets in the field offline, but it was something I wasn't going to let go of before I said, "Yes, this is ready."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are a wealth of knowledge, and a credit to the community.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 12:12:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737517#M3100</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-09-26T12:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Add Custom Icons to ArcGISExplorer 2500</title>
      <link>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737518#M3101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark, one more question, I hope you can answer, if not I hope you can direct me to whomever I need to go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We want our physical maps on the tablets running ArcExplorer to have the exact same icons&amp;nbsp; showing for hydrants, etc as our wall maps show. Continuity and all that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you know, when you take any shapefiles from arcgis and put them in explorer, the icons and custom lines and everything are gone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use kmz files, it's slow and mercilessly lethargic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use layer packages, you lose the icons, but if you have esri's fonts in the windows\fonts directory, the icons show up fine. Because as you know, the icons are actually fonts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the question is, is it legal to use the esri fonts from arcgis map in arc explorer? Both are arc software, should this not be okay? If not, is there a way other than kmz files to get the icon/fonts to show up on explorer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which brings to mind, of course, another question: is there any way to do view scaling (?) in arc explorer? I have layers one doesn't need to see when one is looking at the map from a scale of 12000:1, is there a way to get scaling to function in arc explorer? I wonder if the powers that be will work that in on a future software upgrade?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for putting up with my incessant questions and ramblings!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2014 13:57:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-for-windows-mobile-questions/add-custom-icons-to-arcgisexplorer-2500/m-p/737518#M3101</guid>
      <dc:creator>BillSchroeder</dc:creator>
      <dc:date>2014-10-06T13:57:36Z</dc:date>
    </item>
  </channel>
</rss>

