[flexcoders] Yahoo maps api for flex 2

2007-10-30 Thread Nate Pearson
I thought that Yahoo made a new api for flex 2...maybe I dreamed it up
because I can't find it on the net!

Can anyone link me?

Thanks,

Nate



Re: [flexcoders] Yahoo maps api for flex 2

2007-10-30 Thread John Robinson
As far as I know they haven't. They're AS2 map stuff has a version  
that works in Flex, but it uses the old AVM1, and either a js or lc  
bridge between that and your AS3 flex stuff.

John


On Oct 30, 2007, at 10:20 AM, Nate Pearson wrote:

 I thought that Yahoo made a new api for flex 2...maybe I dreamed it up
 because I can't find it on the net!

 Can anyone link me?

 Thanks,

 Nate



 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders% 
 40yahoogroups.com
 Yahoo! Groups Links




John Robinson - Flash/Flex Developer at large
Blog: http://jrobinsonmedia.wordpress.com




RE: [flexcoders] Yahoo! Maps API

2006-03-26 Thread David Mendels
Hi,

I can add that we expect a Flash Player 8.5 (AS3/Flex2) revision so this
will be possible in the relatively near term.

-David 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers
 Sent: Sunday, March 26, 2006 1:16 AM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Yahoo! Maps API
 
 That is correct.
 
 mike chambers
 
 [EMAIL PROTECTED]
 
 Brendan Meutzner wrote:
  Hey Matthew,
  
  I'm going to go out on a limb here and suggest that the 
 current swc is 
  only compatible with 1.5.  When I tried importing the it into a 2.0 
  project, it threw errors.
  
  Someone correct me if I'm wrong.
  
  Brendan
  
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
  
 
 
 
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Yahoo! Maps API

2006-03-26 Thread Matthew Simpson



