|
POST
|
Set the width and height of the application to 100%.
... View more
06-09-2011
05:04 PM
|
0
|
0
|
2058
|
|
POST
|
Hello, I am having issues with Attachments and am unable to figure out what???s causing the issue. I created a Flex Widget to view, add and remove attachments and it works fine, but once you view about 20 attachments the attachment URL starts to timeout. I have examined this using Firebug. Even if I just call you attachment URL directly from my browser it will fail after I request it about 20 times. Does anyone have any ideas what might be causing this. It seems to be AGS related. I should note that my attachemtns is a jpg and stored as image/jpeg - mine type is also added in the agsoutput virtual directory, i can watch the images being written to the output directory too.
... View more
05-31-2011
04:49 AM
|
0
|
1
|
1059
|
|
POST
|
I am modifying a Flex Viewer for someone and am unable to get the old QueryBuilder Widget to use a proxy.. There is a proxy property but it does not work - tested many times...... ESRI -> Is the source code available for the lib Querybuilder.swc on the web somewhere so I can get the Querybuilder Widget for SFV 1.3 to work with a proxy.ashx file? Drew
... View more
05-15-2011
05:31 PM
|
0
|
0
|
861
|
|
POST
|
Nevermind.. I found it in a FlexViewer1.3 source I was able to pull from some unknown location on the web.
... View more
05-14-2011
04:07 PM
|
0
|
0
|
557
|
|
POST
|
I am working on a very old project for someone and I need the source for an old Query Widget someone wrote. I am unable to find it the code gallery - probably because its so old. I am looking for com.esri.solutions.esa.querybuilder.* files It resembles the attached screenshot. I need the source because I have to modify the code to use secured services. Anyone have the source for me? Thanks! Drew
... View more
05-14-2011
02:30 PM
|
0
|
1
|
787
|
|
POST
|
Does anyone have any experience using secured services through a reverse proxy? I am having issues authenticating a token once the application passes through the reverse proxy. I am able to get it working on the host machine. I am using an older version of the Flex Viewer (1.3) - no my choice - So I have configured the token to be passed using the proxy.ashx file. I am using Apache mod_proxy and AGS 9.3.1 - (not my choice) Any tips would be appreciated generating the token to work through a reverse proxy. Is there a way to generate a token that can be authenticated from any IP, or web application or do they all have to be created specifically for each app URL. Drew
... View more
05-10-2011
06:26 PM
|
0
|
2
|
3164
|
|
POST
|
Very cool! I could not quite understand how to control the 3d view, but i like it. I ran it on an Intel i7 920 @ 3.2 ghz with 6 gigs of RAM and it was pretty smooth. CPU ran at about 40% when moving in the 3d view Any way to zoom in when in 3d view?
... View more
04-20-2011
04:58 PM
|
0
|
0
|
510
|
|
POST
|
You can not detect the percent processed, but you can detect the start of the query and when it is complete. Add a progress bar to your component Set the "Indeterminate" property to true. Set the visibility to false. When your code starts its search set the progress bar visibility to true When the query is complete set the visibility of the progress bar back to false. Hope that helps. Drew
... View more
03-31-2011
01:29 PM
|
0
|
0
|
366
|
|
POST
|
On the FeatureLayer there is a "graphicAdd" event. This will give you a graphic to apply the listeners on. See the below ESRI sample illustrating adding tooltips to a graphic. I have not tested this, but I assume you would apply similar code to as i showed above. Link: http://help.arcgis.com/en/webapi/flex/samples/index.html?sample=FeatureLayerWithTooltips Drew
... View more
03-26-2011
08:16 AM
|
0
|
0
|
1072
|
|
POST
|
When you get your query results just add the listeners to the graphic. Below is a code sample..
queryTask.execute(query, new AsyncResponder(onResult, onFault));
function onResult(featureSet:FeatureSet, token:Object = null):void
{
for each (var graphic:Graphic in featureSet.features)
{
graphic.addEventListener(MouseEvent.MOUSE_OVER, function(event:MouseEvent):void
{
graphic.useHandCursor = true;
graphic.buttonMode = true;
map.openHandCursorVisible = false;
trace("mouse over");
});
graphic.addEventListener(MouseEvent.MOUSE_OUT, function(event:MouseEvent):void
{
graphic.useHandCursor = false;
graphic.buttonMode = false;
map.openHandCursorVisible = true;
trace("mouse out");
});
graphic.addEventListener(MouseEvent.CLICK, function(event:MouseEvent):void
{
trace("Click");
})
}
}
Drew
... View more
03-26-2011
07:22 AM
|
0
|
0
|
1072
|
|
POST
|
It should scale properly. I would check that your Application width and height properties = 100% along with the maps parent containers. Drew
... View more
03-25-2011
08:54 PM
|
0
|
0
|
2862
|
|
POST
|
Drew, Actually it does. http://thunderheadxpler.blogspot.com/2010/08/image-flare-symbol-for-clustered.html Awsome! Thanks for the assistance guys!
... View more
03-23-2011
04:48 AM
|
0
|
0
|
939
|
|
POST
|
It's actually working as expected. The cluster is turned into a single Graphic and it's being drawn using the given symbol. Any other behavior depends on the symbol that is used. Makes sense now.. For some reason I thought it would flair too.. But I guess that's what a FlareSymbol is for : ) doh! I guess what I am looking for is a FlarePictureMarkerSymbol, but that does not yet exist. Thanks for your help. Drew
... View more
03-22-2011
07:39 PM
|
0
|
0
|
939
|
|
POST
|
Yes, that should work. The cluster would be represented by the star. What's happening when you try this? I am just seeing a single star and no clustering. The star is positioned on the map as a cluster, but when i mouseover nothing seems to happen. I will try and post some sample code when I am back at my desk. Thanks, Drew
... View more
03-22-2011
07:12 PM
|
0
|
0
|
939
|
|
POST
|
Anyone know if you can cluster PictureMarkerSymbols? I am able to cluster using the FlareSymbol, but the PictureMarkerSymbol does not work. Here is what I would like to do, but I am afraid this is not supported.
<esri:PictureMarkerSymbol id="markerSymbol" source="images/star.png" height="25" width="25"/>
<esri:WeightedClusterer id="clusterer" symbol="{markerSymbol}"/>
According to the docs the WeightedClusterer.symbol property accepts any com.esri.ags.symbols Thoughts? Drew
... View more
03-22-2011
07:00 AM
|
0
|
6
|
1225
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-04-2013 09:40 AM | |
| 1 | 12-11-2012 10:19 AM | |
| 1 | 05-25-2015 10:46 AM | |
| 1 | 05-10-2016 06:31 AM | |
| 1 | 01-17-2017 11:01 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-31-2021
09:54 AM
|