[flexcoders] Recommended library to render and manipulate graphs?

2009-06-22 Thread Leo Soto M.
Hello,

I've googled a bit a found different graphs visualization libraries
(the most promising being SpringGraph and RaVis).

Do you have experience using any visualization libraries? And, if so,
which one would you recommend? (or not recommend!)

-- 
Leo Soto M.
http://blog.leosoto.com


[flexcoders] Coverflow for Gumbo?

2009-05-27 Thread Leo Soto M.
I know there are some nice coverflow components for Flex3, but I
wonder if someone has done a version using the new capabilities of
Gumbo.

Regards,
-- 
Leo Soto M.
http://blog.leosoto.com


[flexcoders] Accesing complex structures in result from WebServices

2006-10-04 Thread Leo
Hi

I need to use some already deployed webservices made in RAD (Rational
Application Developer) and published in a WebSphere v6[.1] server. I'm
new in consumig web services in Flex so i referred to the docs and try
to find out how to do that in the right way. The services are defined
with parameters that can be complex structures and may be in-out-inout
and have a return type that in the services i need to consume is a int
type. When i define this web service in flex and i make the call
websphere receive this call with the parameters that i sent correctly
(complex structures included) but when i look for the result in the
WebService.Operation.lastResult field back in Flex i just find the int
return (Number for ActionScript) from the web service but i can't have
the values of the complex structures that are defined inout.

So if some of you have faced this problem before or have some docs or
hints for me it will be very appreciated

Thanks in advance and regards

-- 
Leonardo Moreno Guzmán
http://leo.logtar.com
http://www.flickr.com/photos/leillo/ | http://www.flickr.com/people/leillo/


--
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/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Re: Accesing complex structures in result from WebServices

2006-10-04 Thread Leo
Hi

I solved this problem setting the property resultFormat to e4x and
using the appropiate namespace like said in the docs. But now i have 2
more issues:

1) I can't acces the web service int return value because it's called
return and if i use WebService.Operation.lastResult.return the
compiler throws an error because return is used for other purpouses.

2) I need to pass a parameter that has a property named the same as
the parameter and i'm using action script classes to define the
complex structures. But the compiler doesn't allow me to do that (i.e:
public class Name{ public var Name:String; }

If you can give me some advices will be very helpful

Thanks for your time

On 10/4/06, Leo [EMAIL PROTECTED] wrote:
 Hi

 I need to use some already deployed webservices made in RAD (Rational
 Application Developer) and published in a WebSphere v6[.1] server. I'm
 new in consumig web services in Flex so i referred to the docs and try
 to find out how to do that in the right way. The services are defined
 with parameters that can be complex structures and may be in-out-inout
 and have a return type that in the services i need to consume is a int
 type. When i define this web service in flex and i make the call
 websphere receive this call with the parameters that i sent correctly
 (complex structures included) but when i look for the result in the
 WebService.Operation.lastResult field back in Flex i just find the int
 return (Number for ActionScript) from the web service but i can't have
 the values of the complex structures that are defined inout.

 So if some of you have faced this problem before or have some docs or
 hints for me it will be very appreciated

 Thanks in advance and regards

 --
 Leonardo Moreno Guzmán
 http://leo.logtar.com
 http://www.flickr.com/photos/leillo/ | http://www.flickr.com/people/leillo/



-- 
Leonardo Moreno Guzmán
http://leo.logtar.com
http://www.flickr.com/photos/leillo/ | http://www.flickr.com/people/leillo/


--
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/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Re: Accesing complex structures in result from WebServices

2006-10-04 Thread Leo



Hi Ben and thanks for respondingI already tried the array notation but doesn't work. And for the second issue i'm going to try thatComments?, suggestions?Thanks
On 10/4/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:













  



My best guess for the first issue would be to use array notation or
whatever its called.

WebService.Operation.lastResult[return]

As for the other one, maybe something like this? (Not sure if this
will work... this might not be possible.)

public dynamic class Name
{}
var n:Name = new Name();
n[Name] = Bob;

HTH,
Ben

--- In flexcoders@yahoogroups.com, Leo [EMAIL PROTECTED] wrote:

 Hi
 
 I solved this problem setting the property resultFormat to e4x and
 using the appropiate namespace like said in the docs. But now i have 2
 more issues:
 
 1) I can't acces the web service int return value because it's called
 return and if i use WebService.Operation.lastResult.return the
 compiler throws an error because return is used for other purpouses.
 
 2) I need to pass a parameter that has a property named the same as
 the parameter and i'm using action script classes to define the
 complex structures. But the compiler doesn't allow me to do that (i.e:
 public class Name{ public var Name:String; }
 
 If you can give me some advices will be very helpful
 
 Thanks for your time
 
 On 10/4/06, Leo [EMAIL PROTECTED] wrote:
  Hi
 
  I need to use some already deployed webservices made in RAD (Rational
  Application Developer) and published in a WebSphere v6[.1] server. I'm
  new in consumig web services in Flex so i referred to the docs and try
  to find out how to do that in the right way. The services are defined
  with parameters that can be complex structures and may be in-out-inout
  and have a return type that in the services i need to consume is a int
  type. When i define this web service in flex and i make the call
  websphere receive this call with the parameters that i sent correctly
  (complex structures included) but when i look for the result in the
  WebService.Operation.lastResult field back in Flex i just find the int
  return (Number for ActionScript) from the web service but i can't have
  the values of the complex structures that are defined inout.
 
  So if some of you have faced this problem before or have some docs or
  hints for me it will be very appreciated
 
  Thanks in advance and regards
 
  --
  Leonardo Moreno Guzmán
  http://leo.logtar.com
  http://www.flickr.com/photos/leillo/ |