Thanks for all the assistance folks!MatthewDavid Mendels [EMAIL PROTECTED] wrote:Hi,  I can add that we expect a Flash Player 8.5 (AS3/Flex2) revision so this will be possible in the relatively near term.  -David-Original Message-  From: flexcoders@yahoogroups.com   [mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers  Sent: Sunday, March 26, 2006 1:16 AM  To: flexcoders@yahoogroups.com  Subject: Re: [flexcoders] Yahoo! Maps APIThat is correct.mike chambers[EMAIL PROTECTED]Brendan Meutzner wrote:   Hey Matthew,  I'm going to go out on a limb here and suggest that the   current swc isonly
 compatible with 1.5. When I tried importing the it into a 2.0project, it threw errors.  Someone correct me if I'm wrong.  Brendan --  Flexcoders Mailing List  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt  Search Archives:   http://www.mail-archive.com/flexcoders%40yahoogroups.com  Yahoo! Groups Links 
		New Yahoo! Messenger with Voice. Call regular phones from your PC for low, low rates.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Yahoo! Maps API

2006-03-25 Thread lhs_pioneers_86
Hello All,

I'm trying to the Yahoo Maps API sample application up and running but
all I get is an empty pane and two error messages:

The error messages are identical:

Type annotation is not a compile time constant:YahooMap

Here's the code:

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml;
xmlns:yahoo=com.yahoo.maps.api.flex.* xmlns:local=* xmlns=*
layout=absolute

mx:Script
![CDATA[
import com.yahoo.maps.markers.CustomPOIMarker;
function onInitialize(eventObject) {
 var markerArgs = {
 index:M, title:Macromedia Inc., description:Macromedia
Headquarters, markerColor:0xCC, strokeColor:0xDFDFDF
 };
 myMap.addMarkerByAddress(CustomPOIMarker, 601 Townsend St, San
Francisco, CA 94103, markerArgs);
}
]]
/mx:Script

mx:Panel x=10 y=10 width=692 height=569 layout=absolute

yahoo:YahooMap id=myMap width=950 height=400 
zoomLevel=3
latitude=37.77159 longitude=-122.401714
initialize=onInitialize(event); /

/mx:Panel
/mx:Application


Any suggestions on what I'm doing wrong?

TIA 

Matthew





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Yahoo! Maps API

2006-03-25 Thread stacey
didn't see any code posted,however that error suggests that it can't find
the class. clean the project and try again.




 Hello All,

 I'm trying to the Yahoo Maps API sample application up and running but
 all I get is an empty pane and two error messages:

 The error messages are identical:

 Type annotation is not a compile time constant:YahooMap

 Here's the code:

 lt;?xml version=quot;1.0quot; encoding=quot;utf-8quot;?gt;
 lt;mx:Application
 xmlns:mx=quot;http://www.macromedia.com/2005/mxmlquot;
 xmlns:yahoo=quot;com.yahoo.maps.api.flex.*quot;
 xmlns:local=quot;*quot; xmlns=quot;*quot;
 layout=quot;absolutequot;gt;

 lt;mx:Scriptgt;
 lt;![CDATA[
 import com.yahoo.maps.markers.CustomPOIMarker;
 function onInitialize(eventObject) {
 nbsp;nbsp;nbsp;nbsp; var markerArgs = {
 nbsp;nbsp;nbsp;nbsp; index:quot;Mquot;, title:quot;Macromedia
 Inc.quot;, description:quot;Macromedia Headquartersquot;,
 markerColor:0xCC, strokeColor:0xDFDFDF
 nbsp;nbsp;nbsp;nbsp; };
 nbsp;nbsp;nbsp;nbsp; myMap.addMarkerByAddress(CustomPOIMarker,
 quot;601 Townsend St, San Francisco, CA 94103quot;, markerArgs);
 }
 ]]gt;
 lt;/mx:Scriptgt;

 nbsp;nbsp;nbsp;nbsp;nbsp; lt;mx:Panel x=quot;10quot;
 y=quot;10quot; width=quot;692quot; height=quot;569quot;
 layout=quot;absolutequot;gt; nbsp;nbsp;nbsp;nbsp;nbsp;
 nbsp;nbsp;nbsp;nbsp;nbsp; nbsp;nbsp;nbsp;nbsp;nbsp;
 lt;yahoo:YahooMap id=quot;myMapquot; width=quot;950quot;
 height=quot;400quot; zoomLevel=quot;3quot;
 latitude=quot;37.77159quot; longitude=quot;-122.401714quot;
 initialize=quot;onInitialize(event);quot; /gt;
 nbsp;nbsp;nbsp;nbsp;nbsp;
 nbsp;nbsp;nbsp;nbsp;nbsp; lt;/mx:Panelgt;
 lt;/mx:Applicationgt;


 Any suggestions on what I'm doing wrong?

 TIA

 Matthew









 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com












   YAHOO! GROUPS LINKS



   nbsp;Visit your group flexcoders on the web.nbsp;
   nbsp;To unsubscribe from this group, send an email
 to:nbsp;[EMAIL PROTECTED]nbsp; nbsp;Your use
 of Yahoo! Groups is subject to the Yahoo! Terms of Service.









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Yahoo! Maps API

2006-03-25 Thread Brendan Meutzner



Hey Matthew,I'm going to go out on a limb here and suggest that the current swc is only compatible with 1.5. When I tried importing the it into a 2.0 project, it threw errors.Someone correct me if I'm wrong.
BrendanOn 3/25/06, lhs_pioneers_86 [EMAIL PROTECTED] wrote:
Hello All,I'm trying to the Yahoo Maps API sample application up and running butall I get is an empty pane and two error messages:The error messages are identical:Type annotation is not a compile time constant:YahooMap
Here's the code:?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml
xmlns:yahoo=com.yahoo.maps.api.flex.* xmlns:local=* xmlns=*layout=absolutemx:Script![CDATA[import com.yahoo.maps.markers.CustomPOIMarker
;function onInitialize(eventObject) { var markerArgs = { index:M, title:Macromedia Inc., description:MacromediaHeadquarters, markerColor:0xCC, strokeColor:0xDFDFDF
 }; myMap.addMarkerByAddress(CustomPOIMarker, 601 Townsend St, SanFrancisco, CA 94103, markerArgs);}]]/mx:Scriptmx:Panel x=10 y=10 width=692 height=569 layout=absolute
yahoo:YahooMap id=myMap width=950 height=400 zoomLevel=3latitude=37.77159 longitude=-122.401714initialize=onInitialize(event); /
/mx:Panel/mx:ApplicationAny suggestions on what I'm doing wrong?TIAMatthew--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
* To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]* Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Yahoo! Maps API

2006-03-25 Thread Mike Chambers
That is correct.

mike chambers

[EMAIL PROTECTED]

Brendan Meutzner wrote:
 Hey Matthew,
 
 I'm going to go out on a limb here and suggest that the current swc is 
 only compatible with 1.5.  When I tried importing the it into a 2.0 
 project, it threw errors.
 
 Someone correct me if I'm wrong.
 
 Brendan
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/