[flexcoders] Declaring webservices??

2006-07-17 Thread Ken Bromberger


smime.p7m
Description: S/MIME encrypted message


[flexcoders] Bind label to class attributes

2006-07-17 Thread Jonas Windey
Hi, I use the following code:

[Bindable]
public var currentUser:FtpUser;

In my titlewindow, I have:

title=User settings ({currentUser.name})

This is working perfect, I fill the currentUser from inside the caller of
the titlewindow, and it's setting the correct result.
However, I get a warning that Data binding will not be able to detect
assignments to name.
Any way to get rid of that? It's not that there's an error, it's just
annoying :-)

Thanks,
Jonas




 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Re: Spring Enable Flex

2006-07-17 Thread Tom Chiverton
On Friday 14 July 2006 18:32, Allen Riddle wrote:
 Mule, and Flex DS all have their own config formats, however, XFire and
 Mule, are Spring enabled, so you can configure them with the
 dependencies using Spring, and configuration at that point becomes much
 much easier.

I don't think there is enough dependencies betwen things in a typical FDS / 
services-config.xml to make it worthwhile.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] Re: Dumb Newbie Question - Underlined Hyperlinks

2006-07-17 Thread olivierdejonge
... no flippin way to specify the links in a TextArea to be blue.

I have the same problem with external stylesheets. In Flex 1.5 there
was a way to attach a:hover, a:link style from an external stylesheet
to a TextField (this is not a TextArea!) with:

var textField:TextField;
var styles = new TextField.StyleSheet();
styles.load('myStyles.css');
...
public function onLoad(success):Void{
  if(success){
textField.htmlText = hello a href='helloWorld.html'world/a;
textField.styleSheet = styles;
  }
}

But now in 2.0 I can't find a good solution too. 'StyleSheet' has
become a 'stand-alone' class. The 'load()' function is gone, instead
there is a function 'parseCSS()'. I can't get it to work properly:

private var cssSource:String =
'myTest{color:#ff;}a:hover{color:#00FF00;text-decoration:underline;}body{fontFamily:ThesisBolPla;size:11;color:#FF;}.heading{fontWeight:bold;color:#FF3300;}';

private var labelText:String = bodyspan class='heading'Hello
world/spanbra href='javascript:void'and welcome/a to the show.
  brThis is gonna be the myTestarkText/myTest component/body;

var style:StyleSheet = new StyleSheet();
style.parseCSS(cssSource);
label = new TextField();
label.width = 200;
label.autoSize = TextFieldAutoSize.LEFT;
label.embedFonts = true;
label.background = true;
label.border = true;
label.multiline = true;
label.styleSheet = style;
...
label.htmlText = labelText;

What works fine on TextFields is:

var style:StyleSheet = new StyleSheet();
var aHover:Object = new Object();
aHover.color=#FFCC33;
aHover.textDecoration = underline;
style.setStyle(a:hover, aHover);
label = new TextField();
label.width = 200;
label.background = true;
label.multiline = true;
label.styleSheet = style;

But you want to load a css externally and you want to use a TextArea.
I have asked this also to Matt Horn from Adobe, but he hadn't the
slightest idea how to solve this...






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





[flexcoders] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Sergey Kovalyov
Hi All!

In Flex 1.5 there was popUp boolean property in UIObject class. It was
set to true if UIObject instance is popup and false otherwise. How to
examine this now?

Sergey.


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] RPC Vs. FDS and FDS Express

2006-07-17 Thread Tom Chiverton
On Sunday 16 July 2006 10:03, David wrote:
 After reading through a few messages on this site i noticed this
 comment in one of the posts: 'If your server-side data requirements
 are intense, you might want FDS, Flex Data Services.  For normal data
 access, the RPC functionality is sufficient, and that is included with
 the framework (free)'. But after looking into LiveDocs i get:
 To use RemoteObject components, Flex Data Services or Macromedia
 ColdFusion MX 7.0.2 with the Remoting Update is required. But then it
 goes on to say that in order to use Remoting, FDS must be installed
 and you have to set up Destinations. So which is it, and how do you do
 it? If i just have basic CRUD Functionality, can i get away without
 FDS on my hosted environment, and use the SDK to interact with a
 backend Database via CF?

Short answer: Yes.
To use RemoteObject, all you need is a CF host with the CF7.0.2 updater 
applied - the FDS server is not required.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
In Flex 2 this property is called isPopUp and is defined in
mx.core.UIComponent 

Dirk. 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov
 Sent: Monday, July 17, 2006 10:33 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How to detect whether DisplayObject is 
 popup or not?
 
 Hi All!
 
 In Flex 1.5 there was popUp boolean property in UIObject 
 class. It was set to true if UIObject instance is popup and 
 false otherwise. How to examine this now?
 
 Sergey.
 
 
  Yahoo! Groups Sponsor 
 ~-- Check out the new improvements in 
 Yahoo! Groups email.
 http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 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] Bind label to class attributes

2006-07-17 Thread Dirk Eismann
You'll have to either make the name property of your FtpUser class
[Bindable] as well or set [Bindable] on the FtpUser class level.

Dirk.

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Jonas Windey
 Sent: Monday, July 17, 2006 10:07 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Bind label to class attributes
 
 Hi, I use the following code:
 
 [Bindable]
 public var currentUser:FtpUser;
 
 In my titlewindow, I have:
 
 title=User settings ({currentUser.name})
 
 This is working perfect, I fill the currentUser from inside 
 the caller of the titlewindow, and it's setting the correct result.
 However, I get a warning that Data binding will not be able 
 to detect assignments to name.
 Any way to get rid of that? It's not that there's an error, 
 it's just annoying :-)
 
 Thanks,
 Jonas
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Something is new at Yahoo! Groups.  
 Check out the enhanced email design.
 http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 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
 
 
 
  
 
 
 


 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Declaring webservices??

2006-07-17 Thread Dirk Eismann





It's 
not out-of-the-box in Flex 2 but you can easily write a singleton-alike class 
that stores the references to your WebService instances and access it from 
anywhere in your application. The Cairngorm framework uses this approach for its 
ServiceLocator class.

Dirk.

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ken 
  BrombergerSent: Monday, July 17, 2006 8:39 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Declaring 
  webservices??
  
  
  Hi 
  All,
  
  I seem to recall during the betas 
  seeing something where you can code your web services together and then 
  reference them at different points in the application. Kind of like a global 
  config for them so they can easily be reused. Though I cant seem to find 
  anything on this now, is this possible??
  
  Thanks - 
  Ken
  
  
  
  
__._,_.___





--
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] Re: Faces of Flex

2006-07-17 Thread Tom Chiverton
On Saturday 15 July 2006 06:33, Tariq Ahmed wrote:
 On the lighter side of things...
 http://www.cflex.net/FacesOfFlex/

That's a funny noise.
Oh - it's my Apache banging into it's hard resource limit :-)

So, sorry to everyone trying to read my blog - have to hope it calms down 
during today, failing that I'll up the limits when I get home tonight.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] OT: average cost for an SDK?

2006-07-17 Thread Tom Chiverton
On Saturday 15 July 2006 02:09, Paul Andrews wrote:
 What's the point 

Well, yeah :-)
Generally the more niche a project, the more expensive.
Intel will sell you their own C compiler, for instance, for silly money, where 
as Flex is free :-)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.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

* 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] Re: RPC Vs. FDS and FDS Express

2006-07-17 Thread David
Nick, 
Thanks for your comments! I was thinking the same thing, but as of
this time, I only have a handful of clients that all like having their
own hosting plans. Also, if what you say is true, then you really do
have to have FDS installed in order to us the Flash Remoting 
functionality in conjunction with flex. Its pretty annoying that they
just don't tell you install details in any of these tutorials. Anyways,
Thanks again!
David


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

 What I ended up doing is just anteing up and getting a dedicated server.
 Enterhost has a plan that includes a license of Coldfusion for like
$200 a
 month. For me, it's been well worth it, being able to setup my own
staging
 area, public area, being able to update software as I need, not as
the host
 dictates. I was able to install FDS express with no issues, as well
as Flash
 Media Server 2, and update coldfusion to 7.0.2 for flex integration.
It just
 makes my life so much easier, I can never go back to a shared hosting
 solution.









 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] How To Use DataServices In Flex Builder???

2006-07-17 Thread Mr.Unlimited



Hi FrensMines a basic question n i believe anybody can help me out..  i wanna know how to use DataServices in Flexbuilder.. is there any configuration settings to be made or somethin??i have installed DS n then Builder too.. but i am not able to work with data services in my builder.  Please give me a solution asap as m doin a small project in Flex.Thanks  Kris 
		Do you Yahoo!? Next-gen email? Have it all with the  all-new Yahoo! Mail Beta.
__._,_.___





--
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] Dashboard Sample: problems

2006-07-17 Thread JesterXL





If you go look at mx.core.SimpleApplication, you'll 
see it makes a 2 frame movie. Init code on frame 1, the app stuff on frame 
2. There are actually potentials to make a 3 frame movie (Roger described 
it in the past as to that's where it shoves RSL's I think).

It's sort of the same setup, frame wise, that Flex 
1.5 used. The problem is, I don't know how to modify this class and if 
you've read it, it's seriously boilerplate level stuff so not sure where to 
begin.

- Original Message - 
From: Ralf 
Bokelberg 
To: flexcoders@yahoogroups.com 
Sent: Saturday, July 15, 2006 5:38 PM
Subject: Re: [flexcoders] Dashboard Sample: problems
I ancient times (read flash) we had problems like this, when we 
tried to jump to a frame, which wasn't loaded yet. Any chance, flex does 
something like this internally, gotoFrame that is? Cheers,Ralf. 

On 7/15/06, Matt 
Chotin [EMAIL PROTECTED] 
wrote:

  
  
  
  I get the same 
  scenario as Paul, dashboard is fine for me but Jesse's app on Firefox failed. 
  Also loading Jesse's SWF directly using the standalone player works. 
  But when I viewed source in IE some of the data didn't come through 
  there either. I took Jesse's source and downloaded it to run it locally 
  and that worked fine for me in both browsers. 
  
  I don't get the 
  preloader at 20% though, in the past that has often meant that the app was 
  compiled for the wrong Player (maybe it's a beta project or 
  something?).
  
  Matt
  
  
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul AndrewsSent: Friday, July 14, 2006 1:02 
  PMTo: flexcoders@yahoogroups.com 
  Subject: Re: 
  [flexcoders] Dashboard Sample: problems
  
  
  
  
  
  
  
  No problems here with the dashboard in ie or firefox 
  with 9,0,16,0.Jesse's app gave me just a blue screen on firefox, but 
  after a few refreshes on ie, no problems.Paul- 
  Original Message - From: "JesterXL" [EMAIL PROTECTED] To: flexcoders@yahoogroups.comSent: Friday, July 14, 
  2006 8:15 PMSubject: Re: [flexcoders] Dashboard Sample: 
  problemsI have the exact same problem with 9.0.16.0 here with my 
  app: http://dev.jessewarden.com/flex/webserviceexample/ 
   1st time works. Refresh. 2nd time, stops 
  at 20%. Refresh. 3rd time, doesn't even show 
  preloader. Same exact behavior in IE and 
  Firefox. - Original Message -  From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, July 
  14, 2006 12:22 PM Subject: [flexcoders] Dashboard Sample: 
  problems I was messing around with the dashboard 
  sample on the adobe site http://www.adobe.com/devnet/flex/samples/dashboard/  
  And everything was going fine. Ever since upgrading FP9 to 9.0.16.0 though I can't get 
  the application to successfully load. I redownloaded the source just 
  in case I inadvertently changed something - but same affect. I get the 
  pretty blue background and a status window that freezes about 20% 
  through the load. Any ideas? 
  -- 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 
  
  
  -- Ralf Bokelberg [EMAIL PROTECTED]Flex 
 Flash Consultant based in Cologne/Germany  
__._,_.___





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



  






__,_._,___



[flexcoders] FDS question

2006-07-17 Thread jeremiah johnson
I read about FDS dozens of times per day on this list, but I can't quite 
work out exactly what it is.  It seems clear that for real-time or 
highly dynamic data, FDS reigns supreme, but why?

What makes FDS better than dynamically generated XML, for example?

CLEARLY I'm missing something about FDS, but what?  It has always seemed 
a bit like glue to me, to fasten the presentation to the data.  There 
are many ways to glue those things together, so what makes FDS so awesome?

Thanks!

-- 
jeremiah();


 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Button mouseUpOutside?

2006-07-17 Thread Jonas Windey










Hi, 



I need to trigger a function when you release the mouse
button outside the button (e.g you click on it, drag outside the button, and
release the mouse)

Any way to catch that?



Jonas




__._,_.___





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



  






__,_._,___





Re: [flexcoders] Re: need solution/best practice regarding VO's

2006-07-17 Thread Tom Chiverton
On Friday 14 July 2006 21:40, Tim Hoff wrote:
 a labelFunction would be sufficient
 in this case.

Probably, yes.
I would be tempted to make it an item renderer, just so that in the future if 
it becomes a flag graphic or something it's less work to do (and code to 
touch).

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] Re: Cell Renderer and component life cycle

2006-07-17 Thread Tim Hoff
Hi Matti,