http://www.flickr.com/people/leillo/
 
 
 
 -- 
 Leonardo Moreno Guzmán
 http://leo.logtar.com
 http://www.flickr.com/photos/leillo/ |
http://www.flickr.com/people/leillo/



  













-- Leonardo Moreno Guzmánhttp://leo.logtar.comhttp://www.flickr.com/photos/leillo/
 | http://www.flickr.com/people/leillo/

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Accesing complex structures in result from WebServices

2006-10-04 Thread Leo



Hi againThe access using array notation worked fine, i was misspelling the word return.thanksOn 10/4/06, Leo 
[EMAIL PROTECTED] wrote:Hi Ben and thanks for respondingI already tried the array notation but doesn't work. And for the second issue i'm going to try that
Comments?, suggestions?Thanks
On 10/4/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:














  



My best guess for the first issue would be to use array notation or
whatever its called.

WebService.Operation.lastResult[return]

As for the other one, maybe something like this? (Not sure if this
will work... this might not be possible.)

public dynamic class Name
{}
var n:Name = new Name();
n[Name] = Bob;

HTH,
Ben

--- In flexcoders@yahoogroups.com, Leo [EMAIL PROTECTED] wrote:

 Hi
 
 I solved this problem setting the property resultFormat to e4x and
 using the appropiate namespace like said in the docs. But now i have 2
 more issues:
 
 1) I can't acces the web service int return value because it's called
 return and if i use WebService.Operation.lastResult.return the
 compiler throws an error because return is used for other purpouses.
 
 2) I need to pass a parameter that has a property named the same as
 the parameter and i'm using action script classes to define the
 complex structures. But the compiler doesn't allow me to do that (i.e:
 public class Name{ public var Name:String; }
 
 If you can give me some advices will be very helpful
 
 Thanks for your time
 
 On 10/4/06, Leo [EMAIL PROTECTED] wrote:
  Hi
 
  I need to use some already deployed webservices made in RAD (Rational
  Application Developer) and published in a WebSphere v6[.1] server. I'm
  new in consumig web services in Flex so i referred to the docs and try
  to find out how to do that in the right way. The services are defined
  with parameters that can be complex structures and may be in-out-inout
  and have a return type that in the services i need to consume is a int
  type. When i define this web service in flex and i make the call
  websphere receive this call with the parameters that i sent correctly
  (complex structures included) but when i look for the result in the
  WebService.Operation.lastResult field back in Flex i just find the int
  return (Number for ActionScript) from the web service but i can't have
  the values of the complex structures that are defined inout.
 
  So if some of you have faced this problem before or have some docs or
  hints for me it will be very appreciated
 
  Thanks in advance and regards
 
  --
  Leonardo Moreno Guzmán
  http://leo.logtar.com
  http://www.flickr.com/photos/leillo/ |
http://www.flickr.com/people/leillo/
 
 
 
 -- 
 Leonardo Moreno Guzmán
 http://leo.logtar.com
 http://www.flickr.com/photos/leillo/ |
http://www.flickr.com/people/leillo/



  













-- Leonardo Moreno Guzmán
http://leo.logtar.comhttp://www.flickr.com/photos/leillo/
 | http://www.flickr.com/people/leillo/

-- Leonardo Moreno Guzmánhttp://leo.logtar.comhttp://www.flickr.com/photos/leillo/
 | http://www.flickr.com/people/leillo/

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] WSDL 2 ActionScript classes?

2006-10-03 Thread Leo
Hi coders

I was wondering if you know a tool that let me create ActionScipt
classes that represent the complex structures defined in a WSDL file.
I've heard about WSDL 2 Java and some other automated tools that let
do that for other languages. I need that because I have several web
services already deployed that I need to use in my flex App and I
don't want to create that classes writing the code.

Sorry if the answer is obviuos or something but i did search google,
adobe and the mailing list and i dind't find a clue.

Regards

-- 
Leonardo Moreno Guzmán
http://leo.logtar.com
http://www.flickr.com/photos/leillo/ | http://www.flickr.com/people/leillo/


--
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/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] itemRenderer question, scoping?

2006-08-12 Thread Leo Wieland










Scoping problem?



In my project directory (mainApp) I made a subdirectory
myComponents (mainApp/myComponents)

In this subdir I put my mxml component artart.mxml

In artart.mxml I create a TileList with a itemRenderer
as follow:



mx:TileList
x=36 y=20 width=160 height=280
id=tlstColors
dataProvider={mx.core.Application.application.dataColors}

 itemRenderer=Colornail
