POST
|
Hi Andres The "Use Advanced editor" button is highlighted in the screenshot below. When you click that, you will see an option to Attach files to your message. Thanks Uma
... View more
12-12-2016
03:46 PM
|
1
|
3
|
2221
|
POST
|
Hi Andres, When you are typing up a message in GeoNet, click on the "Use Advanced Editor" on the top right corner above your message. You will see the "Attach" option at the bottom. Like this screenshot below. Thanks Uma
... View more
12-12-2016
12:26 PM
|
1
|
1
|
2221
|
POST
|
Hi Andres Can you please zip up your project and add it to this thread? I can take a look at it and see why this is not working for you. Thanks Uma
... View more
12-12-2016
11:06 AM
|
1
|
3
|
2221
|
POST
|
Hi Andres To see where the problem lies, you could try this: 1. In Visual Studio, create a simple add-in with just a button item using the SDK Templates. 2. In your file explorer, access the Images folder of this add-in on disk. 3. You will see the GenericButtonBlue32.png and GenericButtonBlue16.png. 4. Delete them. 5. Copy your custom png to this folder and rename your png to be GenericButtonBlue32.png and GenericButtonBlue16.png 6. In Visual Studio, compile your add-in project and test if the button loads in Pro with the custom png instead of the generic blue image. If it does, then you could check your add-in where it is not working. If it does not work, it could be a png issue. Thanks Uma
... View more
12-09-2016
02:26 PM
|
1
|
1
|
2221
|
POST
|
Hi Andres The two things to watch for while adding a custom image to a button is: The direction of the folder slash you specify for the png in the daml. The png file's BuildAction property specified in Visual Studio should be "AddInContent" and not Resource. There is a ProGuide Diagnosing ArcGIS Pro Add ins that discusses this. Check out the Image does not load on a Button control topic on this guide. Thanks Uma Harano ArcGIS Desktop SDK team
... View more
12-09-2016
12:07 PM
|
2
|
1
|
2221
|
POST
|
Hi Benoit The Layer Pop up sample does exactly what you mention - you will be able to customize the default pop-up displayed by the explore tool. Additionally, the pdf I listed in the previous post explains Layer pop-ups in Pro. Thanks - Uma
... View more
11-29-2016
01:39 PM
|
0
|
1
|
953
|
POST
|
Hi Benoit Additionally, I have listed a video and a powerpoint from Dev Summit 2016 and User Conference 2016 that covered these topics: http://www.esri.com/videos/watch?videoid=5045&channelid=LegacyVideo&isLegacy=true&title=arcgis-pro-sdk-for-.net:-animation-and-map-exploration http://proceedings.esri.com/library/userconf/proc16/tech-workshops/tw_1853-255.pdf We will probably be covering these topics in the Esri Developer Summit 2017 at Palm Springs also Thanks! Uma Harano
... View more
11-29-2016
11:24 AM
|
1
|
0
|
953
|
POST
|
Hi Benoit You can check out the following two samples in the arcgis-pro-sdk-community-samples repository to see how you can make Custom pop ups and Layer pop ups: arcgis-pro-sdk-community-samples/Map-Exploration/CustomPopup at master · Esri/arcgis-pro-sdk-community-samples · GitHub arcgis-pro-sdk-community-samples/Map-Exploration/LayerPopups at master · Esri/arcgis-pro-sdk-community-samples · GitHub Thanks Uma Harano ArcGIS Desktop SDK Team
... View more
11-29-2016
11:21 AM
|
0
|
3
|
953
|
POST
|
Hi Issa, Here is the link: arcgis-pro-sdk-community-samples/Map-Exploration/CustomIdentify at master · Esri/arcgis-pro-sdk-community-samples · GitH…
... View more
10-30-2016
04:21 PM
|
1
|
0
|
1031
|
POST
|
Hi Rich You can see a list of all these commands on this page: Button DAML ID Reference · Esri/arcgis-pro-sdk Wiki · GitHub Thanks Uma Harano ArcGIS Desktop SDK team
... View more
10-20-2016
02:14 PM
|
1
|
0
|
1574
|
POST
|
Hi Collin Here is a sample that contains three different examples of working with Pro's graphic overlay: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Map-Exploration/OverlayExamples There are also some code snippets available here: https://github.com/ArcGIS/arcgis-pro-sdk/wiki/ProSnippets-MapExploration#graphic-overlay Thanks Uma Harano ArcGIS Desktop SDK Team.
... View more
10-14-2016
01:37 PM
|
2
|
0
|
393
|
POST
|
Hi JB, Creations\Modifications of a geodatabase are supported through the Geoprocessing API by using the Data Management tools. The FAQ section has more information on this. Thanks Uma Harano ArcGIS Desktop SDK Team.
... View more
10-10-2016
08:58 AM
|
0
|
0
|
1263
|
POST
|
Hi Karl, At 1.3 you can control the order by which your add-in is loaded by ArcGIS Pro using the "id" attribute of your Add-in (from the config.daml). For Example: "Add-In#1" has an id attribute declared in the config.daml as {c1a60c8f-2f6f-4198-a5d6-ea964ebf678c}. Add-In#2 has an id of {0d9f5aca-097b-4e49-9e44-505a61b99308}. Snippet from config.daml given below: <AddInInfo id="{c1a60c8f-2f6f-4198-a5d6-ea964ebf678c}" version="1.0" desktopVersion ... and <AddInInfo id="{0d9f5aca-097b-4e49-9e44-505a61b99308}" version="1.0" desktopVersion ... Pro will load Add-In#2 with GUID 0d9f5aca.. first followed by Add-In#1 with GUID c1a60c8f.. (Alphabetically sequenced). So Add-In# 1 can modify UI elements declared in Add-In#2. At 1.4, you will be able to control this better with a "Dependency" tag in the config.daml. Thanks Uma Harano ArcGIS Desktop SDK Team
... View more
09-26-2016
06:17 PM
|
0
|
0
|
567
|
POST
|
Hi Horia You can use existing ArcGIS Pro commands in your own add-in by using the FrameworkApplication class' GetPlugInWrapper method. There are a few samples that shows you how to do this: Hook Pro Commands sample. Identify Window sample Thanks Uma
... View more
07-05-2016
11:10 AM
|
1
|
0
|
710
|
POST
|
Hi Luke The "condition" attribute of the dockpane element in the config.daml is deprecated. It cannot be used to control the visibility of the controls inside the dockpane. Thanks Uma Harano
... View more
07-05-2016
09:36 AM
|
0
|
3
|
1237
|
Title | Kudos | Posted |
---|---|---|
1 | 09-11-2024 09:19 AM | |
1 | 09-11-2024 09:15 AM | |
1 | 08-07-2024 01:53 PM | |
1 | 08-05-2024 09:15 AM | |
1 | 07-30-2024 02:26 PM |
Online Status |
Offline
|
Date Last Visited |
a month ago
|