Every cell uses a seperate instance of the itemRenderer.  However, 
to improve performance, some classes recycle the itemRenderer's 
DisplayObject.  As you traverse the class hierachy, some base 
classes also reference the itemRenderer for various reasons.  When 
you trace it behind the scene, it may look redundant.  But the 
references are necessary to build the DisplayList from the bottom-up.

-TH

--- In flexcoders@yahoogroups.com, Matti Bar-Zeev [EMAIL PROTECTED] 
wrote:

 Hi List,
 
 I'm dealing with a couple of lists, that all have the same cell 
renderer
 as their cells.
 
 When I trace the initializing process of the cell (lets say: when
 setValue() is invoked) I see that it happens a couple of times, 
back
 and forth through all the cell until it's all done.
 
 Is that a normal behavior?
 
 Thnx for your help. 
 
 
 
_
_
 This email has been scanned by the MessageLabs Email Security 
System.
 For more information please visit http://www.messagelabs.com/email 
 
_
_







 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Sergey Kovalyov
Okay, thank you. But still. Every DisplayObject, not only UIComponent,
could be popUp. How to deal with them? I found that popUpChildren :
IChildList exists in SystemManager class description. But how to get
correct instance of that SystemManager and whether it's what I'm
looking for?

On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote:
 In Flex 2 this property is called isPopUp and is defined in
 mx.core.UIComponent

 Dirk.


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




[flexcoders] No way to removeItem()

2006-07-17 Thread Sergey Kovalyov
Hi All!

I found that there is no method removeItem() in ArrayCollection class.
You need to call
yourArrayCollection.removeItemAt(yourArrayCollection.getItemIndex(item))
each time you want just to remove item. I wonder why? Adobe even
created class ArrayList in FlexUnit utils package with such method,
but nothing similar in the main framework.

Sergey.


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




[flexcoders] Re: Cell Renderer and component life cycle

2006-07-17 Thread Tim Hoff
Can't confirm with 1.5, but it's sensible to think that it follows a 
similar approach.  Since every cell is a unique object, an instance 
of the itemRenderer is used to create the DisplyObject.  I'm not 
sure exactly what you are asking.  When the individual cell has 
finished rendering?  Anything to do with editing?  Again, I won't be 
much help with the details of 1.5.

-TH

--- In flexcoders@yahoogroups.com, Matti Bar-Zeev [EMAIL PROTECTED] 
wrote:

 Ok, thnx. I figured it was something of this sort.
 Forgot to mention that I'm using flex 1.5 :) but still...
 Is there any method that is invoked only once when the cycle of 
the cell
 renderer is done?
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Tim Hoff
 Sent: Monday, July 17, 2006 1:09 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Cell Renderer and component life cycle
 
 Hi Matti,
 
 Every cell uses a seperate instance of the itemRenderer.  However,
 to improve performance, some classes recycle the itemRenderer's
 DisplayObject.  As you traverse the class hierachy, some base
 classes also reference the itemRenderer for various reasons.  When
 you trace it behind the scene, it may look redundant.  But the
 references are necessary to build the DisplayList from the bottom-
up.
 
 -TH
 
 --- In flexcoders@yahoogroups.com, Matti Bar-Zeev mbarzeev@
 wrote:
 
  Hi List,
 
  I'm dealing with a couple of lists, that all have the same cell
 renderer
  as their cells.
 
  When I trace the initializing process of the cell (lets say: when
  setValue() is invoked) I see that it happens a couple of times,
 back
  and forth through all the cell until it's all done.
 
  Is that a normal behavior?
 
  Thnx for your help.
 
 
 
 
_
 _
  This email has been scanned by the MessageLabs Email Security
 System.
  For more information please visit 
http://www.messagelabs.com/email
 
 
_
 _
 
 
 
 
 
 
 
 
 --
 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
 
 
 
 
 
 
 
 
_
_
 This email has been scanned by the MessageLabs Email Security 
System.
 For more information please visit http://www.messagelabs.com/email 
 
_
_








 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread olivierdejonge


How do I connect an external stylesheet to a textfield so the htmlText
gets the right styles?

In Flex 1.5 that was easy:

var styles:TextField.StyleSheet = new TextField.StyleSheet();
styles.load('myStyles.css');
...
function onLoad(ok){
if(ok){
myText.htmlText = hello a href=somelink.htmlworld/a
myText.styleSheet = styles
}
}


But how to do this in Flex 2.0, when function 'load()' doesn't exist
anymore and parseCSS not realy seems tow work with a:hover style etc?

In the 2.0 example I have an Application...

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
xmlns:myText=* layout=absolute
mx:Style source=main.css /
myText:TextFieldExample /
/mx:Application

...that loads an external stylesheet main.css,...

body {
fontFamily : ThesisBolPla;
leading : -3;
}
.heading {
fontWeight :bold;
color: #FF3300;
}
a {
color:#f0037f;
}
a:link{
color:#f0037f;
text-decoration:underline;
}
a:hover{
color:#f0037f;
}
a:active{
color:#cc;
}


...and creates the an instance of TextFieldExample:


package {
import mx.core.UIComponent;
import flash.text.TextField;


public class TextFieldExample extends UIComponent {


private var label:TextField;
private var labelText:String = bodyspan
class='heading'Hello world/spanbra href='javascript:void'and
welcome/a to the show. /body;

public function TextFieldExample() {
configureLabel();
setLabel(labelText);
}

public function setLabel(str:String):void {

label.htmlText = str;
}

private function configureLabel():void {

label = new TextField();
label.width = 200;
label.embedFonts = true;
label.background = true;
label.multiline = true;
label.styleSheet = HOW TO CONNECT TO THE CSS?;

addChild(label);
}
}
}

How do I connect the external stylesheet to the textfield so the
htmlText gets the right style?






 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Ralf Bokelberg
Isn't it, that popups are not children of application? Maybe you can
check this?
Cheers,
Ralf.

On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote:
 I see what you mean.

 Unless your application has been loaded into another application then
 Application.application.systemManager should give you the correct
 SystemManager instance. By checking the SystemManager's popUpChildren
 list you should be able to find all popups.

 Dirk.

  -Original Message-
  From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov
  Sent: Monday, July 17, 2006 12:51 PM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] How to detect whether DisplayObject
  is popup or not?
 
  Okay, thank you. But still. Every DisplayObject, not only
  UIComponent, could be popUp. How to deal with them? I found
  that popUpChildren :
  IChildList exists in SystemManager class description. But how
  to get correct instance of that SystemManager and whether
  it's what I'm looking for?
 
  On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote:
   In Flex 2 this property is called isPopUp and is defined in
   mx.core.UIComponent
  
   Dirk.
 
 
  --
  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










-- 
Ralf Bokelberg [EMAIL PROTECTED]
Flex  Flash Consultant based in Cologne/Germany


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] How to detect whether DisplayObject is popup or not?

2006-07-17 Thread Dirk Eismann
Yes, that's true. But e.g. ToolTips also aren't children of the
application but live in a different IChildList of the SystemManager :)

Dirk.

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg
 Sent: Monday, July 17, 2006 2:06 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] How to detect whether DisplayObject 
 is popup or not?
 
 Isn't it, that popups are not children of application? Maybe 
 you can check this?
 Cheers,
 Ralf.
 
 On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote:
  I see what you mean.
 
  Unless your application has been loaded into another 
 application then 
  Application.application.systemManager should give you the correct 
  SystemManager instance. By checking the SystemManager's 
 popUpChildren 
  list you should be able to find all popups.
 
  Dirk.
 
   -Original Message-
   From: flexcoders@yahoogroups.com
   [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov
   Sent: Monday, July 17, 2006 12:51 PM
   To: flexcoders@yahoogroups.com
   Subject: Re: [flexcoders] How to detect whether DisplayObject is 
   popup or not?
  
   Okay, thank you. But still. Every DisplayObject, not only 
   UIComponent, could be popUp. How to deal with them? I found that 
   popUpChildren :
   IChildList exists in SystemManager class description. But 
 how to get 
   correct instance of that SystemManager and whether it's what I'm 
   looking for?
  
   On 7/17/06, Dirk Eismann [EMAIL PROTECTED] wrote:
In Flex 2 this property is called isPopUp and is defined in 
mx.core.UIComponent
   
Dirk.
  
  
   --
   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
 
 
 
 
 
 
 
 
 
 
 --
 Ralf Bokelberg [EMAIL PROTECTED] Flex  Flash 
 Consultant based in Cologne/Germany
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 Check out the new improvements in Yahoo! Groups email.
 http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 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
 
 
 
  
 
 
 


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] DateChooser Scrool Events

2006-07-17 Thread grant.straker
I'm trying to handle a DateChooser scroll event to run function when
the month is changed in a datechooser and Im not having too much luck.

If this works for a change event

change  =filterByDay(DateChooser(event.target).selectedDate); 

What do I pass for a scroll event? and what type does my event handler
listen for - DateChooserEvent?

Couldn't find any examples and my action script is fairly basic.

Cheers

Grant






 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] SWFLoader Issues

2006-07-17 Thread milan kosir



Thank you for example. I have another question.I'd like to change some properties on loaded swf when it is loaded. I can do it manualy, once it is loaded. But, is it possible to access host application functions/variables from loaded swf? For example in creationComplete event ? Any help appretiated.
MilanOn 7/12/06, Hilary Bridel [EMAIL PROTECTED] wrote:













  



Hi,
I have an example on my site with downloadable code.
http://www.bridel.org/

Hilary

--
On 7/12/06, flexnewbie06 
[EMAIL PROTECTED] wrote:
Does anyone have any experience using SWFLoader
 to load SWF in FlexAPP?Specifically, maniputlating the SWF.
Thanks. Yahoo! Groups Sponsor ~--Great things are happening at Yahoo! Groups.See the new email design.

http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM~---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/
-- Hilary-- 

  















__._,_.___





--
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] DateChooser Scrool Events

2006-07-17 Thread Stacey Mulcahy












 mx:DateChooser
scroll=getItems();/













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of grant.straker
Sent: Monday, July 17, 2006 5:52
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] DateChooser
Scrool Events











I'm trying to handle a DateChooser scroll event to run
function when
the month is changed in a datechooser and Im not having too much luck.

If this works for a change event

change =filterByDay(DateChooser(event.target).selectedDate);


What do I pass for a scroll event? and what type does my event handler
listen for - DateChooserEvent?

Couldn't find any examples and my action script is fairly basic.

Cheers

Grant






__._,_.___





--
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] Urgent! Problem using ArrayUtil.toArray for a http result ( Flex 2 SDK release)

2006-07-17 Thread jmorpher03
I used to convert the result of a httpservice request , using the 
ArrayUtil.toArray() in Flex 2 Beta 3 and assign it to an 
ArrayCollection ( as a source to a ComboBox), it used to work, but now 
in the latest release version,  its just giving an Object with comma 
separated values. What could be wrong ?

Here is the syntax I am using :

acUserStatus.source = mx.utils.ArrayUtil.toArray
(result.data.row.statuses); 
acClients.source = mx.utils.ArrayUtil.toArray
(result.data.row.clients);

Please help me with this issue. Have they changed the way results are 
returned in the httpservice ?






 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Re: Urgent! Problem using ArrayUtil.toArray for a http result ( Flex 2 SDK release)

2006-07-17 Thread Tim Hoff
Hi,

Since it's urgent, add: makeObjectsBindable=false, to the 
HTTPService tag.

-TH

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

 I used to convert the result of a httpservice request , using the 
 ArrayUtil.toArray() in Flex 2 Beta 3 and assign it to an 
 ArrayCollection ( as a source to a ComboBox), it used to work, but 
now 
 in the latest release version,  its just giving an Object with 
comma 
 separated values. What could be wrong ?
 
 Here is the syntax I am using :
 
 acUserStatus.source = mx.utils.ArrayUtil.toArray
 (result.data.row.statuses);   
   acClients.source = mx.utils.ArrayUtil.toArray
 (result.data.row.clients);
 
 Please help me with this issue. Have they changed the way results 
are 
 returned in the httpservice ?








--
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] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread Tom Chiverton
On Monday 17 July 2006 13:02, olivierdejonge wrote:
 How do I connect an external stylesheet to a textfield so the htmlText
 gets the right styles?
.
 But how to do this in Flex 2.0, when function 'load()' doesn't exist

You can't apply styles at runtime in Flex 2 using a stylesheet (yet - there 
are people working on it), IIRC.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.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

* 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] flex1.5 custom component create problem

2006-07-17 Thread aoi_zip
Because swc inherit from uicomponent, it doesn't support attachMoive 
or duplicate like a movieclip. 
If I use similar way to attachMoive, I know that I should use 
a createObject and then I want to know the way how to use it in detail. 
At now, nothing is exposured in createObject. 






 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] flex1.5 custom component create problem

2006-07-17 Thread JesterXL
Old, but still relevant to Flex 1.5's API.  Basically:
- define symbolName, symbolOwner, and className
- use createClassObject

http://dev.jessewarden.com/captivate/flashcomponents/main.html