borderStyle=none allowMultipleSelection=true columnWidth=35
rowHeight=60

 
selectedIndex=0/



the Colornail component (Colornail.mxml) is a
component based on VBox.:



?xml
version=1.0 encoding=utf-8?

mx:VBox
xmlns:mx=http://www.adobe.com/2006/mxml width=50
height=60 

horizontalAlign=center 

  verticalGap=4
borderStyle=none

mx:Image id=imgColor width=30
height=30 source={data.image} toolTip={data.naam}/

 mx:Label
text={int(data.id_color)} width=30
fontFamily=Verdana fontSize=8/

/mx:VBox




When I put Colornail.mxml in subdir myComponents I get a compiler error 1172:Definition Colornail could not be
found



But if I put Colornail.mxml in the mainApp directory the
compiler can find the component.



I want all my component in the myComponents subdir, can
anybody explain me what I have to do to let the compiler find the component. 



Leo Wieland






__._,_.___





--
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] Cool Flex Site with Free 30 day trial

2005-11-10 Thread Leo



hi everybody

i'm not from the U.S. but I'd like to see this app runnig. When i try
to register it asks for a zip code and i don't know what to put there.
Someone can give me a clue on this???

Thanks in advanceOn 11/10/05, Matt Chotin [EMAIL PROTECTED] wrote:

















My hotmail with an underscore went through
no prob…











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of JesterXL
Sent: Thursday, November 10, 2005
10:23 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Cool
Flex Site with Free 30 day trial







I gave up; I gave them [EMAIL PROTECTED]
,
and [EMAIL PROTECTED]; none of which
ever received a confirmation. Shouldn't be that hard to use an app.











- Original Message - 




From: 
Robert
Thompson 





To: 
flexcoders@yahoogroups.com






Sent: Thursday, November
10, 2005 12:55 PM





Subject: RE: [flexcoders]
Cool Flex Site with Free 30 day trial













How is this so well organized when there does not appear to be an
information page?











It's only a sign-up page and plus there's a Terms of Service on it
that's legally binding (which is not a problem but is kind of odd
when there's no information on the page other than requesting your e-mail,
company, address, etc.).











Plus, IJ'm 

Philippe Maegerman [EMAIL PROTECTED]
 wrote:







Nicely done and
well organized .. 







Philippe
Maegerman









From:
 flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of sir_janksalot
Sent: samedi 5 novembre 2005 1:25
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cool Flex
Site with Free 30 day trial

There is a new company that
has been making a corporate training
solution and doing some pretty cool things with it
in flex... (from
what I understand they are doing some video
branching which can
probably lead to choose your own
adventure type training) 

they offer a totally free 30 day trial at:

https://www1.g-t-t.com/ecom/processPromotion.cfml


could be exciting for those in the business world

sj













SPONSORED
LINKS 




 
  

  
  
Web
  site design development 
  
  
  
Computer
  software development 
  
  
  
Software
  design and development 
  
 
 
  
Macromedia
  flex 
  
  
  
Software
  development best practice 
  
  
  
  
 




--
**STATEMENT OF CONFIDENTIALITY** 

This
e-mail and any attached files are confidential and intended solely for the use
of the individual to whom it is addressed. If you have received this email in
error please send it back to the person that sent it to you. Any views or
opinions presented are solely those of author and do not necessarily represent
those the Emakina Company. Unauthorized publication, use, dissemination,
forwarding, printing or copying of this email and its associated attachments is
strictly prohibited.

We
also inform you that we have checked that this message does not contain any
virus but we decline any responsability in case of any damage caused by an a
non detected virus.
--










Yahoo!
FareChase - Search multiple travel sites in one click. 







--
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.




  










-- Leonardo Moreno Guzmánhttp://leo.logtar.com






--
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] Autocomplete text filed

2005-03-03 Thread Leo
hi

you can store your data in a array and add a text field to a canvas,
when your texfield gains focus (or whatever) you can with absolute
position show a list underneath the textfield with the items in the
array that match your criteria.

I´m not sure if this can be achieved without the canvas because of the
absolute posisioning, but if you dont want to do all this stuff you
only add a editable combobox and add and remove the items that match
te criteria and when the combobox gains focus you can show the list.



On Thu, 3 Mar 2005 10:11:22 -0600, David Solis [EMAIL PROTECTED] wrote:
 Hi list,
  
 For my current project I need an autocomplete text field similar to
 google's suggestion.
 If anybody has an idea about how to implement this please drop a line.
  
 TIA
  
 Regards
  
 D.
  
  
 Yahoo! Groups Sponsor 
  
 ADVERTISEMENT
  
  
 
 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 the Yahoo! Terms of Service. 


-- 
Leonardo Moreno Guzmán
http://leo.logtar.com




Cairngorm or ARP

2005-03-02 Thread Leo
Hi ellite coders

In a past thread someone posted a message with a link to the ARP
platform for Flex.

I'd like to know if somebody has worked with this platform and if so,
what are the advantages and/or disadvantages.

My question is because i only knew Cairngorm framework and i think
it's great, but always is better to know other technoligies

regards
-- 
Leonardo Moreno Guzmán
http://leo.logtar.com