|
POST
|
The ArcGIS Viewer for Flex forum is dedicated to posting questions about the Flex Viewer and searching for answers about it. By looking in that forum, you would have seen this thread
... View more
09-21-2011
07:51 AM
|
0
|
0
|
896
|
|
POST
|
Here's a code fragment that will do that
'pFClass is your Feature class
'cboFields is the combo box
Dim pFields As ESRI.ArcGIS.Geodatabase.IFields2
Dim pfield As ESRI.ArcGIS.Geodatabase.IField
pFields = pFClass.Fields
For i As Integer = 0 To pFields.FieldCount - 1
pfield = pFields.Field(i)
cboFields.Items.Add(pfield.Name)
Next (i)
... View more
09-19-2011
08:06 AM
|
0
|
0
|
661
|
|
POST
|
How about using the "Replace Sketch" context menu tool? See the tip halfway down the page on this Help topic
... View more
09-15-2011
10:41 AM
|
0
|
0
|
796
|
|
POST
|
The ArcGIS Viewer for Flex forum has been set up to ask questions about the Viewer and its widgets. Please post your question there to make it easier to search for answers about the Viewer.
... View more
09-13-2011
04:54 AM
|
0
|
0
|
513
|
|
POST
|
I remember seeing a post where a user ran into the maximum number of layers (around 20 or so) that could be added to a map, but I haven't been able to find the thread.
... View more
09-01-2011
05:43 AM
|
0
|
0
|
779
|
|
POST
|
You can use the Map's Reorder method to change the order of the layers.
... View more
08-31-2011
06:51 AM
|
0
|
0
|
877
|
|
POST
|
I didn't wrap my legend in a scroller, but put it in a VGroup along with a transparency slider.
<s:VGroup id="legendGroup" width="100%" height="100%" visible="{layerBenthic.visible}">
<s:HGroup width="100%" horizontalAlign="center" paddingTop="10">
<s:VGroup width="100%" horizontalAlign="center">
<s:Label text="Layer Transparency"/>
<s:HSlider id="toolAlpha" minimum="0" maximum="100" snapInterval="1" liveDragging="true"
width="75%" change="changeTransparency()" value="100"/>
</s:VGroup>
</s:HGroup>
<esri:Legend id="legendMap" map="{mapMain}" layers="{layerBenthic}" width="100%" height="100%"
respectCurrentMapScale="true" x="10" />
</s:VGroup>
... View more
08-30-2011
06:10 AM
|
0
|
0
|
1651
|
|
POST
|
The ArcGIS Viewer for Flex forum was set up for posing questions about widgets and searching for answers about them.
... View more
08-26-2011
05:20 AM
|
0
|
0
|
849
|
|
POST
|
Thanks, Robert. This is another great example of your invaluable help to this forum.
... View more
08-18-2011
04:17 AM
|
0
|
0
|
2097
|
|
POST
|
Hi Robert, I've been using your Navigation tool in one of my projects, where the code has been put into a separate directory and linked to the project by Source Path. It's a great tool that I really appreciate your work on and it's been working just as expected. However, I've started another project (FB 4.5.1 and API 2.4) and have set it up the same way, but here I'm getting the error The skin part type 'mx.controls:VSlider' must be assignable to 'spark.components.supportClasses:SliderBase'. in the line [HostComponent("com.esri.ags.components.Navigation")] Why would this work in one project but not the other?
... View more
08-17-2011
07:15 AM
|
0
|
0
|
2097
|
|
POST
|
You will not find the references for the Geoprocessing tools using "Add ArcGIS Reference". You'll have to use "Add Reference" and select the .NET tab.
... View more
08-15-2011
05:47 AM
|
0
|
0
|
543
|
|
POST
|
The ArcGIS Viewer for Flex forum was created for questions like this.
... View more
08-11-2011
12:00 PM
|
0
|
0
|
476
|
|
POST
|
It works in Chrome 13 and IE 8 but not in Firefox 5. Basically, you need to interact with the map first by zooming or panning before the onclick returns something. I had this problem in Flex and got around it by adding in an alert box in the initialization. Closing the alert box provided the map interaction necessary to allow the map click to work without panning or zooming.
... View more
08-09-2011
10:47 AM
|
0
|
0
|
1919
|
|
POST
|
To add in the url, try this code by Robert Scheitlin. Here's how I use it in one of my applications.
... View more
08-09-2011
07:39 AM
|
0
|
0
|
644
|
|
POST
|
Hi Carlos, I'm glad to hear you're making progress. Since you don't have the code to show why the Clip process didn't run, examine the Results information in ArcMap to find out what happened. Could it be that it's not overwriting "in_memory\APP_ENS_OVERLAP"? Have you set the Geoprocessor to overwrite outputs, either through the Geoprocessing Options dialog or by setting pGeoprocessor.OverwriteOutput = "true"
... View more
08-09-2011
07:18 AM
|
0
|
0
|
2289
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-04-2025 06:39 AM | |
| 1 | 05-01-2026 08:26 AM | |
| 1 | 04-10-2026 12:01 PM | |
| 1 | 04-13-2026 09:11 AM | |
| 1 | 10-11-2023 06:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|