- Original Message - 
From: aoi_zip [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 8:49 AM
Subject: [flexcoders] flex1.5 custom component create problem


Because swc inherit from uicomponent, it doesn't support attachMoive 
or duplicate like a movieclip. 
If I use similar way to attachMoive, I know that I should use 
a createObject and then I want to know the way how to use it in detail. 
At now, nothing is exposured in createObject. 







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



 



 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread JesterXL
He meants the Flash Player 6' ability to load StyleSheets into TextFields, 
not Flex' CSS.  I know it's confusing sounding, but they are two different 
things.

- Original Message - 
From: Tom Chiverton [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 8:47 AM
Subject: Re: [flexcoders] Loading external css and setting a:hover style for 
htmlText


On Monday 17 July 2006 13:02, olivierdejonge wrote:
 How do I connect an external stylesheet to a textfield so the htmlText
 gets the right styles?
.
 But how to do this in Flex 2.0, when function 'load()' doesn't exist

You can't apply styles at runtime in Flex 2 using a stylesheet (yet - there
are people working on it), IIRC.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
St James's Court Brown Street Manchester M2 2JF.  A list of members is 
available for inspection at the registered office. Any reference to a 
partner in relation to Halliwells LLP means a member of Halliwells LLP. 
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may 
be confidential or legally privileged.  If you are not the addressee you 
must not read it and must not use any information contained in nor copy it 
nor inform any person other than Halliwells LLP or the addressee of its 
existence or contents.  If you have received this email in error please 
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.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








--
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] Re: RPC Vs. FDS and FDS Express

2006-07-17 Thread Nick Collins



I didn't say anything about FDS needing to be there to use remoting... for that all you need is the coldfusion update. I merely said that I had installed express... that way it's available should I need it. Thusfar I have not. Also, truth be known, I'll likely never purchase a license of FDS, since this next version of WebORB does everything FDS does, except it also will work with .Net, allowing you to use remoting with .Net. Also, currently the professional (enterprise) version of WebORB is $800, not $20,000 per CPU.
On 7/17/06, David [EMAIL PROTECTED] wrote:













  



Nick, 
Thanks for your comments! I was thinking the same thing, but as of
this time, I only have a handful of clients that all like having their
own hosting plans. Also, if what you say is true, then you really do
have to have FDS installed in order to us the Flash Remoting 
functionality in conjunction with flex. Its pretty annoying that they
just don't tell you install details in any of these tutorials. Anyways,
Thanks again!
David

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


 What I ended up doing is just anteing up and getting a dedicated server.
 Enterhost has a plan that includes a license of Coldfusion for like
$200 a
 month. For me, it's been well worth it, being able to setup my own
staging
 area, public area, being able to update software as I need, not as
the host
 dictates. I was able to install FDS express with no issues, as well
as Flash
 Media Server 2, and update coldfusion to 7.0.2 for flex integration.
It just
 makes my life so much easier, I can never go back to a shared hosting
 solution.


  















__._,_.___





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



  






__,_._,___



Re: [flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-17 Thread Jean-Luc ESSER





I didn't tried it, but from help, this should work 
:

package { import 
flash.display.Sprite; import 
flash.text.StyleSheet; import 
flash.text.TextField; import 
flash.text.TextFieldAutoSize; public class 
StyleSheetExample extends Sprite 
{ public function 
StyleSheetExample() 
{ var 
style:StyleSheet = new 
StyleSheet(); 
var heading:Object = new 
Object(); 
heading.fontWeight = 
"bold"; 
heading.color = 
"#FF"; 
var body:Object = new 
Object(); 
body.fontStyle = 
"italic"; 
style.setStyle(".heading", 
heading); 
style.setStyle("body", 
body); 
var label:TextField = new 
TextField(); 
label.styleSheet = 
style; 
label.htmlText = "bodyspan class='heading'Hello 
/spanWorld.../body"; 
addChild(label); 
} }}

**

Of course this is not what you want, as it does not 
use an external CSS.
Now, i guess that using the parseCSS Method could 
get you where you want to go. Not sure though... :s

This is not dynamically loading CSS at runtime 
which is not possible as we speak, as Tom said.

Share your findings on this.

Best,
JL

--
Lancement de la communauté francophone sur Flex 
:
http://www.flexeurs.org  rejoignez-nous 
!



  - Original Message - 
  From: 
  olivierdejonge 
  To: flexcoders@yahoogroups.com 
  Sent: Monday, July 17, 2006 2:02 PM
  Subject: [flexcoders] Loading external 
  css and setting a:hover style for htmlText
  
  
  How do I connect an external stylesheet to a textfield so the 
  htmlTextgets the right styles?In Flex 1.5 that was 
  easy:var styles:TextField.StyleSheet = new 
  TextField.StyleSheet();styles.load('myStyles.css');...function 
  onLoad(ok){if(ok){myText.htmlText = "hello a 
  href=""world/amyText.styleSheet = 
  styles}}But how to do this in Flex 2.0, when function 'load()' 
  doesn't existanymore and parseCSS not realy seems tow work with a:hover 
  style etc?In the 2.0 example I have an 
  Application...?xml version="1.0" 
  encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"xmlns:myText="*" 
  layout="absolute"mx:Style source="main.css 
  "/myText:TextFieldExample 
  //mx:Application...that loads an external stylesheet 
  main.css,...body {fontFamily : "ThesisBolPla";leading : 
  "-3";}.heading {fontWeight :"bold";color: "#FF3300";}a 
  {color:#f0037f;}a:link{color:#f0037f;text-decoration:underline;}a:hover{color:#f0037f;}a:active{color:#cc;}...and 
  creates the an instance of TextFieldExample:package {import 
  mx.core.UIComponent;import flash.text.TextField;public 
  class TextFieldExample extends UIComponent {private var 
  label:TextField;private var labelText:String = 
  "bodyspanclass='heading'Hello 
  world/spanbra 
  href=''andwelcome/a to the show. 
  /body";public function TextFieldExample() 
  {configureLabel();setLabel(labelText);}public 
  function setLabel(str:String):void {label.htmlText = 
  str;}private function configureLabel():void {label = 
  new TextField();label.width = 200;label.embedFonts = 
  true;label.background = "">label.multiline = 
  true;label.styleSheet = HOW TO CONNECT TO THE 
  CSS?;addChild(label);}}}How do I connect the 
  external stylesheet to the textfield so thehtmlText gets the right 
  style?
__._,_.___





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



  






__,_._,___



[flexcoders] addressing individual chartItems

2006-07-17 Thread sp0rarb3jd3r
Working with the linechart component is there any way of addressing
the individual chartItems? One by one.
Let's say you want at certain significant ChartItem to turn red is
there an index that you could traverse.
Something along the lines:
for (i - lineseries.ItemArray)
 if(lineseries.itemArray[i]== threshold){
make Red;
}
}
Or are they out of bounds once created, unless you write your own
specific ItemRenderers???


I've tried to go about the problem by using the contentToLocal method.
but it doesn't supply any intelligeble coordinates.

Anyone have an idea how to go about this.

Y!






 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] Re: HTTPService in components

2006-07-17 Thread mcmcbrianfarrell
--- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] 
wrote:

 Can you include the errors here?  Without them, it's a bit hard to
 figure out what might be going on.
  

Carson,
My code is:

?xml version=1.0 encoding=utf-8?

 mx:HTTPService id=usrRequest url=usr.xml useProxy=false /

...which is at the top of the file and the error I get is:

The prefix mx for element mx:HTTPService is not bound.






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Re: HTTPService in components

2006-07-17 Thread Andrew Trice












Is that all of your code? If so, you need
to include the namespace on the root node of the component.



mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml

id=usrRequest url=""
useProxy=false / 







_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com



Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrell
Sent: Monday, July 17, 2006 9:19
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
HTTPService in components











--- In [EMAIL PROTECTED]ups.com,
Carson Hager
carson.hager@... 
wrote:

 Can you include the errors here? Without them, it's a bit hard to
 figure out what might be going on.
 

Carson,
My code is:

?xml version=1.0 encoding=utf-8?

mx:HTTPService id=usrRequest url=""
useProxy=false /

...which is at the top of the file and the error I get is:

The prefix mx for element mx:HTTPService is not bound.






__._,_.___





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



  






__,_._,___






[flexcoders] Font mysteries

2006-07-17 Thread Tom Fitzpatrick
Fonts are exhibiting some wacky behavior for me.

I have a VBox that contains two simple label elements. I'm trying to add 
a filter to the VBox and have the fonts in the labels display properly.

Before the filter is applied, the Label fonts display fine.

When I add a glow filter to the VBox, the antialiasing on the Label 
fonts disappears.

Strangely, when the Label text is long enough to force a scrollbar on 
the VBox, the Label fonts are suddenly antialiased correctly.

Embedding the font (I'm using Verdana) and applying it using a stylename 
does apply some antialiasing in the VBox with the filter, but it doesn't 
look nearly as good as the unstyled text in the filtered VBox with 
forced scrollbars or the VBox with no filter.

I haven't tried FlashType fonts - that's next on my list - but I thought 
maybe someone could explain what's going on here or point me to a solution.

- Tom






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Re: HTTPService in components

2006-07-17 Thread Tom Chiverton
On Monday 17 July 2006 14:19, mcmcbrianfarrell wrote:
 My code is:

 ?xml version=1.0 encoding=utf-8?

 The prefix mx for element mx:HTTPService is not bound.


You haven't got the namespace (xmlns:...) declared.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.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

* 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] Re: HTTPService in components

2006-07-17 Thread Carson Hager





Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.


__._,_.___





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



  






__,_._,___



Re: [flexcoders] Font mysteries

2006-07-17 Thread JesterXL
David Colletta mentioned to me on the Flexcomponents list that Microsoft 
Windows' ClearType sometimes gets turned off during component redraws.  I've 
experienced this exact same thing you have.  If you turn ClearType off 
(desktop, right click  properties, appearence tab, effects button) you can 
see the difference to normal fonts and embedded fonts; the ClearType does a 
2nd run of anti-aliasing (sometimes).

My suggestion is, if you can, utilize a bitmap with the filter on it in an 
imaging program and utilize scale9 where applicable.  If that is not an 
option, attempt to use your own cacheAsBitmap policy (since Containers have 
their own heuristic for that stuff, cacheBitmapPolicy).


- Original Message - 
From: Tom Fitzpatrick [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 9:53 AM
Subject: [flexcoders] Font mysteries


Fonts are exhibiting some wacky behavior for me.

I have a VBox that contains two simple label elements. I'm trying to add
a filter to the VBox and have the fonts in the labels display properly.

Before the filter is applied, the Label fonts display fine.

When I add a glow filter to the VBox, the antialiasing on the Label
fonts disappears.

Strangely, when the Label text is long enough to force a scrollbar on
the VBox, the Label fonts are suddenly antialiased correctly.

Embedding the font (I'm using Verdana) and applying it using a stylename
does apply some antialiasing in the VBox with the filter, but it doesn't
look nearly as good as the unstyled text in the filtered VBox with
forced scrollbars or the VBox with no filter.

I haven't tried FlashType fonts - that's next on my list - but I thought
maybe someone could explain what's going on here or point me to a solution.

- Tom







--
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] Re: HTTPService in components

2006-07-17 Thread JesterXL





$10 says its his email client. Everytime I 
try to manually create xmlns, it forces them to hyperlinks.

- Original Message - 
From: Carson Hager 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 17, 2006 10:11 AM
Subject: RE: [flexcoders] Re: HTTPService in components

Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.

 
__._,_.___





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



  






__,_._,___



RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Carson Hager





Yeah I was just giving a coworker a hard time. 
:)


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: 
Monday, July 17, 2006 7:30 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: HTTPService 
in components



$10 says its his email client. Everytime I 
try to manually create xmlns, it forces them to hyperlinks.

- Original Message - 
From: Carson Hager 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 17, 2006 10:11 AM
Subject: RE: [flexcoders] Re: HTTPService in components

Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.



__._,_.___





--
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] Totaling Items

2006-07-17 Thread s_hernandez01
Hey Flexers

I am having trouble creating a function that would total all the items
added to my shopping cart.  If anybody can help me out with my code,
I'd appreciate it.  I am still new to flex and don't know much of
actionscript 3 so any advice would help me out alot.  Below is a link
to the shopping cart app(right click if you want to view the source)
and the code below it, is the code of my shopping cart which has the
calculateTotal() function that I tried to do to calculate the added items.

Thanks 

Sal


http://flex.work.iotashan.com/salShoppingCart/flexcodersHelp.html


mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml;
 mx:Script
![CDATA[
import mx.collections.ArrayCollection;

[Bindable]
public var myDP:ArrayCollection = new ArrayCollection();
[Bindable]
public var total:Number = 0;
[Bindable]
public var itemCount:int = 0;

public function addItem(item:Object):void{
myDP.addItem(item);
calculateTotal();
}

public function calculateTotal():void{
   var t:Number = 0;
   var c:Number = 0;
   var n:int = myDP.length;

   for (var i:int = 0; i  n; i++){
   c += myDP[i].quantity;
   t += myDP[i].quantity * myDP[i].price;
}

   total = t;
   itemCount = c;
}
]]
/mx:Script

mx:Panel width=100% height=100% layout=absolute
title=Shopping Cart
mx:VBox x=0 y=0 width=100% height=100%
mx:DataGrid x=0 y=0 id=dg width=100% height=100%
dropEnabled=true dataProvider={myDP}
mx:columns
mx:DataGridColumn headerText=Product dataField=name/
mx:DataGridColumn id=productQuantity
headerText=Quantity dataField=qty/
mx:DataGridColumn id=productPrice
headerText=Price dataField=price/
/mx:columns
/mx:DataGrid

