Re: [Flex] Map Component

2016-01-19 Thread OmPrakash Muppirala
Hmm this looks like a big in the mapping component, and probably not just the AS3 version. I think contacting the Modest Map folks might be the best option. Thanks, Om On Jan 19, 2016 10:38 PM, "Deepak MS" wrote: > Nope. Zoom value is 4 and this is how it's shown on load(which is as > intended

Re: [Flex] Map Component

2016-01-19 Thread Deepak MS
Nope. Zoom value is 4 and this is how it's shown on load(which is as intended): http://snag.gy/VzeMN.jpg But still those highlighted regions(Island towards left of Alaska) are drawn on right side(another instance) of the map. I thought extent would create the boundary that we would need. Shouldn'

Re: [Flex] Map Component

2016-01-19 Thread OmPrakash Muppirala
Does it have to be zoomed out so much? If you zoom in a bit, I think this issue will get fixed. Thanks, Om On Jan 19, 2016 10:04 PM, "Deepak MS" wrote: > Is there any option to avoid multiple instances of the map? I did try using > extent > > var et:MapExtent = new MapExtent(90, -90, 180, -180

Re: [Flex] Map Component

2016-01-19 Thread Deepak MS
Is there any option to avoid multiple instances of the map? I did try using extent var et:MapExtent = new MapExtent(90, -90, 180, -180); // myMap.map.setExtent(et); myMap.extent = et; But there is no change in the map. The problem is, for US map, some part gets dra

Re: AW: AW: [ApacheCon NA] Whose going and what topics?

2016-01-19 Thread Alex Harui
Well, the public snippets would be things like: ApacheCon continues to feel like more of a server-side conference and we don't get much attendance at our talks. And Apparently it helps to have a track of presentations in order to get a presentation accepted and I'm wondering if it would be of in

Re: AW: AW: [ApacheCon NA] Whose going and what topics?

2016-01-19 Thread OmPrakash Muppirala
Sure, I can contact them. Can you forward the details you sent to the Cordova team member? If that is not for public consumption, I can write a new email to the Wicket folks. Thanks, Om On Tue, Jan 19, 2016 at 2:28 PM, Alex Harui wrote: > > > On 1/19/16, 12:44 PM, "omup...@gmail.com on behalf

Re: AW: AW: [ApacheCon NA] Whose going and what topics?

2016-01-19 Thread Alex Harui
On 1/19/16, 12:44 PM, "omup...@gmail.com on behalf of OmPrakash Muppirala" wrote: >On Jan 19, 2016 10:58 AM, "Alex Harui" wrote: >> >> OK, I finally got a response from a Cordova person. They are interested >> in the client-side track idea. Once they get approval from their dev >> list, we s

Re: Names for FlexJS MXML

2016-01-19 Thread OmPrakash Muppirala
FlexJS uses the same exact MXML that Flex SDK uses. It just operates on a different default namespace - Flex SDK, with mx, spark, etc. and FlexJS with basic, js etc. Structurally they are (should) be the same. Thanks, Om On Tue, Jan 19, 2016 at 1:18 PM, jude wrote: > Alex, et al, > > Is ther

Re: Names for FlexJS MXML

2016-01-19 Thread Michael Schmalle
Agreed, MXML is a markup language and it it's AST form really has nothing to do with SWF, JS or AS, it's it's own language spec. This is why JS can be gleaned from the same thing AS is. I know I am stating the obvious but man, working with MXML since Josh released it for Feathers has been some of

Re: Names for FlexJS MXML

2016-01-19 Thread Josh Tynjala
I don't think it needs a special name. MXML is good as it is. No differentiation required. - Josh On Jan 19, 2016 1:19 PM, "jude" wrote: > Alex, et al, > > Is there a name or 3-4 letter acronym we can use for FlexJS MXML to > differentiate it from Flex MXML? I'm drawing a blank and these don't s

Names for FlexJS MXML

2016-01-19 Thread jude
Alex, et al, Is there a name or 3-4 letter acronym we can use for FlexJS MXML to differentiate it from Flex MXML? I'm drawing a blank and these don't seem to fit: FXML FXJSML FxJsML FalconML I don't think the JS part of the name fits because FlexJS also outputs SWF. It's a hybrid of Flex, MXML,

Re: AW: AW: [ApacheCon NA] Whose going and what topics?

2016-01-19 Thread OmPrakash Muppirala
On Jan 19, 2016 10:58 AM, "Alex Harui" wrote: > > OK, I finally got a response from a Cordova person. They are interested > in the client-side track idea. Once they get approval from their dev > list, we should submit talks and do more coordination. I think instead of > cross posting to both de

Re: ERROR - Circular dependency detected: A -> B -> A

2016-01-19 Thread Andy Dufilie
On Tue, Jan 19, 2016 at 2:39 PM, Alex Harui wrote: > IMO, a base class shouldn't know about any extensions. > I agree, and I don't think we should bend over backwards trying to support this pattern.

Re: ERROR - Circular dependency detected: A -> B -> A

2016-01-19 Thread Alex Harui
I looked into this. Because A is the first file loaded, it must require B in order to load B. B extends A so it must require A otherwise you get a warning from Google Closure Compiler. That's why -remove-circulars won't remove B's require of A. So, unless Google Closure Compiler changes their co

Re: AW: AW: [ApacheCon NA] Whose going and what topics?

2016-01-19 Thread Alex Harui
OK, I finally got a response from a Cordova person. They are interested in the client-side track idea. Once they get approval from their dev list, we should submit talks and do more coordination. I think instead of cross posting to both dev@ lists, maybe we should try the wider dev@community.a.o

Re: [Flex] Map Component

2016-01-19 Thread Deepak MS
Well, I tried earlier approach for 4 days, but it didn't quite work as expected. Entire map needs to be rendered using svg alone or based on long/lat points. Its difficult to merge lat/long based custom regions over svg. But modestmap worked well. Thank you so much for sharing those links. On 15 J

Re: how flexjs read [Embed(source=".png")]

2016-01-19 Thread Josh Tynjala
If we ever want to add support for including images with [Embed] metadata, we can base 64 encode them. Browsers know how to parse images that are encoded this way. - Josh On Jan 19, 2016 7:35 AM, "Alex Harui" wrote: > FlexJS will currently ignore Embeds. We need to actually spit out some > sort

Re: how flexjs read [Embed(source=".png")]

2016-01-19 Thread Alex Harui
FlexJS will currently ignore Embeds. We need to actually spit out some sort of warning/error some day. -Alex

how flexjs read [Embed(source=".png")]

2016-01-19 Thread lizhi
-- View this message in context: http://apache-flex-development.247.n4.nabble.com/how-flexjs-read-Embed-source-png-tp51324.html Sent from the Apache Flex Development mailing list archive at Nabble.com.