Re: [flexcoders] Integrate Flex with Google Maps

2008-04-18 Thread Anirudh Sasikumar
Hey Nirav, Personally, I suggest using the AS3 yahoo maps API. Take a look at what its capable of: http://developer.yahoo.com/flash/maps/examples.html Cheers, -- Anirudh Sasikumar http://anirudhs.chaosnet.org/

Re: [flexcoders] Integrate Flex with Google Maps

2008-04-18 Thread Nirav Upadhyay
Hi anirudh, thanks for reply So i mean that GMaps is not perfect for Integration with Flex? So we should use YMaps? Thanks, Nirav On Fri, Apr 18, 2008 at 3:15 PM, Anirudh Sasikumar < [EMAIL PROTECTED]> wrote: > Hi, > > The way to embed google maps is present in the link you have posted. > It u

Re: [flexcoders] Integrate Flex with Google Maps

2008-04-18 Thread Anirudh Sasikumar
Hi, The way to embed google maps is present in the link you have posted. It uses google maps like the way you normally would from a HTML page. But the div containing the map is positioned where you want it over the flex UI. It's a combination of HTML and Flex. This is not the most elegant solutio

[flexcoders] Re: Flex3 App does not work on Flash Player 9.0.124.0

2008-04-18 Thread Paul Fischer
Alex, I resolved the problem, and it was my code. It did not occur to me that bad code would run in the debugger player, but cause the standard player to lock up. The code problem was in the function for the AdvancedDataGrid.styleFunction. It had a switch structure with a missing break on a cas

[flexcoders] Integrate Flex with Google Maps

2008-04-18 Thread Nirav Upadhyay
Hi all, I want to integrate flex with google map. I have used the below link also. http://javey.net/flex/map2/bin/map2.html http://note19.googlecode.com/svn/trunk/map2/html-template/index.template.html But i didn't find any source code for this and download it in my system and run it from here.

[flexcoders] Error when try to display some images in one repeater.

2008-04-18 Thread txakin
Hi all I want to display using one repeater some imagesthat i get from the database. I´m using Cairngorm for my applicaiton...but i think this is not my problem I´m getting one error...maybe because my unknowledge in Flexand is related with the events Here is my source : As

Re: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Christophe Herreman
You could also build your project with Ant and pass in a list of extra classes to the compiler with the include-classes option. The list of extra classes can be derived from your xml file. "I need to create object instances based on XML data." Have you checked Prana? (www.pranaframework.org) ;-)

RE: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Dale Fraser
Doesn't work for my needs. I need to create object instances based on XML data. The component creating the instances isn't aware of what objects might get created. So I would need to declare every type of object just in case. Which means it's not dynamic at all, as soon as there is a new Object

[flexcoders] Re: Clipping of charts

2008-04-18 Thread g_odds
Isn't this what the filterData property of the Series class is for? If you set it to false then data points outside the x and y axis ranges won't be filtered out. Graham --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > I too am surprised that this can't be more

Re: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Stephen Downs
You just need to declare it somewhere, its still dynamic, i.e. it may be created it may not. You don't have to actually use the declared var, your just making sure thats its available for creation. private var declared:views.pr.ProjectView; --

Re: [flexcoders] Is there an easier way? [Embedding swf asset]

2008-04-18 Thread Stephen Downs
Those are the steps We'll be releasing some library classes over the next week or so which we use for embedding and loading assets, that might be of interest to ya. Tink On 17 Apr 2008, at 23:18, Steve Mathews wrote: Ok, so going off the steps on this page: http://www.adobe.com/dev

Re: [flexcoders] Re: Flex Compenents, how to make them talk

2008-04-18 Thread Nick Gerig
Thanks Gordon, That explains it, I thought UIComponent extended Container for some reason. Got it now :) Cheers Nick Gordon Smith wrote: > > Sorry, I don't understand your question. Each child of a ViewStack can > be any kind of Container. (A Container is a UIComponent, but a > UIComponent

RE: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Dale Fraser
Thanks, That kind of makes it non dynamic if I need to reference it elsewhere. Is there a way around this. Regards Dale Fraser http://learncf.com http://flexcf.com From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Dynamic Instance Problem

2008-04-18 Thread Christophe Herreman
Hi Dale, did you reference the class somewhere in your code? It needs to be compiled into the swf in order to instantiate it dynamically. My personal preference is to do this with a static code block: { MyClass1, MyClass2 } regards, Christophe -- Christophe Herreman http://www.herrodius.c

<    1   2