mx:Form verticalGap=0 paddingRight=0 borderStyle=outset
mx:FormItem label=Total: borderStyle=inset 
fontWeight=bold
mx:Label width=70 text={total} textAlign=right/
/mx:FormItem
mx:FormItem label=Shipping: borderStyle=inset
fontWeight=bold
mx:Label width=70 textAlign=right/
/mx:FormItem
mx:FormItem label=Grand Total: fontWeight=bold 
borderStyle=inset
mx:Label width=70 textAlign=right/
/mx:FormItem
/mx:Form
/mx:VBox

/mx:Panel
/mx:Canvas






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





[flexcoders] problem of script execution with flex and flash player

2006-07-17 Thread khaled zaghdoud



hello,I'm trying to draw a curve, that represent a sound recorded, by detecting a samples of the actvitylevel of the micro when it recording the sound and drawing it using the chart class.I got a problem 'Cos it seems that the script that sample the micro activity slow down the flash player, and the execution of the script fail.
can you help me please if there is a solution for this problem, or if there is another way to draw this curve.thanks,

__._,_.___





--
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] Panel Problems

2006-07-17 Thread juan sanchez


something like this happened to me when i had an application with multiple states. in one of those states i had a component with multiple states. and in one of those states i had a tab nav with a view stack. when i switched to the state with the view stack my app froze. in fact, it happened twice in two different instances in the same app. never figured it out.On Jul 14, 2006, at 8:55 PM, Troy wrote:On a current project every thing looks fine in the editor, but whentested anything that hits a particular view in a viewstack hangs. Inprobing it, it's hanging on something bizarre: If I have a mx:Panelinline on the first file it works fine. If I use the same Panel (whichcan be empty) via an separate file via xmlns: etc it works fine in theeditor but stops responding to any clicks when the panel.Sadly the source is kinda complicated so it's not something I can justcut and post here. Anybody see anything like this?
__._,_.___





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



  






__,_._,___


Re: [flexcoders] Best $$$ Price on Flex?

2006-07-17 Thread Greg Hamer



Academic licenses 
for Flex 2 w/Components are $79. Of course you have to be a student, teacher, professor, etc. One source here:

www.academicsuperstore.com/market/marketdisp.html?PartNo=760814



For standard licenses, it looks like CDW.com has discounted down to $593.99. Link here:
http://www.cdw.com/shop/products/default.aspx?EDC=1012357

Anyone know of other resellers offering better or similar standard license discounts?

On 7/15/06, Kevin Mulvihill [EMAIL PROTECTED] wrote:













  






Hi 
all,

Just wondering if 
anyone can recommend whomever might have the best pricing on Flex with charting? 
Also, any crossgrade opportunities available?

Thanks,
Kevin

  















__._,_.___





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



  






__,_._,___



Re: [flexcoders] Best $$$ Price on Flex?

2006-07-17 Thread Douglas Knudsen



only if your a big corp working with a vendor :)DKOn 7/17/06, Greg Hamer [EMAIL PROTECTED] wrote:



Academic licenses 
for Flex 2 w/Components are $79. Of course you have to be a student, teacher, professor, etc. One source here:


www.academicsuperstore.com/market/marketdisp.html?PartNo=760814



For standard licenses, it looks like CDW.com has discounted down to $593.99. Link here:
http://www.cdw.com/shop/products/default.aspx?EDC=1012357


Anyone know of other resellers offering better or similar standard license discounts?

On 7/15/06, Kevin Mulvihill 
[EMAIL PROTECTED] wrote:













  






Hi 
all,

Just wondering if 
anyone can recommend whomever might have the best pricing on Flex with charting? 
Also, any crossgrade opportunities available?

Thanks,
Kevin

  


















-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?

__._,_.___





--
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] Dump object to Console

2006-07-17 Thread Lisa Nelson
Dear All,

More debugging woes.  I have some other cause of the debugger not
working in subcomponents - just blows by the breakpoints.  

But I have a question that could maybe bypass 90% of the reason I tend
to use the debugger anyway.  Does anyone have a way of just dumping an
object to the console, or external file or something like that?
Something like trace, but that will handle an entire object with many
fields, and you don't have to know at compile time what all the fields
are.

--L


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] mx:List and displaying images

2006-07-17 Thread arnold_charming
Hi!

I'm using XML to get the required data for mx:List component. Every
node has an attribute called myIcon which stores the name of the
image. Now I just want to read the name of image which is stored in
myIcon attribute and display thta image in mx:List. And hint would be
great. thank you.





 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Dump object to Console

2006-07-17 Thread JesterXL
For a shallow copy, use a for in / for each loop.

var s:String = ;
for ( var p:* in o)
{
s += p + :  + o[p] + \n;
}
trace(s);

For something more, like a tree, use mx.utils.ObjectUtils.toString.

I have a DebugWindow I use here so you don't have to toggle to FlexBuilder 
to see your traces.  Just drop the DebugWindow.mxml at the root of your 
project and go:

DebugWindow.debugHeader(), DebugWindow.debug(stuff), or 
DebugWindow.debugProps(obj) in your code.
http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html

- Original Message - 
From: Lisa Nelson [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 12:12 PM
Subject: [flexcoders] Dump object to Console


Dear All,

More debugging woes.  I have some other cause of the debugger not
working in subcomponents - just blows by the breakpoints.

But I have a question that could maybe bypass 90% of the reason I tend
to use the debugger anyway.  Does anyone have a way of just dumping an
object to the console, or external file or something like that?
Something like trace, but that will handle an entire object with many
fields, and you don't have to know at compile time what all the fields
are.

--L



--
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] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Kevin Mulvihill





Are there any limitations on academic licenses, like 
limited functionality or ugly splash screens? Just so happens I'm taking some 
courses this summer... thanks.

Kevin

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Greg 
  HamerSent: Monday, July 17, 2006 8:59 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Best $$$ Price 
  on Flex?
  
  
  
  Academic licenses for Flex 2 
  w/Components are $79. Of course you have to be a student, teacher, 
  professor, etc. One source here:
  www.academicsuperstore.com/market/marketdisp.html?PartNo=760814For standard licenses, it looks like CDW.com 
  has discounted down to $593.99. Link here:http://www.cdw.com/shop/products/default.aspx?EDC=1012357Anyone 
  know of other resellers offering better or similar standard license 
  discounts?
  On 7/15/06, Kevin 
  Mulvihill [EMAIL PROTECTED] 
  wrote:
  





Hi all,

Just wondering if anyone can recommend 
whomever might have the best pricing on Flex with charting? Also, any 
crossgrade opportunities available?

Thanks,
Kevin

  
__._,_.___





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



  






__,_._,___



[flexcoders] problem with secure RTMP

2006-07-17 Thread Dimitrios Gianninas





Hi,

Has anyone 
setup secure RTMP successfully? I have created my keystore and specified it in 
the services-config.xml and it just doesn't work. Port is open as well, I 
verified that with my network admins.

The only 
error I see in my flex log is below. After waiting 20 secs for a get() operation 
it fails with the error "Send Failed". Is there anyway to see what is actually 
causing the failure?

'cds-consumer-consumerDS-null' consumer subscribe.'my-rtmp' channel 
endpoint set to rtmps://dev.firepay.com:2038'my-rtmp' channel settings 
are:channel id="my-rtmp" 
type="mx.messaging.channels.SecureRTMPChannel"endpoint 
uri="rtmps://dev.firepay.com:2038"/properties//channel'cds-producer-consumerDS-null' 
producer sending message '814C44BC-2D52-BCBD-A642-7D90E42DBD17''my-rtmp' 
channel got status. (Object)#0 code = 
"NetConnection.Connect.Failed" level = "error"'my-rtmp' channel 
polling stopped.'my-rtmp' channel connect 
failed.'cds-consumer-consumerDS-null' consumer channel faulted with 
Channel.Connect.Failed null'cds-consumer-consumerDS-null' consumer starting 
resubscribe timer.

Dimitrios 
Gianninas
RIADeveloper
Optimal 
Payments Inc.

 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé.  L’expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s’il est retransmis sans son autorisation.  Si vous n’êtes pas le destinataire visé du présent message ou si vous l’avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système.  La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l’expéditeur.
  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail in error, please notify the sender.
  
 

__._,_.___





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



  






__,_._,___



RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Shannon Hicks





The traditional limitations are that you must be in 
education, and you must only use it for educational purposes. I.E. if you want 
to release an application that you got paid to build, you need to buy the full 
version.

Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin 
MulvihillSent: Monday, July 17, 2006 12:04 PMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] RE: 
[flexcoders] Best $$$ Price on Flex? (Adobe)



Are there any limitations on academic licenses, like 
limited functionality or ugly splash screens? Just so happens I'm taking some 
courses this summer... thanks.

Kevin

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Greg 
  HamerSent: Monday, July 17, 2006 8:59 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Best $$$ Price 
  on Flex?
  
  
  
  Academic licenses for Flex 2 
  w/Components are $79. Of course you have to be a student, teacher, 
  professor, etc. One source here:
  www.academicsuperstore.com/market/marketdisp.html?PartNo=760814For standard licenses, it looks like CDW.com 
  has discounted down to $593.99. Link here:http://www.cdw.com/shop/products/default.aspx?EDC=1012357Anyone 
  know of other resellers offering better or similar standard license 
  discounts?
  On 7/15/06, Kevin 
  Mulvihill [EMAIL PROTECTED] 
  wrote: 
  





Hi all,

Just wondering if anyone can recommend 
whomever might have the best pricing on Flex with charting? Also, any 
crossgrade opportunities available?

Thanks,
Kevin

  

--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 
7/14/2006
__._,_.___





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



  






__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006
 


Re: [flexcoders] Font mysteries

2006-07-17 Thread Tom Fitzpatrick
Thanks for the suggestions.

Since the filter is being applied to a VBox, my only option was to try a 
custom setting for the cacheAsBitmap attribute. Resetting both the 
cacheAsBitmap and cachePolicy attributes for both the VBox and the 
Labels didn't solve the problem.

The mystery remains...

- Tom

JesterXL wrote:

 David Colletta mentioned to me on the Flexcomponents list that Microsoft
 Windows' ClearType sometimes gets turned off during component redraws. 
 I've
 experienced this exact same thing you have. If you turn ClearType off
 (desktop, right click  properties, appearence tab, effects button) 
 you can
 see the difference to normal fonts and embedded fonts; the ClearType 
 does a
 2nd run of anti-aliasing (sometimes).

 My suggestion is, if you can, utilize a bitmap with the filter on it 
 in an
 imaging program and utilize scale9 where applicable. If that is not an
 option, attempt to use your own cacheAsBitmap policy (since Containers 
 have
 their own heuristic for that stuff, cacheBitmapPolicy).

 - Original Message -
 From: Tom Fitzpatrick [EMAIL PROTECTED] 
 mailto:tom%40streamlinestudios.com
 To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com
 Sent: Monday, July 17, 2006 9:53 AM
 Subject: [flexcoders] Font mysteries

 Fonts are exhibiting some wacky behavior for me.

 I have a VBox that contains two simple label elements. I'm trying to add
 a filter to the VBox and have the fonts in the labels display properly.

 Before the filter is applied, the Label fonts display fine.

 When I add a glow filter to the VBox, the antialiasing on the Label
 fonts disappears.

 Strangely, when the Label text is long enough to force a scrollbar on
 the VBox, the Label fonts are suddenly antialiased correctly.

 Embedding the font (I'm using Verdana) and applying it using a stylename
 does apply some antialiasing in the VBox with the filter, but it doesn't
 look nearly as good as the unstyled text in the filtered VBox with
 forced scrollbars or the VBox with no filter.

 I haven't tried FlashType fonts - that's next on my list - but I thought
 maybe someone could explain what's going on here or point me to a 
 solution.

 - Tom

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

  





 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] selecting a child node on a tree

2006-07-17 Thread Tracy Spratt












My 2.0 and e4x is still a bit poor but
first you will need to find a reference to the node you want to expand.  You
can use the e4x xpath-like expressions to find the node with the
specified label.



Then pass that node into expandItem()
method.



Iltt try to find an example.



Tracy











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jesús Iglesias
Sent: Sunday, July 16, 2006 12:52
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] selecting a
child node on a tree













Hi, 











I have a tree with an XML as dataProvider, something like













node label=label1







 node label=label11 / 



 node label=label12 / 



 node label=label13 /





/node









node label=label2





 node label=label21 / 



 node label=label22 / 



 node label=label23 /





/node

















I need to select one node child, i.e. label12











[Bindable]
private var arbolXML:XMLListCollection=new XMLListCollection();
arbolXML.source=XMLList(result.arbol);
my_tree.dataProvider=arbolXML;
my_tree.validateNow();

my_tree.selectedIndex=0;
my_tree.expandItem(arbolXML.getItemAt(0), true);






With this code I expand de node label1, but now, how to set
selected item no child label12?











Thanks










__._,_.___





--
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] URLLoader compile error

2006-07-17 Thread flexnewbie06
Hi
I am trying to load an xml doc to the loader...i get a compile error 
1120 on the xml_loader variable. onComplete is a function I wrote to 
list the xml data into a list.
 
Any suggestions on what I'm doing wrong?

var xml_loader:URLLoader = new URLLoader;
var xml_request:URLRequest = new URLRequest (playlist.xml);   

xml_loader.addEventListener(COMPLETE, onComplete);
xml_loader.load(xml_request);



