I feel I didn't do a great job with a couple of these and just wanted to add
On Dec 27, 6:04 pm, Shaun <[email protected]> wrote: > On Dec 25, 12:16 pm, Jerry <[email protected]> wrote:> Hi, > > > Can any one explain me the following points > > > 1.In google maps which part is flash and which part is flex? > There is a swc compiled to be used in Flash and one to be used in Flex because the primitive container in Flex is a UIComponent rather than a Sprint so adding it directly to flex containers is easier with the extra interfaces implemented by UIComponent, the Flash one wouldn't include Flex component life cycle. > > > > > 2.Life cycle of its execution? > Although still not a full answer if you look through the docs for any object that has the word Event in it then check out the constants that'll basically describe the "life cycle" I imagine some of it can be out of order due to the asynchronous calls and obviously the events generated by user interaction http://code.google.com/apis/maps/documentation/flash/reference.html#MapEvent. > > > > 4. Why is that everytime its downloading when executing in the browser > > is it because the maps are always updating? They do also update the maps it seems pretty frequently at least in urban areas. > > > 5.I work google maps in flash builder i.e executing the mxml file > > using flash builder and rendering it into the browser but i'm finding > > some examples of google maps given in html file but no mxml file i > > need to re-organize this given html example back into mxml is there a > > way? > Usually check if they have view source enabled in the right click Flash Menu, if not as previously stated you'd have to decompile the swf which depending on the licenses surrounding the code in there I believe could be illegal, though I'm no lawyer I would certainly say don't do this to any code that appears to be in production, if you find it on my site I don't mind personally but I usually try to include the source for everything. So, the way it works is when you see flash on the internet it's in an HTML file or otherwise in HTML that was generated by some server side script, which has an embed tag and an object tag both with some parameters to pass along to the plugin that handles that type of file, in this case the Flash plugin. It'll include in the parameters the location of the swf file, this swf file however is not the original AS3 code as it was written but rather the actionscript bytecode equivalent. AS3 bytecode has a white paper that outlines the format so anyone can write a swf editor and or compiler (FDT) or plugin (Gnash). http://www.slideshare.net/intrudere/swf-file-format-spec-v10 > Shaun -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api-for-flash?hl=en.