SeverityDescription ResourceIn Folder
LocationCreation Time   Id
2   1120: Access of undefined property onComplete.  
2   1120: Access of undefined property xml_loader.  
2   1120: Access of undefined property xml_loader.  
2   1120: Access of undefined property xml_request. 







--
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: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread David Mendels





Hello,

I have not reviewed the EULA recently and so others could 
comment in more detail, but Shannon is correct below.

There are no functional limits on the product, however you 
must have a valid education ID to purchase and use it in that context. You 
can purchase an educational license and then use it 
commercially.

Regards,David


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Shannon 
  HicksSent: Monday, July 17, 2006 10:42 AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [Junk E-Mail - LOW] RE: 
  [flexcoders] Best $$$ Price on Flex? (Adobe)
  
  
  
  The traditional limitations are that you must be in 
  education, and you must only use it for educational purposes. I.E. if you want 
  to release an application that you got paid to build, you need to buy the full 
  version.
  
  Shan
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Kevin 
  MulvihillSent: Monday, July 17, 2006 12:04 PMTo: 
  flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] RE: 
  [flexcoders] Best $$$ Price on Flex? (Adobe)
  
  
  
  Are there any limitations on academic licenses, like 
  limited functionality or ugly splash screens? Just so happens I'm taking some 
  courses this summer... thanks.
  
  Kevin
  


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Greg 
HamerSent: Monday, July 17, 2006 8:59 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Best $$$ 
Price on Flex?



Academic licenses for Flex 2 
w/Components are $79. Of course you have to be a student, teacher, 
professor, etc. One source here:
www.academicsuperstore.com/market/marketdisp.html?PartNo=760814For standard licenses, it looks like 
CDW.com has discounted down to $593.99. Link here:http://www.cdw.com/shop/products/default.aspx?EDC=1012357Anyone 
know of other resellers offering better or similar standard license 
discounts?
On 7/15/06, Kevin 
Mulvihill [EMAIL PROTECTED] 
wrote: 

  
  
  
  
  
  
  Hi all,
  
  Just wondering if anyone can recommend 
  whomever might have the best pricing on Flex with charting? Also, any 
  crossgrade opportunities available?
  
  Thanks,
  Kevin
  

  
  --No virus found in this incoming message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release 
  Date: 7/14/2006
  --No virus found in this outgoing message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release 
  Date: 7/14/2006
  
__._,_.___





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



  






__,_._,___



[flexcoders] Adobe Resources

2006-07-17 Thread flexnewbie06
I just need to say it seems that every page I need to access on the 
Adobe livedocs is missing...this is very frustrating.  Sorry folks, 
needed to see if others are experiencing this also.





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





[flexcoders] Org Chart

2006-07-17 Thread hitch_nj
Hi,
I want to create an organisation chart, want to know if there are any
samples available. Actually I am new to Flex and would like to know
where to start.

Thanks
h






--
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] Adobe Resources

2006-07-17 Thread Carson Hager





I'm getting problems all over many of their sites, not just 
that one.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
flexnewbie06Sent: Monday, July 17, 2006 11:27 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Adobe 
Resources


I just need to say it seems that every page I need to access on the Adobe 
livedocs is missing...this is very frustrating. Sorry folks, needed to see 
if others are experiencing this also.
__._,_.___





--
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] calculation fields in datagrid

2006-07-17 Thread hank williams



I want to create a column in a datagrid that doesnt actually exist in the underlying dataProvider but that is calculated based on several values in the dataProvider. I would imagine that somehow I could do this with a custom itemRenderer, but it seems to me an itemRenderer only has access to the data associated with the given column. Is there a way to gain access to the entire rows fields from within an itemRenderer?
Hank

__._,_.___





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



  






__,_._,___



Re: [flexcoders] Adobe Resources

2006-07-17 Thread JesterXL
This one works for me:
http://livedocs.macromedia.com/flex/2/langref/index.html

Not you?

- Original Message - 
From: flexnewbie06 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 2:26 PM
Subject: [flexcoders] Adobe Resources


I just need to say it seems that every page I need to access on the 
Adobe livedocs is missing...this is very frustrating.  Sorry folks, 
needed to see if others are experiencing this also.





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



 




 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Re: tryin to extend the Button (flex1.5)

2006-07-17 Thread Doug Lowder
You can set the useHandCursor and onRelease properties in a mouse 
over handler, like so:

class myComponents.myButton extends mx.controls.Button {

public function myButton(){
extraSpacing = 50;
this.btnOffset = 1;
label = NO LABEL;
addEventListener(mouseOver, this);
}

function mouseOver(event: Object) : Void {
event.target.useHandCursor = true;
event.target.onRelease = null;
}
}



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

 using flex1.5 i try to extend the Button.
 
 class myComponents.myButton extends mx.controls.Button {
   public function myButton(){
   extraSpacing = 50;
   this.btnOffset = 1;
   label = NO LABEL;
   useHandCursor = true;
   }
 }
 
 and:
 myComponents:myButton toolTip=btn tool tip /
 
 the problem is that everything works BUT the useHandCursor is 
not!!
 the extraSpacing, btnOffset and label do their work.
 but i coudlnt find a way to make the useHandCursor work.
 
 how can i make it work?








--
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: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Shannon Hicks





I'm pretty sure he meant to say: "You CANNOT purchase an 
educational license and then use it commercially."

Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of David 
MendelsSent: Monday, July 17, 2006 1:17 PMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] RE: [Junk 
E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? 
(Adobe)



Hello,

I have not reviewed the EULA recently and so others could 
comment in more detail, but Shannon is correct below.

There are no functional limits on the product, however you 
must have a valid education ID to purchase and use it in that context. You 
can purchase an educational license and then use it 
commercially.

Regards,David


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Shannon 
  HicksSent: Monday, July 17, 2006 10:42 AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [Junk E-Mail - LOW] RE: 
  [flexcoders] Best $$$ Price on Flex? (Adobe)
  
  
  
  The traditional limitations are that you must be in 
  education, and you must only use it for educational purposes. I.E. if you want 
  to release an application that you got paid to build, you need to buy the full 
  version.
  
  Shan
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Kevin 
  MulvihillSent: Monday, July 17, 2006 12:04 PMTo: 
  flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] RE: 
  [flexcoders] Best $$$ Price on Flex? (Adobe)
  
  
  
  Are there any limitations on academic licenses, like 
  limited functionality or ugly splash screens? Just so happens I'm taking some 
  courses this summer... thanks.
  
  Kevin
  


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Greg 
HamerSent: Monday, July 17, 2006 8:59 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Best $$$ 
Price on Flex?



Academic licenses for Flex 2 
w/Components are $79. Of course you have to be a student, teacher, 
professor, etc. One source here:
www.academicsuperstore.com/market/marketdisp.html?PartNo=760814For standard licenses, it looks like 
CDW.com has discounted down to $593.99. Link here:http://www.cdw.com/shop/products/default.aspx?EDC=1012357Anyone 
know of other resellers offering better or similar standard license 
discounts?
On 7/15/06, Kevin 
Mulvihill [EMAIL PROTECTED] 
wrote: 

  
  
  
  
  
  
  Hi all,
  
  Just wondering if anyone can recommend 
  whomever might have the best pricing on Flex with charting? Also, any 
  crossgrade opportunities available?
  
  Thanks,
  Kevin
  

  
  --No virus found in this incoming message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release 
  Date: 7/14/2006
  --No virus found in this outgoing message.Checked by 
  AVG Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release 
  Date: 7/14/2006
  

--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 
7/14/2006
__._,_.___





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



  






__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006
 


Re: [flexcoders] Org Chart

2006-07-17 Thread Douglas Knudsen



I have one I created. Staye tuned tohttp://www.cubicleman.com/I have to find time to update it to the Flex 2 GR code and make it purtier. It will be open source and all.
http://www.cubicleman.com/2006/05/11/cmorgchart-is-here/ is the orginal post...works with FlashPlayer 9 beta 3DK
On 7/17/06, hitch_nj [EMAIL PROTECTED] wrote:
Hi,I want to create an organisation chart, want to know if there are anysamples available. Actually I am new to Flex and would like to knowwhere to start.Thanksh--Flexcoders Mailing List
FAQ: 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/-- Douglas Knudsenhttp://www.cubicleman.com
this is my signature, like it?

__._,_.___





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



  






__,_._,___



[flexcoders] Re: binding ViewStack.selectedChild to the data model

2006-07-17 Thread Doug Lowder
Yes I believe you're right, that would be a one-time assignment and 
not a binding.  Since you'd have to create that binding in AS code, 
it's possible there isn't an easy solution.  Sorry I don't have a 
better answer at the moment.

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

 thanks.  I successfully switched to using selectedIndex.  Curious
 though, would the solution you provided create a binding?  Seems 
like
 it might be a one-time assignment to selectedChild and not receive
 updates.
 
 --- In flexcoders@yahoogroups.com, Doug Lowder douglowder@ 
wrote:
 
  The docs say selectedChild can only be set in AS, not MXML.  
Maybe 
  try something like:
  
  creationComplete=viewstack1.selectedChild = 
ModelLocator.getInstance
  ().selectedView 
  
  
  --- In flexcoders@yahoogroups.com, jrjazzman23 jrjazzman23@ 
  wrote:
  
   I think the binding is happening before the viewstack children 
are
   initialized.. getting the following error when I run the prog:
   
   TypeError: Error #2007: Parameter child must be non-null.
   
   
   ModelLocator snippet
   ---
   public var selectedView : Container;
   
   
   
   mainapp.mxml snippet
   --
   mx:ViewStack x=238 y=123 id=viewstack1 width=752 
  height=550
   creationPolicy=all
   selectedChild={ModelLocator.getInstance().selectedView} 
 Components:FindClient id=FindClientCanvas /
 Components:GeneralInformation 
id=GeneralInformationCanvas /
   /mx:ViewStack
   
   
   
   I've tried running the following from main app's initialize,
   preinitialize and creationcomplete
   ---
   ModelLocator.initialize();
   ModelLocator.getInstance().selectedView = FindClientCanvas;
   
   
   
   How can I delay the binding until the viewstack and its 
children 
  have 
   been created?
   
   thanks
  
 







 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

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





[flexcoders] State vars: good, bad, ugly?

2006-07-17 Thread ben.clinkinbeard
As I perused the great sample app Jesse put together
(http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html),
I came across his simultaneous implementation and criticism of state
vars inside ModelLocator.

// only do this if you have a 4 hour deadline;
// some people think state vars are good.  I think
// they are evil... but man, they sure work in a pinch.
public static const STATE_READY:String = ready;
public static const STATE_SEARCHING:String = searching;
public static const STATE_DONE:String = done;

I need to implement something similar in my app as basically the whole
thing resides inside a TabNavigator. I would like a simple, reliable
way to direct the app to change states/tabs and this seems like a
decent approach. What are people's opinions on this approach? Have a
better alternative? Jesse, can you expound on why you think they're evil?

Thanks,
Ben






 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] State vars: good, bad, ugly?

2006-07-17 Thread JesterXL
'cause ya' gotta keep track of 'em.  I'd much rather have state encapsulated 
away, and it just magically knows when to change.

One way in Flex 2 is to:
- put a set of state variables on ModelLocator like the below
- bind your View's currentState to the ModelLocator's 
currentSometingRelevantState
- build your View to implement some or all of those states.  (ex. User 
signed in, user auth failed, data retrieved, loading, etc.)
- when the binded state changes, so does your View
- dispatch events via Cairngorm's event dispatcher, and have your Commands 
change the current state on the ModelLocator
- your view's will update

I don't want to code things like the above because of the whole having 
commands change the state, but I'd do it if you put a gun to my head.

There are various other ways to, like using the binding tag in your View to 
bind to things that aren't necessarely state related on the ModelLocator, 
but DO affect your View's state.  You can bind to setters for example, and 
since setters are basically functions, you can run all kinds of magic beyond 
the simple currentState = some different state.

To me, state is something only View's care about, and thus I'd prefer to 
keep those details out of the ModelLocator, and allow the View's to handle 
the changes themselves like described above.  That could change tomorrow, 
though.


- Original Message - 
From: ben.clinkinbeard [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 3:27 PM
Subject: [flexcoders] State vars: good, bad, ugly?


As I perused the great sample app Jesse put together
(http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html),
I came across his simultaneous implementation and criticism of state
vars inside ModelLocator.

// only do this if you have a 4 hour deadline;
// some people think state vars are good.  I think
// they are evil... but man, they sure work in a pinch.
public static const STATE_READY:String = ready;
public static const STATE_SEARCHING:String = searching;
public static const STATE_DONE:String = done;

I need to implement something similar in my app as basically the whole
thing resides inside a TabNavigator. I would like a simple, reliable
way to direct the app to change states/tabs and this seems like a
decent approach. What are people's opinions on this approach? Have a
better alternative? Jesse, can you expound on why you think they're evil?

Thanks,
Ben







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





[flexcoders] Flex and .NET Objects

2006-07-17 Thread ajackbr
Hi!

I'd like to know if someone is working or has some reference to the
integration between Flex and Microsoft .NET. I did read in some place
that the Flex Data Services would do that dealing with .NET Remoting,
but I'm not sure about that.

Best regards.
Jack





 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)

2006-07-17 Thread Matt Chotin












Correct, educational cannot be used for
commercial.











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Shannon Hicks
Sent: Monday, July 17, 2006 12:01
PM
To: flexcoders@yahoogroups.com
Subject: RE: [Junk E-Mail - LOW]
RE: [Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)











I'm pretty sure he meant to say: You
CANNOT purchase an educational license and then use it commercially.









Shan









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels
Sent: Monday, July 17, 2006 1:17
PM
To: flexcoders@yahoogroups.com
Subject: [Junk E-Mail - LOW] RE:
[Junk E-Mail - LOW] RE: [flexcoders] Best $$$ Price on Flex? (Adobe)



Hello,



I have not reviewed the EULA recently and
so others could comment in more detail, but Shannon
is correct below.



There are no functional limits on the
product, however you must have a valid education ID to purchase and use it in
that context. You can purchase an educational license and then use it
commercially.



Regards,
David













From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon Hicks
Sent: Monday, July 17, 2006 10:42
AM
To: flexcoders@yahoogroups.com
Subject: RE: [Junk E-Mail - LOW]
RE: [flexcoders] Best $$$ Price on Flex? (Adobe)



The traditional limitations are that you
must be in education, and you must only use it for educational purposes. I.E.
if you want to release an application that you got paid to build, you need to
buy the full version.



Shan









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Mulvihill
Sent: Monday, July 17, 2006 12:04
PM
To: flexcoders@yahoogroups.com
Subject: [Junk E-Mail - LOW] RE:
[flexcoders] Best $$$ Price on Flex? (Adobe)



Are there any limitations on academic
licenses, like limited functionality or ugly splash screens? Just so happens
I'm taking some courses this summer... thanks.



Kevin











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Hamer
Sent: Monday, July 17, 2006 8:59
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Best $$$
Price on Flex?





Academic
licenses for Flex 2 w/Components are $79. Of course you have to be a
student, teacher, professor, etc. One source here:



www.academicsuperstore.com/market/marketdisp.html?PartNo=760814




For standard licenses, it looks like CDW.com has
discounted down to $593.99. Link here:
http://www.cdw.com/shop/products/default.aspx?EDC=1012357

Anyone know of other resellers offering better or similar standard license
discounts?







On 7/15/06, Kevin
Mulvihill [EMAIL PROTECTED]
wrote: 













Hi all,











Just wondering if anyone can
recommend whomever might have the best pricing on Flex with charting? Also, any
crossgrade opportunities available?











Thanks,





Kevin





























--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006











--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.1/389 - Release Date: 7/14/2006






__._,_.___





--
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] Issue with DragEvents

2006-07-17 Thread Joshua Garnett



I'm trying to capture the dragEnter event in a VBox container, but the event will only fire if the mouse is placed over an empty area of the Vbox. If the mouse is placed over an area that is filled (label, etc..) it doesn't want to fire. Is there a way to enable bubbling of DragEvents? or perhaps a better way to structure my component so it will receive the dragEnter event even if the mouse is placed over a sub-component?
Thanks,--Josh

__._,_.___





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



  






__,_._,___



[flexcoders] Flex and CF

2006-07-17 Thread Brian Holmes





Hi 
everyone,
Can anyone 
point me in the right direction of getting CF and FDS up on the same server, as 
it would be on production server. A deployment guide or old thread would be 
nice. Specifically I'm trying to load flex applications and widgets in our 
already established CF framewok.


Thanks,
Brian

***
The information in this e-mail is confidential and intended solely for the individual or entity to whom it is addressed.  If you have received this e-mail in error, please notify the sender by return e-mail, delete this e-mail, and refrain from any disclosure or action based on the information.
*** 


__._,_.___





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



  






__,_._,___



Re: [flexcoders] Adobe Resources

2006-07-17 Thread Darron J. Schall






When the Flex 2 product line was released, the livedocs pages that were
on labs were migrated to the official livedocs site. Because there was
such a long beta period, you'll find that a lot of web sites linked to
the labs livedocs, and now those links are no longer valid.

You can correct the documentation by hand with a little bit of
URL-rewriting. For example, 

http://livedocs.macromedia.com/labs/1/flex/langref/index.html

...becomes...

http://livedocs.macromedia.com/flex/2/langref/index.html

All of the livedocs links may not be as straightforward as the above to
get them working, but hopefully you get the idea. It would've been
nice if the URLs would automatically rewrite themselves to point to the
new documentation to avoid the numerous 404 errors that you may be
seeing

-d

flexnewbie06 wrote:


  
  I just need to say it seems that every page I need to access on
the 
Adobe livedocs is missing...this is very frustrating. Sorry folks, 
needed to see if others are experiencing this also.
  
  
  




__._,_.___





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



  






__,_._,___




RE: [flexcoders] Flex and CF

2006-07-17 Thread João Fernandes
Do you plan to deploy it together (sharing the same context-root) or different 
context-root / server instances?

João Fernandes


-Original Message-
From: flexcoders@yahoogroups.com on behalf of Brian Holmes
Sent: Mon 17-Jul-06 8:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex and CF
 
Hi everyone,
 Can anyone point me in the right direction of getting CF and FDS up on
the same server, as it would be on production server. A deployment guide
or old thread would be nice. Specifically I'm trying to load flex
applications and widgets in our already established CF framewok.
 
 
Thanks,
Brian


***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 



 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 
winmail.dat

[flexcoders] Re: Flex and .NET Objects

2006-07-17 Thread Harris Reynolds
Hi Jack.  At this point the easiest way to integrate Flex with .Net is 
to use WebORB.  Here's the link:

http://www.themidnightcoders.com/weborb/dotnetweborb.htm

Hope that helps,

~harris

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

 Hi!
 
 I'd like to know if someone is working or has some reference to the
 integration between Flex and Microsoft .NET. I did read in some place
 that the Flex Data Services would do that dealing with .NET Remoting,
 but I'm not sure about that.
 
 Best regards.
 Jack







 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Re: Flex and .NET Objects

2006-07-17 Thread Tim Hoff
Hi Jack,

Just to be fair to Adobe, you can integrate Flex2 and .Net natively 
with Flex's built-in WebService and HTTPService functionality.  For 
some this is sufficient; depending on the need.  However, I do agree 
that, for high-end applications that rely on performance, WebORB is 
a good choice.  WebOrb is like FDS for .Net.  Serialized data is 
sent over the wire via RemoteObject.  Just another point of view.

-TH

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

 Hi Jack.  At this point the easiest way to integrate Flex 
with .Net is 
 to use WebORB.  Here's the link:
 
 http://www.themidnightcoders.com/weborb/dotnetweborb.htm
 
 Hope that helps,
 
 ~harris
 
 --- In flexcoders@yahoogroups.com, ajackbr jackson.souza@ 
wrote:
 
  Hi!
  
  I'd like to know if someone is working or has some reference to 
the
  integration between Flex and Microsoft .NET. I did read in some 
place
  that the Flex Data Services would do that dealing with .NET 
Remoting,
  but I'm not sure about that.
  
  Best regards.
  Jack
 







 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Dump object to Console

2006-07-17 Thread Lisa Nelson
Beautiful in it's simplicity.  Thanks.  --L 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of JesterXL
Sent: Monday, July 17, 2006 10:17
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Dump object to Console

For a shallow copy, use a for in / for each loop.

var s:String = ;
for ( var p:* in o)
{
s += p + :  + o[p] + \n;
}
trace(s);

For something more, like a tree, use mx.utils.ObjectUtils.toString.

I have a DebugWindow I use here so you don't have to toggle to
FlexBuilder to see your traces.  Just drop the DebugWindow.mxml at the
root of your project and go:

DebugWindow.debugHeader(), DebugWindow.debug(stuff), or
DebugWindow.debugProps(obj) in your code.
http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html

- Original Message -
From: Lisa Nelson [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, July 17, 2006 12:12 PM
Subject: [flexcoders] Dump object to Console


Dear All,

More debugging woes.  I have some other cause of the debugger not
working in subcomponents - just blows by the breakpoints.

But I have a question that could maybe bypass 90% of the reason I tend
to use the debugger anyway.  Does anyone have a way of just dumping an
object to the console, or external file or something like that?
Something like trace, but that will handle an entire object with many
fields, and you don't have to know at compile time what all the fields
are.

--L



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



 





--
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] Flex and CF

2006-07-17 Thread Brian Holmes
Sorry João, I don't understand the differences. We already have a CF server 
running through IIS and I just want to be able to load Flex applications and 
widgets that have access to FDS. So I guess the same context root. 
  

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João 
Fernandes
Sent: Monday, July 17, 2006 1:56 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex and CF

Do you plan to deploy it together (sharing the same context-root) or different 
context-root / server instances?

João Fernandes


-Original Message-
From: flexcoders@yahoogroups.com on behalf of Brian Holmes
Sent: Mon 17-Jul-06 8:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex and CF
 
Hi everyone,
 Can anyone point me in the right direction of getting CF and FDS up on the 
same server, as it would be on production server. A deployment guide or old 
thread would be nice. Specifically I'm trying to load flex applications and 
widgets in our already established CF framewok.
 
 
Thanks,
Brian


***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 



***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 


 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

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


[flexcoders] Re: DateChooser Scrool Events

2006-07-17 Thread grant.straker

I finally figured out the answer to this.

You need to pass scroll=scrollEventHandler(event.detail);

event.detail is a string 

if (event == previous Month){
iMonth = iCurrentMonth = iCurrentMonth - 1;
}
if (event == next Month){
iMonth = iCurrentMonth = iCurrentMonth + 1;
}




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

mx:DateChooser scroll=getItems();/
 
  
 
  
 
   _  
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of grant.straker
 Sent: Monday, July 17, 2006 5:52 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] DateChooser Scrool Events
 
  
 
 I'm trying to handle a DateChooser scroll event to run function when
 the month is changed in a datechooser and Im not having too much luck.
 
 If this works for a change event
 
 change =filterByDay(DateChooser(event.target).selectedDate); 
 
 What do I pass for a scroll event? and what type does my event handler
 listen for - DateChooserEvent?
 
 Couldn't find any examples and my action script is fairly basic.
 
 Cheers
 
 Grant








 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tom Jordahl
--- In flexcoders@yahoogroups.com, Kevin Mulvihill [EMAIL PROTECTED]
wrote:

 Hi all,
  
 What do you all recommend for backend server-side technology to work
with
 Flex? I'm planning on some work with MySQL and not particularly
interested
 in .NET.

Hi Kevin,

I would say that you should look at ColdFusion MX 7.0.2 as the premier
server side technology that closely integrates with Flex 2.

Some advantages
- Application Wizard gives you a working Flex/CF app in minutes.
- Tight integration with the FDS Messaging and Data Mangement features
- Easy to use Flash Remoting support allows you to invoke ColdFusion
Components
- Its ColdFusion!  The fastest, simplest and most productive server
side scripting technology around.

Disclaimer: I am (very) biased.

--
Tom Jordahl
Adobe ColdFusion Team







 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

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




[flexcoders] Change graphical skin of a button control at runtime?

2006-07-17 Thread user_abcxyz
Is it possible? I want to allow the user at runtime can change the 
existent graphical skin of a button, however I am not sure if it's 
possible in Flex. Please help and give me some snippet code to 
demonstrate.

Thank you.






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Flex and CF

2006-07-17 Thread João Fernandes

take a look here,

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f079a4d

when they say to merge both web.xml keep the MessageBrokerServlet from the 
ColdFusion web.xml and disregard the one from the extracted web.xml file. 

Are you running multiserver or J2EE version? if yes, I'd advise you to create a 
new cf instance and deploy it there.

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Brian Holmes
Sent: Mon 17-Jul-06 9:06 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex and CF
 
Sorry João, I don't understand the differences. We already have a CF server 
running through IIS and I just want to be able to load Flex applications and 
widgets that have access to FDS. So I guess the same context root. 
  

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João 
Fernandes
Sent: Monday, July 17, 2006 1:56 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex and CF

Do you plan to deploy it together (sharing the same context-root) or different 
context-root / server instances?

João Fernandes


-Original Message-
From: flexcoders@yahoogroups.com on behalf of Brian Holmes
Sent: Mon 17-Jul-06 8:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex and CF
 
Hi everyone,
 Can anyone point me in the right direction of getting CF and FDS up on the 
same server, as it would be on production server. A deployment guide or old 
thread would be nice. Specifically I'm trying to load flex applications and 
widgets in our already established CF framewok.
 
 
Thanks,
Brian


***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 



***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed.  If you have received this e-mail 
in error, please notify the sender by return e-mail, delete this e-mail, and 
refrain from any disclosure or action based on the information.
*** 



 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 
winmail.dat

Re: **SL-JUNK** Re: [flexcoders] Adobe Resources

2006-07-17 Thread Sreejith Unnikrishnan





Or download all the docs in the ZIP format 
available.


  - Original Message - 
  From: 
  Darron 
  J. Schall 
  To: flexcoders@yahoogroups.com 
  Sent: Tuesday, July 18, 2006 12:30 
  AM
  Subject: **SL-JUNK** Re: [flexcoders] 
  Adobe Resources
  
  
  When the Flex 2 product line was released, the livedocs pages that were on 
  labs were migrated to the official livedocs site. Because there was such 
  a long beta period, you'll find that a lot of web sites linked to the labs 
  livedocs, and now those links are no longer valid.You can correct the 
  documentation by hand with a little bit of URL-rewriting. For example, 
  http://livedocs.macromedia.com/labs/1/flex/langref/index.html...becomes...http://livedocs.macromedia.com/flex/2/langref/index.htmlAll 
  of the livedocs links may not be as straightforward as the above to get them 
  working, but hopefully you get the idea. It would've been nice if the 
  URLs would automatically rewrite themselves to point to the new documentation 
  to avoid the numerous 404 errors that you may be 
  seeing-dflexnewbie06 wrote: 
  

I just need to say it seems that every page I need to access on the 
Adobe livedocs is missing...this is very frustrating. Sorry folks, 
needed to see if others are experiencing this also.
  
__._,_.___





--
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] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tim Hoff
Hi Tom,

Thanks for the info.  This is more of a CF question, but the CF-Flex 
connection should afford a little bit of room here.  Does CF support 
what is called, distributed partitioned views like SQL Server?  
This allows you to create several small databases with the same 
structure that can be viewed as a single master database if 
desired.  This is an essential feature for me.  By segregating 
customer data into separate databases, the performance, by not 
having to weed through the entire database, is dramatically 
increased.  In addition, for top level functionality, all of the 
customer databases can be queried as one.  The reason that I ask, is 
that several of my master tables can have multi-million records.  
Add to that a couple joins of these tables and the server has the 
potential to crawl.  If CF has this feature, I will definitely 
consider switching; due to its tight integration with Flex.

Thanks,
Tim Hoff

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

 --- In flexcoders@yahoogroups.com, Kevin Mulvihill kmulvihill@
 wrote:
 
  Hi all,
   
  What do you all recommend for backend server-side technology to 
work
 with
  Flex? I'm planning on some work with MySQL and not particularly
 interested
  in .NET.
 
 Hi Kevin,
 
 I would say that you should look at ColdFusion MX 7.0.2 as the 
premier
 server side technology that closely integrates with Flex 2.
 
 Some advantages
 - Application Wizard gives you a working Flex/CF app in minutes.
 - Tight integration with the FDS Messaging and Data Mangement 
features
 - Easy to use Flash Remoting support allows you to invoke 
ColdFusion
 Components
 - Its ColdFusion!  The fastest, simplest and most productive server
 side scripting technology around.
 
 Disclaimer: I am (very) biased.
 
 --
 Tom Jordahl
 Adobe ColdFusion Team







--
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] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Andrew Trice












Just want to make sure everyone is on the
same wavelength here ColdFusion is an application server, not a
database. You can have ColdFusion running with SQL Server, MySQL, Oracle, etc
ColdFusion can take advantage of this feature if you database will handle it.



Although Im not on the ColdFusion
team, I agree with Tom. ColdFusion is an extremely easy to use and productive server
technology and it integrates very well with Flex.



-Andy





_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com



Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Monday, July 17, 2006 5:09
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex and
Server-Side Technology Recommendations











Hi Tom,

Thanks for the info. This is more of a CF question, but the CF-Flex 
connection should afford a little bit of room here. Does CF support 
what is called, distributed partitioned views like SQL Server? 
This allows you to create several small databases with the same 
structure that can be viewed as a single master database if 
desired. This is an essential feature for me. By segregating 
customer data into separate databases, the performance, by not 
having to weed through the entire database, is dramatically 
increased. In addition, for top level functionality, all of the 
customer databases can be queried as one. The reason that I ask, is 
that several of my master tables can have multi-million records. 
Add to that a couple joins of these tables and the server has the 
potential to crawl. If CF has this feature, I will definitely 
consider switching; due to its tight integration with Flex.

Thanks,
Tim Hoff

--- In [EMAIL PROTECTED]ups.com,
Tom Jordahl [EMAIL PROTECTED]. 
wrote:

 --- In [EMAIL PROTECTED]ups.com,
Kevin Mulvihill kmulvihill@
 wrote:
 
  Hi all,
  
  What do you all recommend for backend server-side technology to 
work
 with
  Flex? I'm planning on some work with MySQL and not particularly
 interested
  in .NET.
 
 Hi Kevin,
 
 I would say that you should look at ColdFusion MX 7.0.2 as the 
premier
 server side technology that closely integrates with Flex 2.
 
 Some advantages
 - Application Wizard gives you a working Flex/CF app in minutes.
 - Tight integration with the FDS Messaging and Data Mangement 
features
 - Easy to use Flash Remoting support allows you to invoke 
ColdFusion
 Components
 - Its ColdFusion! The fastest, simplest and most productive server
 side scripting technology around.
 
 Disclaimer: I am (very) biased.
 
 --
 Tom Jordahl
 Adobe ColdFusion Team







__._,_.___





--
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] Debugging Java remote Objects in Eclipse

2006-07-17 Thread thunderstumpgesatwork
 Hi guys,

The following URL used to point to a WIKI page that described the
steps for setting up Eclipse to launch the integrated JRun flex server
in debug mode so that it is able to debug server-side java code.

http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:Debugging

Where is this information now? It says that all of this has been moved
to the release site, but I can't find it now.

thanks,
Thunder Stumpges






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




[flexcoders] Re: Issue with DragEvents

2006-07-17 Thread Joshua Garnett



I've found the source of my problem. The component is working properly. The issue had to do with hidden TitleWindow pop ups I had. This brings up another issue though. Why are PopUps that have their visibility set to false capturing dragEvents? Is there some way to keep the pop ups from capturing events when they aren't visible?
--JoshOn 7/17/06, Joshua Garnett 

[EMAIL PROTECTED] wrote:
I'm trying to capture the dragEnter event in a VBox container, but the event will only fire if the mouse is placed over an empty area of the Vbox. If the mouse is placed over an area that is filled (label, etc..) it doesn't want to fire. Is there a way to enable bubbling of DragEvents? or perhaps a better way to structure my component so it will receive the dragEnter event even if the mouse is placed over a sub-component?
Thanks,--Josh





__._,_.___





--
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] Style Inheritance

2006-07-17 Thread JesterXL
How do you ensure itemRenderers, inline and not, inherit styles?

For example, I'm using haloSilver for my Application, but the TileList and 
List aren't listening because of their itemRenderers.

--JesterXL 



 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Re: Issue with DragEvents

2006-07-17 Thread JesterXL





Maybe remove 'em from the displaylist? You 
can either do it with a state, such as RemoveChild, or remove it from the 
parentDocument.

- Original Message - 
From: Joshua 
Garnett 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 17, 2006 4:48 PM
Subject: [flexcoders] Re: Issue with DragEvents
I've found the source of my problem. The component is 
working properly. The issue had to do with hidden TitleWindow pop ups I 
had. This brings up another issue though. Why are PopUps that have 
their visibility set to false capturing dragEvents? Is there some way to 
keep the pop ups from capturing events when they aren't visible? 
--Josh
On 7/17/06, Joshua 
Garnett  
[EMAIL PROTECTED] wrote:

  I'm trying to capture the dragEnter event in a VBox container, but the 
  event will only fire if the mouse is placed over an empty area of the 
  Vbox. If the mouse is placed over an area that is filled (label, etc..) 
  it doesn't want to fire. Is there a way to enable bubbling of 
  DragEvents? or perhaps a better way to structure my component so it will 
  receive the dragEnter event even if the mouse is placed over a sub-component? 
  Thanks,--Josh 
__._,_.___





--
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] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Tim Hoff
Thanks Andy,

So CF would replace ASP.Net as the middle tier.  I have no exposure 
to CF, so that clears things up a bit.  But, no native databases in 
CF?

-TH

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

 Just want to make sure everyone is on the same wavelength here...
 ColdFusion is an application server, not a database.  You can have
 ColdFusion running with SQL Server, MySQL, Oracle, etc...  
ColdFusion
 can take advantage of this feature if you database will handle it.
 
  
 
 Although I'm not on the ColdFusion team, I agree with Tom.  
ColdFusion
 is an extremely easy to use and productive server technology and it
 integrates very well with Flex.
 
  
 
 -Andy
 
  
 
 _
 
 Andrew Trice
 
 Cynergy Systems, Inc.
 
 http://www.cynergysystems.com
 
  
 
 Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
 
 Email: [EMAIL PROTECTED]
 
 Office: 866-CYNERGY 
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Tim Hoff
 Sent: Monday, July 17, 2006 5:09 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Flex and Server-Side Technology
 Recommendations
 
  
 
 Hi Tom,
 
 Thanks for the info. This is more of a CF question, but the CF-
Flex 
 connection should afford a little bit of room here. Does CF 
support 
 what is called, distributed partitioned views like SQL Server? 
 This allows you to create several small databases with the same 
 structure that can be viewed as a single master database if 
 desired. This is an essential feature for me. By segregating 
 customer data into separate databases, the performance, by not 
 having to weed through the entire database, is dramatically 
 increased. In addition, for top level functionality, all of the 
 customer databases can be queried as one. The reason that I ask, 
is 
 that several of my master tables can have multi-million records. 
 Add to that a couple joins of these tables and the server has the 
 potential to crawl. If CF has this feature, I will definitely 
 consider switching; due to its tight integration with Flex.
 
 Thanks,
 Tim Hoff
 
 --- In flexcoders@yahoogroups.com mailto:flexcoders%
40yahoogroups.com
 , Tom Jordahl tjordahl@ 
 wrote:
 
  --- In flexcoders@yahoogroups.com
 mailto:flexcoders%40yahoogroups.com , Kevin Mulvihill 
kmulvihill@
  wrote:
  
   Hi all,
   
   What do you all recommend for backend server-side technology 
to 
 work
  with
   Flex? I'm planning on some work with MySQL and not particularly
  interested
   in .NET.
  
  Hi Kevin,
  
  I would say that you should look at ColdFusion MX 7.0.2 as the 
 premier
  server side technology that closely integrates with Flex 2.
  
  Some advantages
  - Application Wizard gives you a working Flex/CF app in minutes.
  - Tight integration with the FDS Messaging and Data Mangement 
 features
  - Easy to use Flash Remoting support allows you to invoke 
 ColdFusion
  Components
  - Its ColdFusion! The fastest, simplest and most productive 
server
  side scripting technology around.
  
  Disclaimer: I am (very) biased.
  
  --
  Tom Jordahl
  Adobe ColdFusion Team
 







 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] State vars: good, bad, ugly?

2006-07-17 Thread Ralf Bokelberg
There are certainly other methods to achieve the same effect, but this
MVC approach fits best with frameworks like cairngorm, which already
leverage MVC to great extend. Why would we want to introduce another
mechanism? This just complicates things.

 To me, state is something only View's care about, and thus I'd prefer to
 keep those details out of the ModelLocator

State clearly belongs to the model. It's just that Flex blurs this
line a little bit, because views are never destroyed, so they can have
a state on their own.

As for enhancements to your code:
You could make it typesafe by creating a class for your state
variable. Also the constants should go into this class, and not into
the model locator.

Cheers,
Ralf.



On 7/17/06, JesterXL [EMAIL PROTECTED] wrote:
 'cause ya' gotta keep track of 'em.  I'd much rather have state encapsulated
 away, and it just magically knows when to change.

 One way in Flex 2 is to:
 - put a set of state variables on ModelLocator like the below
 - bind your View's currentState to the ModelLocator's
 currentSometingRelevantState
 - build your View to implement some or all of those states.  (ex. User
 signed in, user auth failed, data retrieved, loading, etc.)
 - when the binded state changes, so does your View
 - dispatch events via Cairngorm's event dispatcher, and have your Commands
 change the current state on the ModelLocator
 - your view's will update

 I don't want to code things like the above because of the whole having
 commands change the state, but I'd do it if you put a gun to my head.

 There are various other ways to, like using the binding tag in your View to
 bind to things that aren't necessarely state related on the ModelLocator,
 but DO affect your View's state.  You can bind to setters for example, and
 since setters are basically functions, you can run all kinds of magic beyond
 the simple currentState = some different state.

 To me, state is something only View's care about, and thus I'd prefer to
 keep those details out of the ModelLocator, and allow the View's to handle
 the changes themselves like described above.  That could change tomorrow,
 though.


 - Original Message -
 From: ben.clinkinbeard [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Monday, July 17, 2006 3:27 PM
 Subject: [flexcoders] State vars: good, bad, ugly?


 As I perused the great sample app Jesse put together
 (http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html),
 I came across his simultaneous implementation and criticism of state
 vars inside ModelLocator.

 // only do this if you have a 4 hour deadline;
 // some people think state vars are good.  I think
 // they are evil... but man, they sure work in a pinch.
 public static const STATE_READY:String = ready;
 public static const STATE_SEARCHING:String = searching;
 public static const STATE_DONE:String = done;

 I need to implement something similar in my app as basically the whole
 thing resides inside a TabNavigator. I would like a simple, reliable
 way to direct the app to change states/tabs and this seems like a
 decent approach. What are people's opinions on this approach? Have a
 better alternative? Jesse, can you expound on why you think they're evil?

 Thanks,
 Ben







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










-- 
Ralf Bokelberg [EMAIL PROTECTED]
Flex  Flash Consultant based in Cologne/Germany


 Yahoo! Groups Sponsor ~-- 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Change graphical skin of a button control at runtime?

2006-07-17 Thread Lance Linder












I have been looking into this exact same
thing for the last couple of days and I havent found a way to do it yet
either. Seems like this isnt possible but maybe there is some obscure
way of doing it that I havent tried yet?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of user_abcxyz
Sent: Monday, July 17, 2006 3:34
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Change
graphical skin of a button control at runtime?











Is it possible? I want to allow the user at runtime
can change the 
existent graphical skin of a button, however I am not sure if it's 
possible in Flex. Please help and give me some snippet code to 
demonstrate.

Thank you.






__._,_.___





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



  






__,_._,___






[flexcoders] Re: Change graphical skin of a button control at runtime?

2006-07-17 Thread Tim Hoff



Hi Guys,
You can change styles at run-time by changing the styleName property, or by using setStyle(). Styles can be mxml tags or declared in CSS.mx:Style
.myCustomButton1 {
overIcon:Embed("overIconImage1.gif");
upIcon:Embed(source="upIconImage1.gif");
downIcon:Embed(source="downIconImage1.gif");
}
/mx:Style
mx:Style
.myCustomButton2 {
overIcon:Embed("overIconImage2.gif");
upIcon:Embed(source="upIconImage2.gif");
downIcon:Embed(source="downIconImage2.gif");
}
/mx:Style
mx:Button id="myButton" label="Icon Button" styleName="myCustomButton1"/

Change in AS at run-time:
myButton.styleName = "myCustomButton2";
-TH
--- In flexcoders@yahoogroups.com, "Lance Linder" [EMAIL PROTECTED] wrote: I have been looking into this exact same thing for the last couple of days and I haven't found a way to do it yet either. Seems like this isn't possible but maybe there is some obscure way of doing it that I haven't tried yet?  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of user_abcxyz Sent: Monday, July 17, 2006 3:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Change graphical skin of a button control at runtime?Is it possible? I want to allow the user at runtime can change the  existent graphical skin of a button, however I am not sure if it's  possible in Flex. Please help and give me some snippet code to  demonstrate.  Thank you.

__._,_.___





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



  






__,_._,___



Re: [flexcoders] calculation fields in datagrid

2006-07-17 Thread Ralf Bokelberg



Hi Hank, can't you add a getter to your data object?Cheers,Ralf. On 7/17/06, hank williams [EMAIL PROTECTED]
 wrote:


I want to create a column in a datagrid that doesnt actually exist in the underlying dataProvider but that is calculated based on several values in the dataProvider. I would imagine that somehow I could do this with a custom itemRenderer, but it seems to me an itemRenderer only has access to the data associated with the given column. Is there a way to gain access to the entire rows fields from within an itemRenderer?
Hank




-- Ralf Bokelberg [EMAIL PROTECTED]Flex  Flash Consultant based in Cologne/Germany

__._,_.___





--
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] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Marcelo de Moraes Serpa



What about CakePHP alongside with CakeAMFPHP? It´s AMF0, but I´m very happy with that.On 7/17/06, Tim Hoff [EMAIL PROTECTED]
 wrote:












  



Thanks Andy,

So CF would replace ASP.Net as the middle tier.  I have no exposure 
to CF, so that clears things up a bit.  But, no native databases in 
CF?

-TH

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

 Just want to make sure everyone is on the same wavelength here...
 ColdFusion is an application server, not a database.  You can have
 ColdFusion running with SQL Server, MySQL, Oracle, etc...  
ColdFusion
 can take advantage of this feature if you database will handle it.
 
  
 
 Although I'm not on the ColdFusion team, I agree with Tom.  
ColdFusion
 is an extremely easy to use and productive server technology and it
 integrates very well with Flex.
 
  
 
 -Andy
 
  
 
 _
 
 Andrew Trice
 
 Cynergy Systems, Inc.
 
 http://www.cynergysystems.com
 
  
 
 Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

 
 Email: [EMAIL PROTECTED]
 
 Office: 866-CYNERGY 
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On
 Behalf Of Tim Hoff
 Sent: Monday, July 17, 2006 5:09 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Flex and Server-Side Technology
 Recommendations
 
  
 
 Hi Tom,
 
 Thanks for the info. This is more of a CF question, but the CF-
Flex 
 connection should afford a little bit of room here. Does CF 
support 
 what is called, distributed partitioned views like SQL Server? 
 This allows you to create several small databases with the same 
 structure that can be viewed as a single master database if 
 desired. This is an essential feature for me. By segregating 
 customer data into separate databases, the performance, by not 
 having to weed through the entire database, is dramatically 
 increased. In addition, for top level functionality, all of the 
 customer databases can be queried as one. The reason that I ask, 
is 
 that several of my master tables can have multi-million records. 
 Add to that a couple joins of these tables and the server has the 
 potential to crawl. If CF has this feature, I will definitely 
 consider switching; due to its tight integration with Flex.
 
 Thanks,
 Tim Hoff
 
 --- In flexcoders@yahoogroups.com mailto:
flexcoders%
40yahoogroups.com
 , Tom Jordahl tjordahl@ 
 wrote:
 
  --- In flexcoders@yahoogroups.com

 mailto:flexcoders%40yahoogroups.com , Kevin Mulvihill 

kmulvihill@
  wrote:
  
   Hi all,
   
   What do you all recommend for backend server-side technology 
to 
 work
  with
   Flex? I'm planning on some work with MySQL and not particularly
  interested
   in .NET.
  
  Hi Kevin,
  
  I would say that you should look at ColdFusion MX 7.0.2 as the 
 premier
  server side technology that closely integrates with Flex 2.
  
  Some advantages
  - Application Wizard gives you a working Flex/CF app in minutes.
  - Tight integration with the FDS Messaging and Data Mangement 
 features
  - Easy to use Flash Remoting support allows you to invoke 
 ColdFusion
  Components
  - Its ColdFusion! The fastest, simplest and most productive 
server
  side scripting technology around.
  
  Disclaimer: I am (very) biased.
  
  --
  Tom Jordahl
  Adobe ColdFusion Team
 



  















__._,_.___





--
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] DataGrid component cell data

2006-07-17 Thread Tim Hoff

Hi all,

I've been struggling with this problem for a couple days, so I'm hoping
that someone here can help.  I'm extending DataGrid as a new component. 
The new DataGrid needs to inspect the data in each of the cells to
perform a compare function.  Being new at this, I just need a push in
the right direction.  This is where I'm currently at, but it doesn't
work.

var myDataGridCellData:String;

if (this.listItems != null) myDataGridCellData =
String(this.listItems[curRow][curCol].data);

How do I get at the data in a specific row and column.  Do I need to use
a getter/setter to inherit the data from super?

Any hints that anyone has are greatly appreciated.

Thanks,
Tim Hoff







 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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] Re: Flex and Server-Side Technology Recommendations

2006-07-17 Thread Marcelo de Moraes Serpa



Here´s a relevant link: http://blogs.adobe.com/mikepotter/2006/02/flex_and_php_us.htmlOn 7/17/06, 
Marcelo de Moraes Serpa [EMAIL PROTECTED] wrote:
What about CakePHP alongside with CakeAMFPHP? It´s AMF0, but I´m very happy with that.On 7/17/06, 
Tim Hoff [EMAIL PROTECTED]
 wrote:












  



Thanks Andy,

So CF would replace ASP.Net as the middle tier.  I have no exposure 
to CF, so that clears things up a bit.  But, no native databases in 
CF?

-TH

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

 Just want to make sure everyone is on the same wavelength here...
 ColdFusion is an application server, not a database.  You can have
 ColdFusion running with SQL Server, MySQL, Oracle, etc...  
ColdFusion
 can take advantage of this feature if you database will handle it.
 
  
 
 Although I'm not on the ColdFusion team, I agree with Tom.  
ColdFusion
 is an extremely easy to use and productive server technology and it
 integrates very well with Flex.
 
  
 
 -Andy
 
  
 
 _
 
 Andrew Trice
 
 Cynergy Systems, Inc.
 
 http://www.cynergysystems.com

 
  
 
 Blog: 
http://www.cynergysystems.com/blogs/page/andrewtrice

 
 Email: [EMAIL PROTECTED]
 
 Office: 866-CYNERGY 
 
  
 
 
 
 From: flexcoders@yahoogroups.com
 
[mailto:flexcoders@yahoogroups.com
] On
 Behalf Of Tim Hoff
 Sent: Monday, July 17, 2006 5:09 PM
 To: flexcoders@yahoogroups.com

 Subject: [flexcoders] Re: Flex and Server-Side Technology
 Recommendations
 
  
 
 Hi Tom,
 
 Thanks for the info. This is more of a CF question, but the CF-
Flex 
 connection should afford a little bit of room here. Does CF 
support 
 what is called, distributed partitioned views like SQL Server? 
 This allows you to create several small databases with the same 
 structure that can be viewed as a single master database if 
 desired. This is an essential feature for me. By segregating 
 customer data into separate databases, the performance, by not 
 having to weed through the entire database, is dramatically 
 increased. In addition, for top level functionality, all of the 
 customer databases can be queried as one. The reason that I ask, 
is 
 that several of my master tables can have multi-million records. 
 Add to that a couple joins of these tables and the server has the 
 potential to crawl. If CF has this feature, I will definitely 
 consider switching; due to its tight integration with Flex.
 
 Thanks,
 Tim Hoff
 
 --- In flexcoders@yahoogroups.com
 mailto:
flexcoders%
40yahoogroups.com
 , Tom Jordahl tjordahl@ 
 wrote:
 
  --- In flexcoders@yahoogroups.com


 mailto:flexcoders%
40yahoogroups.com , Kevin Mulvihill 

kmulvihill@
  wrote:
  
   Hi all,
   
   What do you all recommend for backend server-side technology 
to 
 work
  with
   Flex? I'm planning on some work with MySQL and not particularly
  interested
   in .NET.
  
  Hi Kevin,
  
  I would say that you should look at ColdFusion MX 7.0.2 as the 
 premier
  server side technology that closely integrates with Flex 2.
  
  Some advantages
  - Application Wizard gives you a working Flex/CF app in minutes.
  - Tight integration with the FDS Messaging and Data Mangement 
 features
  - Easy to use Flash Remoting support allows you to invoke 
 ColdFusion
  Components
  - Its ColdFusion! The fastest, simplest and most productive 
server
  side scripting technology around.
  
  Disclaimer: I am (very) biased.
  
  --
  Tom Jordahl
  Adobe ColdFusion Team
 



  

















__._,_.___





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



  






__,_._,___



Re: [flexcoders] Re: printing/zooming bugs

2006-07-17 Thread Pan Troglodytes



I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var menu:ContextMenu = new ContextMenu();
 menu.hideBuiltInItems(); contextMenu = menu;On 6/30/06, Daniel Tuppeny [EMAIL PROTECTED]
 wrote:












  




Is there a way to hide the context menu (or at least the zoom part)? We
have a zoomable graph, and if the user right-clicks, they see Zoom,
think it's ours, click it, and then they're stuffed until reloading the
page!
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On
Behalf Of Jason
Sent: 29 June 2006 17:50
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: printing/zooming bugs

Unfortunately, it looks like the Zoom bug is still there in the release
version.  I've entered it into the bug report page.  But be aware.

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


 Before I start talking about bugs, let me just say thanks for the 
 help.  I demoed to the boss today and he was VERY pleased.  Flex was a

 big hit with him.  Hope the release doesn't slip too far behind, as 
 we're looking forward to writing that check! :D
 
 Anyway, I've had a couple of problems that seem to be related.  In 
 Flex 2beta3, whenever I create any app and run it, the Flash player's 
 Zoom options are broken.  Right-click and say Zoom In.  Right-click 
 and the Zoom Out option is not shown.  You can Zoom In more and THEN 
 Zoom Out, but not all the way out.  You're stuck with it zoomed in.
 And you can't pan around.  This doesn't happening using the beta 
 player with non-Flex SWFs.
 
 The printing problem seems similar.  Here's my example app:
 
 ?xml version=1.0 encoding=utf-8? mx:Application 
 xmlns:mx=http://www.adobe.com/2006/mxml
 layout=absolute
   mx:Script
 ![CDATA[
 private function printClick(e:Event):void {
 import flash.printing.PrintJob;
 var myPrintJob:PrintJob = new PrintJob();
 myPrintJob.start() ;
 myPrintJob.addPage(this);
 myPrintJob.send();
 			}
 ]]
   /mx:Script
 
   mx:Button label=Print click=printClick(event) width=481
 x=10 y=10/
   mx:DataGrid y=40 x=10 width=481 
   mx:dataProvider
   mx:ArrayCollection
   mx:source
   mx:Object
   mx:ArtistPavement/mx:Artist
   mx:Price11.99/mx:Price
   mx:AlbumSlanted and Enchanted/mx:Album
   /mx:Object
   mx:Object
   mx:ArtistPavement/mx:Artist
   mx:AlbumBrighten the Corners/mx:Album
   mx:Price11.99/mx:Price
   /mx:Object
   /mx:source
   /mx:ArrayCollection
   /mx:dataProvider
   /mx:DataGrid
 /mx:Application
 
 
 If you click on the print button, you get a zoomed in printed 
 document.  Just like the whole right-click and Zoom In problem.  It's 
 like the player thinks that the normal size is zoomed in.
 
 Can I get some confirmation or denial of the bug?  Or if there's 
 something somehow messed up with my system, let me know.
 
 Thanks.


 Yahoo! Groups Sponsor ~--
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM

--~- 

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

[Inbound Mail Scanned by MessageLabs]

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
 
__

  













-- Jason

__._,_.___





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



  






__,_._,___



  1   2   >