Re: [flexcoders] extending components

2006-05-12 Thread jeremy lu




 login panel, and show the main panel. Or, is
there better ways of accomplishing what I seek? 


yes, I would use events to trigger next screen(view), 
say after login view finished all it's job, dispatch a "loginSuccess"
event and let the underlying Application catch it then switch Main
view, you could also considering using "View State" or viewstack to
more efficiently manage all the views.

you can also take a look at how Cairngorm (a flex framework) handles these kinds of situations.






--
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] A new Kid

2006-05-12 Thread jeremy lu




there are several sample projects in flex sdk, take a look in the install folder.
On 5/13/06, readversetwo <[EMAIL PROTECTED]> wrote:
Can anybody provide some hints on what to do to get acquanted withFlex?A small project that I can start with will be  great idea!Does anybody have the source of a small project that runs successfully?
Thank you.Peace Yahoo! Groups Sponsor ~-->Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/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/







--
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] Does Flex 2 support RPC/literal?

2006-05-12 Thread andrewstuartblah



Hello 

Can anyone help me - I'm trying to work out if Flex support rpc/literal

It seems to support document/literal and rpc/encoded but I can't see
anything about rpc/literal

Thanks in advance

Andrew











--
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] FW: Flex, Hibernate and Coldfusion

2006-05-12 Thread Dimitrios Gianninas






-Original Message-
From: cichlidguru79 [mailto:[EMAIL PROTECTED]
Sent: Fri 5/12/2006 6:44 PM
To: [EMAIL PROTECTED]
Subject: Re: Flex, Hibernate and Coldfusion
 
I am hoping to implement a ColdFusion / Java hybrid application that 
uses POJOs and Hibernate in 

the model, and coldfusion for the view and controller.

I've been thinking about the issues with running hibernate on CF for 
a while and have come up with 

the following idea.


Part 1
--
1. Download the source for the Commons Logging package
2. Create an Eclipse project for it
3. Refactor the base package for commons logging to be:
   cf.org.apache.commons.logging    instead of
   org.apache.commons.logging
4. Build a jar.    cf-commons-logging.jar



Part 2
--
1. Download the souce for Hibernate
2. Create an Eclipse project for it
3. Refactor the base package for Hibernate to be:
   cf.org.hibernate    instead of
   org.hibernate
4. Buidl a jar.   cf-hibernate.jar



Part 3
--
Place the 2 jars you created above, along with all other supporting 
jars where CF can pick them up 

and start/restart ColdFusion!!   Hopefully it will work!!!
(Obviously you won't use the old commons-logging.jar and 
hibernate.jar that you would normally have 

used)



I won't get around to testing this for a while, but thought I'd post 
my idea up here for someone 

else to try in the mean time.  Good thing these are both open source 
projects, or this option 

wouldn't even be available!!

- Kurt


--- In flexcoders@yahoogroups.com, Michael McKellip 
<[EMAIL PROTECTED]> wrote:
>
> Matt,
> 
> Glad to see that someone else would like to see this work. Our 
goals
> may have been slightly different than yours. We were trying to use 
the
> persistence layer and pojo's created with Hibernate in both an
> internal Flex application and re-use it in a public Mach-II
> application. Both our CF and Flex servers run as instances on top 
of
> JRun. Hibernate works wonderfully with Flex and we are extremely 
happy
> with it. CF was another story. We thought we had a workable 
solution.
> However, while our solution worked with J2ee CF and JRun  on a Mac 
OS
> X machine, it did not work with the same version  of CF and JRun on
> Wiindows. We have found one of the major issues is that JRun 
doesn't
> follow the standard servlet spec. There is definitely a classloader
> issue with the JRun/CF combination. We have confirmed a basic bug 
with
> the JRun/CF combination that prevents any java app using the log4j
> logging classes from running within the CF instance. A basic class
> that simply imports the logging classes and trys to do a log can
> confirm it. We filed a bug report with Macromedia with code to
> duplicate the problem but have not received a response.
> 
> We have a huge project and deadline looming and therefore had to
> abandon our effort to use Hiernate with CF at the moment. I am
> confident the same problems will not necessarily exist when using a
> different J2ee app server such as JBoss or even just Tomcat. 
However,
> our company is heavily invested in Macromedia technologies and we
> would have a hard time getting management to approve a switch from
> JRun to something else.
> 
> My co-worker and I will probably join your open-source effort to 
get
> CF and Hibernate working. We may not be extremely active for a 
month
> or so while we finish the project we are in the middle of. I have
> included the steps that got it to work on the Mac OS X JRun/CF 
setup
> below. Good luck!
> 
> ---
> 1. Put the following Hibernate files into
> {application.home}/servers/cfusion/cfusion/WEB-INF/lib directory:
> 
> cglib-full-2.0.2.jar
> commons-collections-2.1.1.jar
> commons-logging-1.0.4.jar
> dom4j-1.4.jar
> ehcache-0.9.jar
> hibernate2.jar
> jta.jar
> odmg-3.0.jar
> 
> DO NOT include the log4j.jar as it will conflict with what CF 
loaded.
> 
> 2. Expand the {application.home}/lib/webservices.jar file. Remove 
the
> "logging" folder from within the org/apache/commons directory.
> Recreate the webservices.jar
>   ie: From within the webservices folder run the following 
command:
>   jar cvf ../webservices.jar *
> 
> 3. Expand the {application.home}/servers/cfusion/cfusion/WEB-
INF/cfusion/lib/webservices.jar
> file. Remove the "logging" folder from within the 
org/apache/commons
> directory. Recreate this webservices.jar
>   ie: From within the webservices folder run the following 
command:
>   jar cvf ../webservices.jar *
> 
> 
> 
> 
> On Thu, 03 Feb 2005 23:05:34 -, mpwoodward2 <[EMAIL PROTECTED]> 
wrote:
> > 
> > 
> > --- In flexcoders@yahoogroups.com, Michael McKellip
> > <[EMAIL PROTECTED]> wrote:
> > > Cathy,
> > >
> > > Success! Thanks very much to you and Peter we have a 
workaround. There
> > > is definitely a classloader issue between CFMX / JRun 4 and the
> > > commons-logging classes.

RE: [flexcoders] Reporting options

2006-05-12 Thread Bill Sahlas










Great, glad to hear Jeff. Here’s
some other details about this feature and implementation in ColdFusion.  Actually,
there are multiple sample apps that ship with ColdFusion.  Here are a couple
other sites and papers with more in-depth discussions around this subject. 
If you’ve already got ColdFusion installed then you’re half way
there.  In the CF Administrator you can get to the samples by going to the
“Getting Started” page. Starting there you can get to the
Application Features section and start up one of the samples.  From the
Getting Started page go to “Explore Real-World Example
Applications” and from there go to Launch Extranet Application and
login using [EMAIL PROTECTED]/demo.   Then click
on the Run Reports and Charts. You’ll see that reports are available in
both PDF and Flash Paper output formats – these are dynamically generated
upon request and are based on “report definitions” that you can
design using a tool called “CF Report Builder” that ship with CF.  It
has a lot of familiar features if you’ve ever used Crystal Reports to
design reports.  

 

Some other starters - Building
Reports with ColdFusion MX 7 by Collin Tobin and Dean
 Harmon. 

And also check out the CF Dev Center for titles
under “Using the ColdFusion Report Builder” - Part 1:
Creating Reports and Subreports and Part
2: Creating Charts in Reports

 

Again, assuming that you’ve got a
copy of ColdFusion MX 7 installed you can find the installer for the CF Report
Builder at \CFIDE\installers, e.g. C:\iPlanet\Servers\docs\CFIDE\installers
and it’s named CFReportBuilderInstaller.exe.

 

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Krueger
Sent: Friday, May 12, 2006 4:25 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Reporting options



 







actually I found the code example.  Thanks





 





Jeff







- Original Message 
From: Jeff Krueger <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Friday, May 12, 2006 12:20:13 PM
Subject: Re: [flexcoders] Reporting options









Any chance to see the source code for that little app.  Seems kind
of like what I am wanting to do.





 





Thanks





 





Jeff







- Original Message 
From: Bill Sahlas <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Friday, May 12, 2006 9:53:06 AM
Subject: RE: [flexcoders] Reporting options





Hi Jeff – 

 

Here’s much more on the Flex_CF
solution http://www.dcooper.org/blog/client/index.cfm?mode=entry&entry=609B9952-DC57-D79E-83886B7D4E700834

 

Let us know if this helps to get you going
in the right direction, Bill

 









From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Steven Webster
Sent: Friday, May 12, 2006 11:29
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Reporting options



 

Can you give us more insight into what
kind of reporting you want to generate ?  Is it tabular reports, or more
formatted reports (such as invoices) ?  A great deal of the work Adobe
Consulting is doing right now, is leveraging Flex for the user-experience and
data-capture, with Adobe Livecycle as a service-tier technology for the dynamic
generation of PDF documents (note that Livecycle does a great deal more than
just generation of these documents, through the various different Livecycle
server technologies).  There is a very successful marriage between these 2
technologies since the Adobe / Macromedia combination.

 

Depending upon the use-case in your
application, that might be an architecture you consider, and there's certainly
a wealth of experience on this list that can give you insight into combining
Flex and Livecycle together.

 

Other approaches we've seen taken, include
generation of HTML reports using technologies such as JSP, if you are just
looking for tabular reports to be generated.   And of course, you
*can* print from a Flex application, but we have to be careful that
"when all we have is a hammer, everything looks like a nail".

 

Maybe if we understood the print/document
generation/workflow requirements you have, we could propose more specific
approaches.

 

Best wishes,

 

Steven



 




 
  
  
   






Steven
Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh , EH12 9DQ
 , UK
p: +44 (0) 131 338 6108


m: +44 (0) 7917 428
947 
[EMAIL PROTECTED]




   
  
  
  
 


 



 





 







From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Jeff Krueger
Sent: 12 May 2006 15:59
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Reporting
options





Hello,





 





    I was wondering if anyone has any opinions on how to
do reporting in flex.  I am using Flex 1.5.  Couple of options I have
thought of.





 





Just return the results in a grid, but I have read in 

[flexcoders] A new Kid

2006-05-12 Thread readversetwo



Can anybody provide some hints on what to do to get acquanted with 
Flex?

A small project that I can start with will be  great idea!
Does anybody have the source of a small project that runs successfully?

Thank you.
Peace










--
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] need help for rpc service

2006-05-12 Thread nmsflex



hi everyone!

i have the list of web service api i develop in .net ( c# ) now i have 
to develop the client side to hook it up. Can i using flex data 
service to integration with my .net web service api if it can doable 
can anyone give me example for any resources for tutorial how to do 
that, or i have to use rpc service to implement that.

my english so bad.











--
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: DataGridColumn Style

2006-05-12 Thread Scott Romer



Just out of curiousity.. are you adding the double-period before the
class name ("..headerStyle").  When I posted it, it should have only
been one period.  i.e. ".headerStyle"   It looks like Yahoo is doing
something funny with it.

Anyway..  if you know that your style.css is being included properly
it should work, but it might be best in this case to start with it in
the *.mxml to first validate the style is correct.   One thing that I
noticed differently was how you also had "dashes" on your
alternating-row-colors and header-colors.  I think that is incorrect.
  As an example, look in \Flex SDK
2.0\frameworks\defaults.css   For DataGrid it has:

DataGrid
{
  alternatingItemColors: #F7F7F7, #FF;
  headerColors: #FF, #E6E6E6;
    [I removed a bunch of other styles here]
}

This was copied from the Beta 3 version.

Thanks.


--- In flexcoders@yahoogroups.com, "Mehdi, Agha" <[EMAIL PROTECTED]> wrote:
>
> I have this in my style.css
> 
> DataGrid
> {
>   alternating-row-colors:#FF, #EFEFEF;
>   header-colors:#4A8AC0, #4A8AC0;
>   headerStyleName:"headerStyle";
> }
> ..headerStyle
> {
> fontWeight:"bold";
>   fontSize:10;
>   color:#FF;
> }
> 
> And it doesn't work. Do I need to set DataGrid attribute of
headerStyle to
> this class?
> 
> Thanks
> 
> Agha Mehdi
> IDT - eBusiness Program Manager
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Scott Romer
> Sent: Thursday, May 11, 2006 5:31 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: DataGridColumn Style
> 
> That almost works...  perhaps it just needs to be cleaned up a bit. 
> In my mxml file, I included the following:
> 
> 
> DataGrid 
> {
>    headerStyleName:"headerStyle";
>    headerColors:#00,#CCD9E6;
> } 
> ..headerStyle
> {
>    fontWeight:"bold";
>    fontSize:10;
>    color:#ff; 
> }
> 
> 
> NOTE:  It looks like you want the header text to be white.  This code
> (basically Tim's example) now sets the header Text to white, with the
> background of the header showing as a gradient from black to whatever
> color the #CCD9E6 is;
> 
> One other change to Tim's response was the ..gridHeaderStyle, should
> have just be a single .
> 
> Try again.
> 
> --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  wrote:
> >
> > Tim,
> > 
> > That didn't do it.
> > 
> > Agha Mehdi
> > IDT - eBusiness Program Manager
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
> > Behalf Of Tim Hoff
> > Sent: Thursday, May 11, 2006 1:22 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: DataGridColumn Style
> > 
> > You could try something like this:
> > 
> > DataGrid {
> >   headerStyleName:"gridHeaderStyle";
> >   headerColors:#ff,#CCD9E6;
> > }
> > 
> > ..gridHeaderStyle
> > {
> > fontWeight:"bold";
> >   fontSize:10;
> >   color:#00;
> > }
> > 
> > -TH
> > 
> > 
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  
> > wrote:
> > >
> > > Hi all,
> > > 
> > > How can I set the color of text of DataGrid Column Headers?
> > > DataGridColumn{color:#FF;} in .css is not working
> > > 
> > > Thanks
> > > 
> > > Agha Mehdi
> > > IDT - eBusiness Program Manager
> > > Work: 408.284.8239
> > > Cell  : 510.493.0491
> > > Fax  :  408.284.2766
> > >
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > 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



   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] Close a flex app

2006-05-12 Thread Bill Sahlas










Use this version to avoid the
Warning/Prompt

 

    private
function closeApp():void

    {

    //

    var
urlString:String = "_javascript_:window.opener = self; self.close();";

    var
request:URLRequest = new URLRequest(urlString);

    navigateToURL(request,
"_self");    

    }

 









From: Bill Sahlas 
Sent: Friday, May 12, 2006 5:55 PM
To: 'flexcoders@yahoogroups.com'
Subject: RE: [flexcoders] Close a
flex app



 

Try adding this

 

   
private function closeApp():void

   
{

   
//

   
var urlString:String = "_javascript_:self.close()";

   
var request:URLRequest = new URLRequest(urlString);

   
navigateToURL(request, "_self");

   
}

   
   


 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of christopherjdunn
Sent: Friday, May 12, 2006 5:28 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Close a flex
app



 

What i'm looking to do in
f2b3 is create a logout button that closes
the flex app & html windows completly. Is there a simple way of doing
this?

Chris













--
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] Error passing array to java collection Problem

2006-05-12 Thread jfournet



We are trying to pass an action script object array to a java 
collection using remoteObject.   We are using flex 1.5 and jboss.  
Does anyone know if this is supported?   The following is the error 
we get from the jboss log when executing the remoteObject method:


17:49:24,977 INFO  [STDOUT] Info: Deserializing request
  (Message #0 targetURI=administrationFacade.createRemoteNode, 
responseURI=/4)
    (Array #0)
  [0] = (Object #1)
    _flag = "Envelope"
    headers = (Array #2)
  [0] = (Array #3)
    [0] = "ServiceType"
    [1] = false
    [2] = "stateless-class"
  [1] = (Array #4)
    [0] = "Credentials"
    [1] = true
    [2] = (Object #5)
  password = "txmpass"
  userid = "txmadmin"
    data = "" #6)
  [0] = (Typed Object 
#7 'com.bmc.txm.common.data.presentation.dto.remoteNode.facade.RemoteN
odeEntityDTO')
    remoteNodeTypeDTO = (Typed Object 
#8 'com.bmc.txm.common.data.presentation.dto.remoteNode.facade.RemoteN
odeTypeDTO')
  name = "MTA_SENSOR"
    name = "9"
    host = "9"
    tcpipPort = "9"
    remoteNodeStatusDTO = (Typed Object 
#9 'com.bmc.txm.common.data.presentation.dto.remoteNode.facade.RemoteN
odeStatusDTO')
  name = "Active"
    sysConfigParamsCollectionDTO = (Array #10)
  [0] = (Typed Object 
#11 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#12 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "zosSystemName"
    remoteNodeDTO = (Ref #7)
  [1] = (Typed Object 
#13 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#14 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "zosSystemPort"
    remoteNodeDTO = (Ref #7)
  [2] = (Typed Object 
#15 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#16 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "mtaUsername"
    remoteNodeDTO = (Ref #7)
  [3] = (Typed Object 
#17 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#18 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "mtaPassword"
    remoteNodeDTO = (Ref #7)
  [4] = (Typed Object 
#19 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "Enable"
    nameDTO = (Typed Object 
#20 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "mtaCICS"
    remoteNodeDTO = (Ref #7)
  [5] = (Typed Object 
#21 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "Enable"
    nameDTO = (Typed Object 
#22 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "mtaIMS"
    remoteNodeDTO = (Ref #7)
  [6] = (Typed Object 
#23 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#24 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "pollingInterval"
    remoteNodeDTO = (Ref #7)
  [7] = (Typed Object 
#25 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = undefined
    nameDTO = (Typed Object 
#26 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "collectorName"
    remoteNodeDTO = (Ref #7)
  [8] = (Typed Object 
#27 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "9"
    nameDTO = (Typed Object 
#28 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationNameDTO')
  name = "collectorPort"
    remoteNodeDTO = (Ref #7)
  [9] = (Typed Object 
#29 'com.bmc.txm.common.data.presentation.dto.sysConfig.facade.SysConf
igurationParameterDTO')
    value = "Enable"
    nameDTO = (Typed Object 
#30 'com.bmc.txm.common.data.presentation.dto.sysConfig

[flexcoders] Binding: comboBox & contentPath

2006-05-12 Thread sbeladaci





Hello 
Everyone,
 
I'm having some 
difficulties on a specific task: dynamically changing the content of a media 
display contentPath based on a comboBox selection. Any 
advices?
 
Thanks for your 
time,
Steph
 
 
Stephane Beladaci
RIA Flex Designer
[EMAIL PROTECTED]
310-945-5677 voice
866-841-8876 fax
 
https://www.linkedin.com/in/flexdesigner
 





--
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] ViewState Scope Question

2006-05-12 Thread Ethan Miller



Greetings -

I have a custom component using 3 view states to handle a very  
typical search result pattern.

The first state (base state) is a search form. Its submit button sets  
currentState to "result".

The second state (result) is a data grid listing people. Data in the  
first column is linked (linkButton) to the third state (edit), these  
links set currentState to "edit

The third state (edit) is detail on the person clicked on in the  
second state.

Problem is, the links in the second state return the error "Unknown  
state 'edit'".

If, however, I create a button or link in the base state (with the  
exact same click syntax) linking to the to third state, it works.

Seems like the links in the second state aren't aware of their peers...

Ideas?

thanks, ethan








--
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] Close a flex app

2006-05-12 Thread Bill Sahlas










Try adding this

 

    private
function closeApp():void

    {

    //

    var
urlString:String = "_javascript_:self.close()";

    var
request:URLRequest = new URLRequest(urlString);

    navigateToURL(request,
"_self");

    }

        

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of christopherjdunn
Sent: Friday, May 12, 2006 5:28 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Close a flex
app



 

What i'm looking to do in
f2b3 is create a logout button that closes
the flex app & html windows completly. Is there a simple way of doing
this?

Chris












--
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] Populating a List with a list

2006-05-12 Thread Jay



OK I think I am getting closer with this



http://www.adobe.com/2006/mxml">

   
 
 

 
   
 
 
 
 
 
 
 
 
 
 
   
 

 
   
 
form="ordset8daydisin.cfm"/>
 
form="ordset8daydisin.cfm"/>
   

   
 
form="ordset8daydisin.cfm"/>
 
form="ordset8daydisin.cfm"/>
   
 

 
 paddingTop="10" paddingLeft="10" paddingRight="10">

 
 

 
 dataProvider="{mytype.form.tpe}"

change="this.selectedItem=List(event.target).selectedItem"/>

 

 
 

 
 dataProvider="{type.selectedItem.data}"

change="this.new_selectedItem=List(event.target).selectedItem"/>

 
 
 
 
 
     
click="executeSearch(event)"/>
 

 


It still wont POPULATE the second Box but it will post the variable
string in the second box. How do I get this to us that data in the
dataProvider="{type.selectedItem.data}" piece??

any thoughts?










--
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: maxRadius in BubbleChart

2006-05-12 Thread Prashant Balepur



You meant maxRadius on the BubbleChart, not bubbleRadius.  Correct?  
Tried it, works great!  Thanks.

--- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> 
wrote:
>
> 
> 
> 
> Hi Prashant. If you're using BubbleSeries inside a BubbleChart, you
> should set bubbleRadius on the chart itself rather than the 
series. 
> 
> Ely.
> 
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Prashant Balepur
> Sent: Friday, May 12, 2006 10:12 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] maxRadius in BubbleChart and
> 
> Has anyone been able to get the maxRadius property of a 
BubbleSeries to
> 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
>










--
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] extending components

2006-05-12 Thread Gordon Smith










If you are asking "How can a
component access properties and methods on the component it is nested inside?",
the answer is to use the parentDocument property.

 

- Gordon

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug Arthur
Sent: Friday, May 12, 2006 1:23 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] extending
components



 



Hi, 





 





I'm fairly new with Flex. I'm trying to create my own components that I
will use as views. The problem that I face is that each view needs to interact
with other views. When I try to make a component that references ActionScript
in the main template, it does not work. How can I make the component extend the
main template and just act as an include/module? 





 





Rational: I've got a login process that has it's own view and calls to
a cfc, does some AS validation, and then once all is passed, it needs to invoke
another AS function to hide the login panel, and show the main panel. Or, is
there better ways of accomplishing what I seek? 





 





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] Flex Formatters

2006-05-12 Thread Gordon Smith










They don't have an unformat method because
in general formatting isn't a two-way operation. For example, if you format a
Date object you might want the 5/12/2006 part but not the 5:41:15pm part. You
can't get the original Date back because you've thrown away information.

 

The point of a labelFunction in a
list-based component is that what you see displayed on screen can be different
from what is in your dataProvider items. So  to "unformat",  couldn't
you just remove the labelFunction and have the underlying data displayed?

 

- Gordon

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy Sivec
Sent: Friday, May 12, 2006 12:25
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex
Formatters



 

Hello,

I was wondering why formatters don't have an unformat method. do they?. I have
an editable grid and the users want to have excel like formatting and it seems
foolish to me trying to unformat the data once formatted Any help?

Am I missing something here?. 
Thanks,
Valy







New Yahoo! Messenger with Voice. Call
regular phones from your PC and save big. 







--
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] comboBox Problem

2006-05-12 Thread Tim Hoff



This is a little strange.  I have a comboBox below a dataGrid that is 
used to filter the dataGrid.  When I click on the comboBox button, the 
pop-up list fades in (up) and immediatly collapses, making it 
impossible to select a value.  Has anyone else experienced this as 
well?

Thanks,
Tim Hoff










--
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: DataGridColumn Style

2006-05-12 Thread Tim Hoff



Try removing one of the periods before headerStyle it should only 
have one (.headerStyle).

-TH

--- In flexcoders@yahoogroups.com, "Mehdi, Agha" <[EMAIL PROTECTED]> 
wrote:
>
> I have this in my style.css
> 
> DataGrid
> {
>   alternating-row-colors:#FF, #EFEFEF;
>   header-colors:#4A8AC0, #4A8AC0;
>   headerStyleName:"headerStyle";
> }
> ..headerStyle
> {
> fontWeight:"bold";
>   fontSize:10;
>   color:#FF;
> }
> 
> And it doesn't work. Do I need to set DataGrid attribute of 
headerStyle to
> this class?
> 
> Thanks
> 
> Agha Mehdi
> IDT - eBusiness Program Manager
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Scott Romer
> Sent: Thursday, May 11, 2006 5:31 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: DataGridColumn Style
> 
> That almost works...  perhaps it just needs to be cleaned up a 
bit. 
> In my mxml file, I included the following:
> 
> 
> DataGrid 
> {
>    headerStyleName:"headerStyle";
>    headerColors:#00,#CCD9E6;
> } 
> ..headerStyle
> {
>    fontWeight:"bold";
>    fontSize:10;
>    color:#ff; 
> }
> 
> 
> NOTE:  It looks like you want the header text to be white.  This 
code
> (basically Tim's example) now sets the header Text to white, with 
the
> background of the header showing as a gradient from black to 
whatever
> color the #CCD9E6 is;
> 
> One other change to Tim's response was the ..gridHeaderStyle, 
should
> have just be a single .
> 
> Try again.
> 
> --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  
wrote:
> >
> > Tim,
> > 
> > That didn't do it.
> > 
> > Agha Mehdi
> > IDT - eBusiness Program Manager
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> > Behalf Of Tim Hoff
> > Sent: Thursday, May 11, 2006 1:22 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: DataGridColumn Style
> > 
> > You could try something like this:
> > 
> > DataGrid {
> >   headerStyleName:"gridHeaderStyle";
> >   headerColors:#ff,#CCD9E6;
> > }
> > 
> > ..gridHeaderStyle
> > {
> > fontWeight:"bold";
> >   fontSize:10;
> >   color:#00;
> > }
> > 
> > -TH
> > 
> > 
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  
> > wrote:
> > >
> > > Hi all,
> > > 
> > > How can I set the color of text of DataGrid Column Headers?
> > > DataGridColumn{color:#FF;} in .css is not working
> > > 
> > > Thanks
> > > 
> > > Agha Mehdi
> > > IDT - eBusiness Program Manager
> > > Work: 408.284.8239
> > > Cell  : 510.493.0491
> > > Fax  :  408.284.2766
> > >
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > 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



   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] FDS: implementing push

2006-05-12 Thread Tom Bray



I just found a little documentation, but I'd love to see a sample app.  Is there one out there somewhere?
http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/js/html/wwhelp.htm?href="">On 5/12/06, Tom Bray <
[EMAIL PROTECTED]> wrote:OK, now that B3 is out, could someone shed some light on how to implement push using the new APIs?
Thanks,TomOn 4/13/06, Matt Chotin <
[EMAIL PROTECTED]> wrote:

















You use one of the new APIs that will be
coming out in Beta 3 J

  Sorry, no help for B2…

 









From: 

flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 

On Behalf Of Tom Bray
Sent: Sunday, April 09, 2006 6:38
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FDS:
implementing push



 

I understand Data Service destinations and how to keep multiple flex
clients synched up with the same data as long as the only changes to the data
are initiated by the flex clients themselves.  What happens when the data
that those clients need to consume is modified by a server-side process and you
want to push those changes to the client?  Is the Messaging Service required
for that?  Say we're talking about the Contact Manager sample app and
there's some server-side process that modifies one of the contacts and we want
to push that change out to the Flex clients -- at a high level, how is that
done? 

Thanks,

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



   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 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] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle



yeah, essentialy ;-)
On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]> wrote:



so NO UIAF is the joke, but UIAF can be posible right.lol
On 5/13/06, Michael Schmalle <[EMAIL PROTECTED]
> wrote:


Well, It's getting lost in the English translation then.  See
UIAF is an acronym in English, that stands for User Interface
Application Framework.The joke is... I made it up! Or at least 'I' think I made it up. ;-)
So the joke is, there is NO UIAF ;-)Get it?
Peace, Mike
On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]

> wrote: 


really not getting ur Intensionlol

On 5/13/06, Michael Schmalle < [EMAIL PROTECTED]
> wrote: 




Just a joke man,User Interface Application Framework.Just a joke ;-)Peace, Mike

On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]

 > wrote: 



It confusing me UIAF??? can u tell more about??
 
 
 

On 5/12/06, Michael Schmalle < [EMAIL PROTECTED] 
> wrote: 




Hi,Well now that I am just out of afterburnner mode
and the weekend is upon me; I would like to post a url for those
interested in a quick Friday morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some
of you application developers, component devs also, might want to just
check this out. Make sure you click on the two image links. Didn't have
time to put up thumbnails. Thoses images are one little peice of what I
am making. Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. 
--Flexcoders Mailing ListFAQ: 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. 




-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 







-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 





-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 





-- Regards, Jignesh Dodiya 






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




  








-- What goes up, does come down.






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

Re: [flexcoders] FDS: implementing push

2006-05-12 Thread Tom Bray



OK, now that B3 is out, could someone shed some light on how to implement push using the new APIs?Thanks,TomOn 4/13/06, Matt Chotin <
[EMAIL PROTECTED]> wrote:
















You use one of the new APIs that will be
coming out in Beta 3 J
  Sorry, no help for B2…

 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Tom Bray
Sent: Sunday, April 09, 2006 6:38
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FDS:
implementing push



 

I understand Data Service destinations and how to keep multiple flex
clients synched up with the same data as long as the only changes to the data
are initiated by the flex clients themselves.  What happens when the data
that those clients need to consume is modified by a server-side process and you
want to push those changes to the client?  Is the Messaging Service required
for that?  Say we're talking about the Contact Manager sample app and
there's some server-side process that modifies one of the contacts and we want
to push that change out to the Flex clients -- at a high level, how is that
done? 

Thanks,

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



   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 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] Flex2 :: future components :: For a short read

2006-05-12 Thread Jignesh Dodiya



so NO UIAF is the joke, but UIAF can be posible right.lol
On 5/13/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:


Well, It's getting lost in the English translation then.  See UIAF is an acronym in English, that stands for User Interface Application Framework.The joke is... I made it up! Or at least 'I' think I made it up. ;-)
So the joke is, there is NO UIAF ;-)Get it?
Peace, Mike
On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]
> wrote: 


really not getting ur Intensionlol

On 5/13/06, Michael Schmalle < [EMAIL PROTECTED]
> wrote: 




Just a joke man,User Interface Application Framework.Just a joke ;-)Peace, Mike

On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]
 > wrote: 



It confusing me UIAF??? can u tell more about??
 
 
 

On 5/12/06, Michael Schmalle < [EMAIL PROTECTED] 
> wrote: 




Hi,Well now that I am just out of afterburnner mode and the weekend is upon me; I would like to post a url for those interested in a quick Friday morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some of you application developers, component devs also, might want to just check this out. Make sure you click on the two image links. Didn't have time to put up thumbnails. Thoses images are one little peice of what I am making. 
Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. 
--Flexcoders Mailing ListFAQ: 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. 



-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 



-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 






-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- Regards, Jignesh Dodiya 






--
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: DataGridColumn Style

2006-05-12 Thread Mehdi, Agha
Title: RE: [flexcoders] Re: DataGridColumn Style







I have this in my style.css


DataGrid
{
    alternating-row-colors:#FF, #EFEFEF;
    header-colors:#4A8AC0, #4A8AC0;
    headerStyleName:"headerStyle";
}
..headerStyle
{
    fontWeight:"bold";
    fontSize:10;
    color:#FF;
}


And it doesn't work. Do I need to set DataGrid attribute of headerStyle to this class?


Thanks


Agha Mehdi
IDT - eBusiness Program Manager



-Original Message-
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Scott Romer
Sent: Thursday, May 11, 2006 5:31 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: DataGridColumn Style


That almost works...  perhaps it just needs to be cleaned up a bit. 
In my mxml file, I included the following:



DataGrid 
{
   headerStyleName:"headerStyle";
   headerColors:#00,#CCD9E6;
} 
..headerStyle
{
   fontWeight:"bold";
   fontSize:10;
   color:#ff; 
}



NOTE:  It looks like you want the header text to be white.  This code
(basically Tim's example) now sets the header Text to white, with the
background of the header showing as a gradient from black to whatever
color the #CCD9E6 is;


One other change to Tim's response was the ..gridHeaderStyle, should
have just be a single .


Try again.


--- In flexcoders@yahoogroups.com, "Mehdi, Agha" <[EMAIL PROTECTED]> wrote:
>
> Tim,
> 
> That didn't do it.
> 
> Agha Mehdi
> IDT - eBusiness Program Manager
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
> Behalf Of Tim Hoff
> Sent: Thursday, May 11, 2006 1:22 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: DataGridColumn Style
> 
> You could try something like this:
> 
> DataGrid {
>   headerStyleName:"gridHeaderStyle";
>   headerColors:#ff,#CCD9E6;
> }
> 
> ..gridHeaderStyle
> {
> fontWeight:"bold";
>   fontSize:10;
>   color:#00;
> }
> 
> -TH
> 
> 
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  
> wrote:
> >
> > Hi all,
> > 
> > How can I set the color of text of DataGrid Column Headers?
> > DataGridColumn{color:#FF;} in .css is not working
> > 
> > Thanks
> > 
> > Agha Mehdi
> > IDT - eBusiness Program Manager
> > Work: 408.284.8239
> > Cell  : 510.493.0491
> > Fax  :  408.284.2766
> >
> 
> 
> 
> 
> 
> 
> 
> --
> 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 ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/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 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] Close a flex app

2006-05-12 Thread christopherjdunn



What i'm looking to do in f2b3 is create a logout button that closes
the flex app & html windows completly. Is there a simple way of doing
this?

Chris










--
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] Fluorine "Unknown service" error with F2B3/.NET

2006-05-12 Thread Rostislav Siryk










Thank you Lance!

 

This is a good idea to
ask at Fluorine’s list. I’ve just joined them.

 



Sincerely,

Rostislav Siryk
Senior Graphic Designer
Validio Ukraine
















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lance Linder
Sent: Friday, May 12, 2006 8:45 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Fluorine
"Unknown service" error with F2B3/.NET



 

This message might get
more response on the fluorine mailing list http://fluorine.thesilentgroup.com/mailman/listinfo

 

I am using Fluorine V13
and Flex2 B3 without any problems. I haven’t seen this error before but I
suspect Fluorine isn’t able to find your MLA assembly. Was this working
in Flex2 B2?

 

Anyway post this on the
Fluorine list and I am sure others there might have more input.

 

Lance

 









From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rostislav Siryk
Sent: Friday, May 12, 2006 10:10
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Fluorine
"Unknown service" error with F2B3/.NET



 


Hi,

This must be very stupid question but I'm just trying to get my 
"Fluorine + .NET + F2B3" working and got an error:

>>code = SERVER.PROCESSING
>>description = Unknown Service Error: Unknown service type requested
MLA

"MLA" is service type I'm trying to request with following AS3 code: 

>>gateway.call("MLA.MLAComposer", new Responder(onResult, onFault),
"hello")

(I use service mane from Fluorine's Service Browser as 2 stub code:
this.service=new
Service(this.gatewayUrl,null,"MLA.MLAComposer",null,null);


Where I've made my mistake?  


Sincerely,

Rostislav Siryk
Senior Graphic Designer
Validio Ukraine
[EMAIL PROTECTED]












--
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] Reporting options

2006-05-12 Thread Jeff Krueger



actually I found the code example.  Thanks
 
Jeff
- Original Message From: Jeff Krueger <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 12:20:13 PMSubject: Re: [flexcoders] Reporting options




Any chance to see the source code for that little app.  Seems kind of like what I am wanting to do.
 
Thanks
 
Jeff
- Original Message From: Bill Sahlas <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 9:53:06 AMSubject: RE: [flexcoders] Reporting options



Hi Jeff – 
 
Here’s much more on the Flex_CF solution http://www.dcooper.org/blog/client/index.cfm?mode=entry&entry=609B9952-DC57-D79E-83886B7D4E700834
 
Let us know if this helps to get you going in the right direction, Bill
 




From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Steven WebsterSent: Friday, May 12, 2006 11:29 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Reporting options
 
Can you give us more insight into what kind of reporting you want to generate ?  Is it tabular reports, or more formatted reports (such as invoices) ?  A great deal of the work Adobe Consulting is doing right now, is leveraging Flex for the user-experience and data-capture, with Adobe Livecycle as a service-tier technology for the dynamic generation of PDF documents (note that Livecycle does a great deal more than just generation of these documents, through the various different Livecycle server technologies).  There is a very successful marriage between these 2 technologies since the Adobe / Macromedia combination.
 
Depending upon the use-case in your application, that might be an architecture you consider, and there's certainly a wealth of experience on this list that can give you insight into combining Flex and Livecycle together.
 
Other approaches we've seen taken, include generation of HTML reports using technologies such as JSP, if you are just looking for tabular reports to be generated.   And of course, you *can* print from a Flex application, but we have to be careful that "when all we have is a hammer, everything looks like a nail".
 
Maybe if we understood the print/document generation/workflow requirements you have, we could propose more specific approaches.
 
Best wishes,
 
Steven

 












Steven WebsterPractice Director (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh , EH12 9DQ , UKp: +44 (0) 131 338 6108

m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 

 

 

 



From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Jeff KruegerSent: 12 May 2006 15:59To: flexcoders@yahoogroups.comSubject: [flexcoders] Reporting options


Hello,

 

    I was wondering if anyone has any opinions on how to do reporting in flex.  I am using Flex 1.5.  Couple of options I have thought of.

 

Just return the results in a grid, but I have read in the news group that there is a bug when you get around 800 rows in a grid and try to print.

 

Also read about ColdFusions report writer as another alternative.

 

I thought about maybe a thrid party tool that has a html front end and try to include that frontend wrapped inside my applicaiton.  Not sure if I can do that.

 

But has anyone had any good experiences with a reporting setup?

 

Thanks in advance.

 

Jeff Krueger

 --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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
  
  

[flexcoders] NullPointerException on returning a value from a CFC

2006-05-12 Thread Chris Maloney



I posted this over on the Adobe labs forums earlier today before I 
found this list, so I apologize to anyone who reads it twice.  

I'm getting the following error when calling a CFC from Flex 2 beta 
3:
[RPC Fault faultString="java.lang.NullPointerException" 
faultCode="Server.Processing" faultDetail="null"]
  at mx.rpc::AbstractInvoker/
[L=http://www.adobe.com/2006/flex/mx/internal::faultHandler()]
http://www.adobe.com/2006/flex/mx/internal::faultHandler()[/L]
  at mx.rpc::Responder/fault()
  at mx.rpc::AsyncRequest/fault()
  at ::NetConnectionMessageResponder/NetConnectionChannel.as$42
:NetConnectionMessageResponder::statusHandler()
  at mx.messaging::MessageResponder/status()

The CFC simply returns a string "hello" to the Flex app.  


  
    
    
  


My calls in the application are:


destination="ColdFusion">
  


and listAddresses() looks like: 

private function listAddresses(event:ResultEvent):void
{
 Alert.show("executed");
}


I've tried a couple of different return types for the CFC function, 
verified all my cases.  The entry to the log file is written so I 
know it executes all the way into the CFC function.  It seems to be 
some issue with the handling of the return types.

I thought I was going to make progress once I got Flex running and 
finally accessing CFC files (took a complete reinstall of CF and 
Flex CF Connectivity)

Any help would be appreciated.

Regards,
Chris Maloney










--
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] extending components

2006-05-12 Thread Doug Arthur



Hi, 
 
I'm fairly new with Flex. I'm trying to create my own components that I will use as views. The problem that I face is that each view needs to interact with other views. When I try to make a component that references ActionScript in the main template, it does not work. How can I make the component extend the main template and just act as an include/module?

 
Rational: I've got a login process that has it's own view and calls to a cfc, does some AS validation, and then once all is passed, it needs to invoke another AS function to hide the login panel, and show the main panel. Or, is there better ways of accomplishing what I seek?

 
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.



  









[flexcoders] Re: Still More Newbie Questions

2006-05-12 Thread Jay



OK I think I am getting closer with this



http://www.adobe.com/2006/mxml">

  
    
    

    
  
    
    
    
    
    
    
    
    
    
    
  
    

    
  
    
form="ordset8daydisin.cfm"/>
    
form="ordset8daydisin.cfm"/>
  

  
    
form="ordset8daydisin.cfm"/>
    
form="ordset8daydisin.cfm"/>
  
    

    
    paddingTop="10" paddingLeft="10" paddingRight="10">

    
    

    
    dataProvider="{mytype.form.tpe}"
   
change="this.selectedItem=List(event.target).selectedItem"/>

    

    
    

    
    dataProvider="{type.selectedItem.data}"
  
change="this.new_selectedItem=List(event.target).selectedItem"/>

    
    
    
    
    
        
click="executeSearch(event)"/>
    

    


It still wont POPULATE the second Box but it will post the variable
string in the second box. How do I get this to us that data in the 
dataProvider="{type.selectedItem.data}" piece??

any thoughts?

--- In flexcoders@yahoogroups.com, "Jay" <[EMAIL PROTECTED]> wrote:
>
> How do you populate a list with the selection froam another list??
> 
> here is a sample of code for what I mean
> 
> I want to make a selection from list a
> 
> mx:Script>
> 
> 
> 
> 
>   
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>   
> 
> 
> 
>   
> 
> data="">
>   
> 
> 
> 
> paddingTop="10" paddingLeft="10" paddingRight="10">
> 
> 
> 
> 
> 
> dataProvider="{mytype.form.tpe}"  
> change="this.selectedItem=List(event.target).selectedItem"/>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> dataProvider="{mygrps.groups.group}"  
> change="this.selectedItem=List(event.target).selectedItem"/>
> 
> 
> 
> 
> 
>         
> 
> 
> 
> 
> then , and this part sorta works, I want to make a selection ion list
> b and use that to go to the form location.
> 
> Thanks for all your help with these newbie questions
> 
> Jay
>










--
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] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle



Well, It's getting lost in the English translation then.  See UIAF
is an acronym in English, that stands for User Interface Application
Framework.

The joke is... I made it up! Or at least 'I' think I made it up. ;-)

So the joke is, there is NO UIAF ;-)

Get it?

Peace, MikeOn 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]> wrote:



really not getting ur Intensionlol
On 5/13/06, Michael Schmalle <
[EMAIL PROTECTED]> wrote:


Just a joke man,User Interface Application Framework.Just a joke ;-)Peace, Mike

On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]

> wrote: 



It confusing me UIAF??? can u tell more about??
 
 
 

On 5/12/06, Michael Schmalle < [EMAIL PROTECTED]
> wrote: 




Hi,Well now that I am just out of afterburnner mode
and the weekend is upon me; I would like to post a url for those
interested in a quick Friday morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some
of you application developers, component devs also, might want to just
check this out. Make sure you click on the two image links. Didn't have
time to put up thumbnails. Thoses images are one little peice of what I
am making. Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. 
--Flexcoders Mailing ListFAQ: 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. 




-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 





-- Regards, Jignesh Dodiya 






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




  








-- What goes up, does come down.






--
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] Flex2 :: future components :: For a short read

2006-05-12 Thread Jignesh Dodiya



really not getting ur Intensionlol
On 5/13/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:


Just a joke man,User Interface Application Framework.Just a joke ;-)Peace, Mike

On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]
> wrote: 



It confusing me UIAF??? can u tell more about??
 
 
 

On 5/12/06, Michael Schmalle < [EMAIL PROTECTED]
> wrote: 




Hi,Well now that I am just out of afterburnner mode and the weekend is upon me; I would like to post a url for those interested in a quick Friday morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some of you application developers, component devs also, might want to just check this out. Make sure you click on the two image links. Didn't have time to put up thumbnails. Thoses images are one little peice of what I am making. 
Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. 
--Flexcoders Mailing ListFAQ: 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. 



-- Regards, Jignesh Dodiya --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 



-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- Regards, Jignesh Dodiya 






--
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] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle



Just a joke man,

User Interface Application Framework.

Just a joke ;-)

Peace, Mike
On 5/12/06, Jignesh Dodiya <[EMAIL PROTECTED]> wrote:



It confusing me UIAF??? can u tell more about??
 
 
 
On 5/12/06, Michael Schmalle <
[EMAIL PROTECTED]> wrote:


Hi,Well
now that I am just out of afterburnner mode and the weekend is upon me;
I would like to post a url for those interested in a quick Friday
morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some
of you application developers, component devs also, might want to just
check this out. Make sure you click on the two image links. Didn't have
time to put up thumbnails. Thoses images are one little peice of what I
am making.
Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 




-- Regards, Jignesh Dodiya 






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




  








-- What goes up, does come down.






--
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] Flex2 :: future components :: For a short read

2006-05-12 Thread Jignesh Dodiya



It confusing me UIAF??? can u tell more about??
 
 
 
On 5/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:


Hi,Well now that I am just out of afterburnner mode and the weekend is upon me; I would like to post a url for those interested in a quick Friday morning read.
http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/Some of you application developers, component devs also, might want to just check this out. Make sure you click on the two image links. Didn't have time to put up thumbnails. Thoses images are one little peice of what I am making.
Let me know if you have thoughts...Peace, Mike-- What goes up, does come down. --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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. 



-- Regards, Jignesh Dodiya 






--
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] Reporting options

2006-05-12 Thread Jeff Krueger



Steven,
 
    Thanks for the reply.  Our reporting needs are actually both.  We need to dispaly some reports on the screen as an ad hoc reports that just have a couple of columns of data.  For example show all the paid invoices for a vendor.  I think just using flex for this will be ok.  Then there is also a need for more formal reporting of yearly revenue by location.  More summary reports that would be suited for a pdf generation or something like a cystal reports tool.  
 
    Adobe livecycle looks really cool, but might be a little large for what I need to do.
 
Thanks for all you input.
 
Jeff
  - Original Message From: Steven Webster <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 9:29:25 AMSubject: RE: [flexcoders] Reporting options


Can you give us more insight into what kind of reporting you want to generate ?  Is it tabular reports, or more formatted reports (such as invoices) ?  A great deal of the work Adobe Consulting is doing right now, is leveraging Flex for the user-experience and data-capture, with Adobe Livecycle as a service-tier technology for the dynamic generation of PDF documents (note that Livecycle does a great deal more than just generation of these documents, through the various different Livecycle server technologies).  There is a very successful marriage between these 2 technologies since the Adobe / Macromedia combination.
 
Depending upon the use-case in your application, that might be an architecture you consider, and there's certainly a wealth of experience on this list that can give you insight into combining Flex and Livecycle together.
 
Other approaches we've seen taken, include generation of HTML reports using technologies such as JSP, if you are just looking for tabular reports to be generated.   And of course, you *can* print from a Flex application, but we have to be careful that "when all we have is a hammer, everything looks like a nail".
 
Maybe if we understood the print/document generation/workflow requirements you have, we could propose more specific approaches.
 
Best wishes,
 
Steven
 











Steven WebsterPractice Director (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6108
m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 

 




From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff KruegerSent: 12 May 2006 15:59To: flexcoders@yahoogroups.comSubject: [flexcoders] Reporting options


Hello,
 
    I was wondering if anyone has any opinions on how to do reporting in flex.  I am using Flex 1.5.  Couple of options I have thought of.
 
Just return the results in a grid, but I have read in the news group that there is a bug when you get around 800 rows in a grid and try to print.
 
Also read about ColdFusions report writer as another alternative.
 
I thought about maybe a thrid party tool that has a html front end and try to include that frontend wrapped inside my applicaiton.  Not sure if I can do that.
 
But has anyone had any good experiences with a reporting setup?
 
Thanks in advance.
 
Jeff Krueger
 --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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] Reporting options

2006-05-12 Thread Jeff Krueger



Any chance to see the source code for that little app.  Seems kind of like what I am wanting to do.
 
Thanks
 
Jeff
- Original Message From: Bill Sahlas <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 9:53:06 AMSubject: RE: [flexcoders] Reporting options



Hi Jeff – 
 
Here’s much more on the Flex_CF solution http://www.dcooper.org/blog/client/index.cfm?mode=entry&entry=609B9952-DC57-D79E-83886B7D4E700834
 
Let us know if this helps to get you going in the right direction, Bill
 




From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Steven WebsterSent: Friday, May 12, 2006 11:29 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Reporting options
 
Can you give us more insight into what kind of reporting you want to generate ?  Is it tabular reports, or more formatted reports (such as invoices) ?  A great deal of the work Adobe Consulting is doing right now, is leveraging Flex for the user-experience and data-capture, with Adobe Livecycle as a service-tier technology for the dynamic generation of PDF documents (note that Livecycle does a great deal more than just generation of these documents, through the various different Livecycle server technologies).  There is a very successful marriage between these 2 technologies since the Adobe / Macromedia combination.
 
Depending upon the use-case in your application, that might be an architecture you consider, and there's certainly a wealth of experience on this list that can give you insight into combining Flex and Livecycle together.
 
Other approaches we've seen taken, include generation of HTML reports using technologies such as JSP, if you are just looking for tabular reports to be generated.   And of course, you *can* print from a Flex application, but we have to be careful that "when all we have is a hammer, everything looks like a nail".
 
Maybe if we understood the print/document generation/workflow requirements you have, we could propose more specific approaches.
 
Best wishes,
 
Steven

 












Steven WebsterPractice Director (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh , EH12 9DQ , UKp: +44 (0) 131 338 6108

m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 

 

 

 



From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com ] On Behalf Of Jeff KruegerSent: 12 May 2006 15:59To: flexcoders@yahoogroups.comSubject: [flexcoders] Reporting options


Hello,

 

    I was wondering if anyone has any opinions on how to do reporting in flex.  I am using Flex 1.5.  Couple of options I have thought of.

 

Just return the results in a grid, but I have read in the news group that there is a bug when you get around 800 rows in a grid and try to print.

 

Also read about ColdFusions report writer as another alternative.

 

I thought about maybe a thrid party tool that has a html front end and try to include that frontend wrapped inside my applicaiton.  Not sure if I can do that.

 

But has anyone had any good experiences with a reporting setup?

 

Thanks in advance.

 

Jeff Krueger

 --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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] Still More Newbie Questions

2006-05-12 Thread Jay



How do you populate a list with the selection froam another list??

here is a sample of code for what I mean

I want to make a selection from list a

mx:Script>
    
    

    
  
    
    
    
    
    
    
    
    
    
    
  
    

    
  
    
data="">
  
    

    
    paddingTop="10" paddingLeft="10" paddingRight="10">

    
    

    
    dataProvider="{mytype.form.tpe}"  
change="this.selectedItem=List(event.target).selectedItem"/>

    



    
    

    
    dataProvider="{mygrps.groups.group}"  
change="this.selectedItem=List(event.target).selectedItem"/>

    
    
    
    
        
    

    

then , and this part sorta works, I want to make a selection ion list
b and use that to go to the form location.

Thanks for all your help with these newbie questions

Jay










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

2006-05-12 Thread Valy Sivec



Hello,I was wondering why formatters don't have an unformat method. do they?. I have an editable grid and the users want to have excel like formatting and it seems foolish to me trying to unformat the data once formatted Any help?Am I missing something here?. Thanks,Valy
		New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.





--
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] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Darren Houle
You have the actual ServiceLocator file in your folders, so open it up and 
check and to see if the ServiceLocator code in the file is wrapped with an 
outer package {} definition.  If not then the files trying to import that 
class won't find that class in the proper package.

For instance... in the app your building (or in the phones example app) you 
might have a Services.mxml file in the business folder.  The contents are:


http://www.adobe.com/2006/mxml";
xmlns:cairngorm="org.nevis.cairngorm.business.*">




xmlns:cairngorm="org.nevis.cairngorm.business.*" says "look in 
org.nevis.cairngorm.business for the ServiceLocator package."

Meanwhile, the beginning of you ServiceLocator.as file needs to read:

-
package org.nevis.cairngorm.business {

import mx.core.UIComponent;
import mx.rpc.AbstractService;
import mx.rpc.http.HTTPService;

public class ServiceLocator extends UIComponent {
...
-

so that the ServiceLocator class lives inside the 
org.nevis.cairngorm.business package.

If your Services.mxml namespace is wrong it won't be able to find the 
business package, and if the namespace is correct but the ServiceLocator 
isn't IN the business package - wrapped with the package {} definition - 
then the compiler will tell you it can't locate the ServiceLocator.

Make sense?

Darren



>From: "Kevin Roche" <[EMAIL PROTECTED]>
>Reply-To: flexcoders@yahoogroups.com
>To: 
>Subject: RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.
>Date: Fri, 12 May 2006 19:00:02 +0100
>
>Benoit,
>
>That's what I did!   I'm stuck now.
>
>Kevin
>   -Original Message-
>   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>Behalf Of Benoit Hediard
>   Sent: 12 May 2006 14:58
>   To: flexcoders@yahoogroups.com
>   Subject: RE: [flexcoders] Problem with Cairngorm 2 version of Phones 
>app.
>
>
>   You need to unzip all the files in the root folder of a new Flex Builder
>project and compile it.
>   And it should work.
>
>   Benoit Hediard
>
>
>
>
>--
>   De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De 
>la
>part de Kevin Roche
>   Envoyé : vendredi 12 mai 2006 15:47
>   À : flexcoders@yahoogroups.com
>   Objet : RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.
>
>
>   Yes, the file is there but I gues it may not be in the right place. I am
>assuming that placing the whole thing under the place where the mxml file 
>is
>is correct or does it nee to be in some path so that flex can find it?
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>Behalf Of Niklas Richardson
> Sent: 12 May 2006 11:59
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Problem with Cairngorm 2 version of Phones
>app.
>
>
> Stupid question - the file exists?
>
>
>
> On 5/12/06, Kevin Roche <[EMAIL PROTECTED]> wrote:
>   Hi Nik,
>
>   I found the problem, needed to add all the mxml files to the
>application.
>
>   Now I have another problem.
>
>   Error message says:
>
>   Unable to locate specified base class
>'org.nevis.cairngorm.business.ServiceLocator' for component class
>'ApplicationServices'
>
>   I do have the cairngorm directory structure (org.. etc) in the same
>directory as main.mxml.
>
>   Any ideas why its not found?
>
>   Kevin
> -Original Message-
> From: flexcoders@yahoogroups.com
>[mailto:[EMAIL PROTECTED] Behalf Of Niklas Richardson
> Sent: 12 May 2006 11:09
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Problen with Cairngorm 2 version of 
>Phones
>app.
>
>
> Hi Kevin,
>
> Good to see you on here.
>
> Could you post the line(s) in question?  It might be that you need
>to do some
>
> Cheers
>
> Niklas
>
>
>
> On 5/12/06, Kevin Roche <[EMAIL PROTECTED]> wrote:
>   Hi,
>
>   I am having difficult getting the Flex 2 Phones application
>working with
>   Flex2 Beta 2 (Did not want to try Beta3 until it works)
>
>   When I try to save and compile I get the following error:
>
>   Implicit coercion of a value with static type 'Object' to a
>possibly
>   unrelated type 'Array' Line 33 PhoneListGetCommand.as
>
>   Anyone know why or what went wrong?  I am still learning
>ActionScript and
>   cant see quite what is wrong here.
>
>   Kevin Roche
>
>
>
>
>
>
>    Yahoo! Groups
>Sponsor ~-->
>   Protect your PC from spy ware with award winning anti spy
>technology. It's free.
>   http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
>   
>-

RE: [flexcoders] maxRadius in BubbleChart and

2006-05-12 Thread Ely Greenfield






Hi Prashant. If you're using BubbleSeries inside a BubbleChart, you
should set bubbleRadius on the chart itself rather than the series. 

Ely.



-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Prashant Balepur
Sent: Friday, May 12, 2006 10:12 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] maxRadius in BubbleChart and

Has anyone been able to get the maxRadius property of a BubbleSeries to
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



 









--
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: FB2B3: Transfer Focus from custom editor in dataGrid

2006-05-12 Thread Scott Romer



What kind of changes are you referring to for the StateEditor.mxml? 

I believe I need to be able to cancel the event with the
preventDefault method.  My application is much more complex than this
example... The dataField I am using in my application on this column
is actually an object navigation path.  Because I can't specify a
dataField to be myObj.childObj.name, I believe I need to handle it
myself to set the appropriate value.  As for this example, I was just
trying to put forth a smaller test case that originated from the Flex
Docs.

I suppose my VERY UGLY workaround to this is to reimplement finding
the next cell and then dispatching an itemBeginEdit event on that
cell.  But this doesn't seem logical to me in regards to code
maintenance...  although, I feel that later in my code, I am going to
have to reimplement this anyway because of how we are looking to set
the tab focus across datagrids that are positioned next to each other.

Any more ideas would be much appreciated?

Thanks
-scott


--- In flexcoders@yahoogroups.com, "Manish Jethani"
<[EMAIL PROTECTED]> wrote:
>
> On 5/12/06, Scott Romer <[EMAIL PROTECTED]> wrote:
> > I have created a custom editor for my dataGrid.  I am also handling
> > the itemEditEnd event.  When focus exists in a cell in this column and
> > I try to TAB out, I am prevented... In tracing through the code, (in
> > DataGrid.as, I believe I know why.. but not sure if this is a bug or
> > by design).
> 
> Interesting. So cancelling an "itemEditEnd" also prevents the focus
> from moving on.
> 
> Have you tried not cancelling the event and instead making
> modifications to your StateEditor.mxml to make it work the way you
> want?
>










--
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] Reporting options

2006-05-12 Thread Jeff Krueger



I am not sure how to attach the old posting from the group in Yahoo mail.  If you do a search in the flex coder group.  The title of the email is  FB2 :: Flex printing on 4/2/06.
 
Jeff- Original Message From: Tom Chiverton <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Friday, May 12, 2006 9:21:23 AMSubject: Re: [flexcoders] Reporting options>>> On Fri, May 12, 2006 at  3:59 PM, in message<[EMAIL PROTECTED]>,[EMAIL PROTECTED] wrote: > Just return the results in a grid, but I have read in the news groupthat > there is a bug when you get around 800 rows in a grid and try toprint.In what way ?Tom ChivertonThis 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.CONFIDENTIALITYThis 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.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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 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] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Kevin Roche





Benoit,
 
That's what I 
did!   I'm stuck 
now.
 
Kevin

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Benoit 
  HediardSent: 12 May 2006 14:58To: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Problem with 
  Cairngorm 2 version of Phones app.
  You need to unzip all the files in the root 
  folder of a new Flex Builder project and compile it.
  And it should work.
   
  Benoit Hediard
  
  
  De : flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] De la part de Kevin 
  RocheEnvoyé : vendredi 12 mai 2006 15:47À : 
  flexcoders@yahoogroups.comObjet : RE: [flexcoders] Problem 
  with Cairngorm 2 version of Phones app.
  
  Yes, 
  the file is there but I gues it may not be in the right place. I am assuming 
  that placing the whole thing under the place where the mxml file is is correct 
  or does it nee to be in some path so that flex can find 
it?
  
-Original Message-From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED]On Behalf Of Niklas 
RichardsonSent: 12 May 2006 11:59To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with 
Cairngorm 2 version of Phones app.Stupid question - the 
file exists?
On 5/12/06, Kevin 
Roche <[EMAIL PROTECTED]> 
wrote: 

  
  
  Hi 
  Nik,
   
  I found the problem, 
  needed to add all the mxml files to the application.
   
  Now I have another 
  problem.
   
  Error message 
  says:
   
  Unable to locate 
  specified base class 'org.nevis.cairngorm.business.ServiceLocator' for 
  component class 'ApplicationServices'
   
  I do have the cairngorm 
  directory structure (org.. etc) in the same directory as 
  main.mxml.
   
  Any ideas why its not 
  found?
   
  Kevin
  
-Original 
Message-From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]On Behalf Of Niklas 
RichardsonSent: 12 May 2006 11:09To: flexcoders@yahoogroups.comSubject: Re: 
[flexcoders] Problen with Cairngorm 2 version of Phones 
app.Hi Kevin,Good to see you on 
here.Could you post the line(s) in question?  It might be 
that you need to do some CheersNiklas
On 5/12/06, Kevin 
Roche <[EMAIL PROTECTED]> wrote: 
Hi,I 
  am having difficult getting the Flex 2 Phones application working 
  withFlex2 Beta 2 (Did not want to try Beta3 until it 
  works)When I try to save and compile I get the following 
  error:Implicit coercion of a value with static type 'Object' 
  to a possibly unrelated type 'Array' Line 33 
  PhoneListGetCommand.asAnyone know why or what went 
  wrong?  I am still learning ActionScript andcant see 
  quite what is wrong here.Kevin 
  Roche Yahoo! 
  Groups Sponsor ~-->Protect your PC from spy 
  ware with award winning anti spy technology. It's free.http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM 
  ~->--Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search 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/ 
-- 
Niklas RichardsonPrismix LtdUK based Flex and ColdFusion 
Specialists --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
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 . 


-- 
Niklas RichardsonPrismix LtdUK based Flex and ColdFusion 
Specialists 
  





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

RE: [flexcoders] Fluorine "Unknown service" error with F2B3/.NET

2006-05-12 Thread Lance Linder










This message might get more response on
the fluorine mailing list http://fluorine.thesilentgroup.com/mailman/listinfo

 

I am using Fluorine V13 and Flex2 B3
without any problems. I haven’t seen this error before but I suspect
Fluorine isn’t able to find your MLA assembly. Was this working in Flex2
B2?

 

Anyway post this on the Fluorine list and
I am sure others there might have more input.

 

Lance

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rostislav Siryk
Sent: Friday, May 12, 2006 10:10
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Fluorine
"Unknown service" error with F2B3/.NET



 


Hi,

This must be very stupid question but I'm just trying to get my 
"Fluorine + .NET + F2B3" working and got an error:

>>code = SERVER.PROCESSING
>>description = Unknown Service Error: Unknown service type requested
MLA

"MLA" is service type I'm trying to request with following AS3 code: 

>>gateway.call("MLA.MLAComposer", new Responder(onResult,
onFault),
"hello")

(I use service mane from Fluorine's Service Browser as 2 stub code:
this.service=new
Service(this.gatewayUrl,null,"MLA.MLAComposer",null,null);


Where I've made my mistake?  


Sincerely,

Rostislav Siryk
Senior Graphic Designer
Validio Ukraine
[EMAIL PROTECTED]











--
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: F2B3: Placing sort arrow on dataGrid

2006-05-12 Thread Scott Romer



The sorting of the collection is done in the headerReleaseEvent.  I'd
love to try the updateSortIndexAndDirection method of DataGrid.as, but
that is marked private in beta 3 source.  I even tried to call the
method in case the source was incorrect.  But it looks like I don't
have access to it.  

On the flip side, I was able to see that the modelChangedHandler() in
DataGrid does call the updateSortIndexAndDirection() for me.  However,
this does not work if we want secondary and tertiary sorting. (per
example from doc mentioned before). In the
vupdateSortIndexAndDirection() method, it checks to see if you have
more than one field specified in the sort.  If so, then basically
break out and leave the sortIndex variable at -1 resulting in no sort
arrow appearing.  Couldn't this have just put the arrow on the first
sortField rather than stopping?

So for now, if I want a sort arrow, I can only support sorting on a
single field (or I need to reimplement how the placeSortArrow()..)  My
preference is to not reimplement.  If you have other ideas, they are
much appreciated.

Thanks,
-scott


--- In flexcoders@yahoogroups.com, "Manish Jethani"
<[EMAIL PROTECTED]> wrote:
>
> On 5/12/06, Scott Romer <[EMAIL PROTECTED]> wrote:
> > I am working on a version of adding generic sorting on my class that
> > extends DataGrid.  The "placeSortArrow" method of DataGrid is marked
> > as protected, so I can call the method, but the arrow will never show
> > up because sortIndex has to be set and is marked private.  In
> > addition, I can't set some of the other needed variables (i.e.
> > sortDirection on the dataGrid).
> 
> For the sort arrow to show up, you have to actually sort the
> collection. See the updateSortIndexAndDirection method in DataGrid.as
>










--
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] Flex2/SWFObject

2006-05-12 Thread Carlos Rovira



I was thinking about the way flex2 manage embeding in SWF content in HTML, expresinstall, and so on, and asking me if Adobe has plans of change the actual script for  SWFObject or it works well with IE eolas update patch. Someone knows something about this question?
Thanks.-- ::| Carlos Rovira::| http://www.carlosrovira.com






--
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] maxRadius in BubbleChart and

2006-05-12 Thread Prashant Balepur



Has anyone been able to get the maxRadius property of a BubbleSeries 
to 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



   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] Horizonatal Alignment of Item Renderers in DataGrid Columns

2006-05-12 Thread fnfethan



Gretings -

Question: while TextAlign, works fine for controlling the horizontal
alignment of plain text in a column of a datagrid, an itemRenderer (a
checkbox in this case, specififed as an attribute of DataGridColumn)
seems impervious to the textalign value, and aligns hard left. I'd
like it centered. 

Here's the code in question:

              
textAlign="center"
            
editable="true" 
                dataField="Chosen" 
                rendererIsEditor="true"
                itemRenderer="mx.controls.CheckBox"
                editorDataField="selected"/>              

Any ideas?  

cheers, ethan










--
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: problems with ApplicationControlBar ...

2006-05-12 Thread Stephen Gilson



borderStyle is not listed as a valid style of ApplicationControlBar.

Stephen  

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Manish Jethani
Sent: Thursday, May 11, 2006 1:31 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: problems with ApplicationControlBar ...

On 5/11/06, bobpardoe1959 <[EMAIL PROTECTED]> wrote:

> If you set the borderstyle to "applicationControlBar" it all works as 
> expected, set the borderstyle to "default" and you get a black 
> background, set it to "solid" and the colour is blue in my case

Setting "borderStyle" on ApplicationControlBar is not supported. What do
the docs say?


 Yahoo! Groups Sponsor ~-->
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/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



   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] Possible to know when list finishes populating?

2006-05-12 Thread sufibaba



Hello,

Does anyone know if the List or Tree Control fires an Event when it
finishes loading data from an XML source? 

Cheers,

Tim









--
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: update data through data service

2006-05-12 Thread deepu_verma



What I found was that the dataservice is not updated if i use
fileCollection.setItemAt(obj,index); to update the array collection
If I am manually updating the arraycollection and then commiting then
everything works fine
fileCollection[index].name= obj.name;
So, what is the correct and easier method to update the Arraycollection

--- In flexcoders@yahoogroups.com, "deepu_verma" <[EMAIL PROTECTED]> wrote:
>
> I am using the following code to update the Arraycollection binding
> with the Dataservice
> And I get the error variable x is not defined
> What I understand is the updated collection is not going to coldfusion
> co.isUpdate() is returning false.
> What am I missing?
> Thanks
> 
> 
> Flex code
> ===
> 
>  public function modifyItem(obj:ProductFileDetail,index:Number):void
>      {
>        fileCollection.setItemAt(obj,index)  ;
>      } 
> 
> And my cfm code is
> ===
> 
>     
> 
>     
>     
> 
>     
>     
>       
>       
>         
>       
>         
>       
>       
>     
> 
>     
>     
>   
> 
> The flex server dump displays the following after updating the 
> arraycollection content
> 
>  [1] = (Typed Object #8 'flex.data.messages.DataMessage')
>    operation = 0
>    body = (Typed Object #9 'downloads.softwarepublishingtool.vo.ProductF
> l')
>  language = "Portuguese (Brazilian)"
>  createdDate = null
>  createdBy = 1
>  status = "INACTIVE"
>  platformCode = "J2EE"
>  productName = "Authorware 1.1"
>  fileSize = 1
>  downloadTypeId = 1
>  fileType = ""
>  fileUrl = "test"
>  sku = "4"
>  productVersionId = 1
>  modifiedBy = 0
>  localeCode = "PT_BR"
>  id = 15
>  modifiedDate = Thu May 11 17:40:16 GMT+05:30 2006
>  11 17:40:16 GMT+05:30 2006
>  uid = "B79B31BD-4EAF-0AE6-DC83-235ABC13B518"
>    identity = (Object #11)
>  id = 15
>    correlationId = "D73884ED-B4A9-D4B7-37D4-235ABC1D10A0"
>    destination = "file"
>    timestamp = 0
>    body = (Ref #9)
>    clientId = "34D1A8DC-3A95-D6FB-96B6-234C0AF48C22"
>    timeToLive = 0
>    messageId = "16C1884E-ED22-2E3B-3C84-235ABC132DA8"
>    headers = (Object #12)
>  [2] = (Typed Object #13 'flex.data.messages.UpdateCollectionMessage')
>    updateMode = 0
>    replace = false
>    collectionId = (Array #14)
>  [0] = 1
>  [1] = 1
>    operation = 17
>    body = (Array #15)
>  [0] = (Typed Object #16 'flex.data.messages.UpdateCollectionRange')
>    identities = (Array #17)
>  [0] = "DE4975A3-5BF5-446E-93DA-234D2514BFA3"
>    position = 6
>    updateType = 1
>  [1] = (Typed Object #18 'flex.data.messages.UpdateCollectionRange')
>    identities = (Array #19)
>  [0] = "16C1884E-ED22-2E3B-3C84-235ABC132DA8"
>    position = 6
>    updateType = 0
>    identity = null
>    correlationId = "D73884ED-B4A9-D4B7-37D4-235ABC1D10A0"
>    destination = "file"
>    timestamp = 0
>    body = (Ref #15)
>    clientId = "312E4B57-0B0E-C9C6-000E-638064C18F69"
>    timeToLive = 0
>    messageId = "63D3212C-DB5A-2A9B-641D-235ABC1354D6"
>    headers = (Object #20)
>











--
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] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Darren Houle
Alternatively you could unzip them anywhere and "import" the files into a 
new, empty F2B3 project.  I had to do that with a bunch of Cg.99 and Cg2 
samples to get them to work.

Also, just about every sample Cg app I've run across has something in it 
somewhere that won't compile in F2B2&3... Link instead of LinkButton... 
coersion of UIComponent into possibly unrelated Container... the 
www.macromedia.com/2005/mxml and http://www.iterationtwo.com/cairngorm 
namespaces... can't find ServiceLocator the Cg.99 code not residing in 
packages (which AS 3 requires) stopping the IDE from being able to find them 
when I'm lookin right at 'em.  There hasn't been a single Cg sample app 
that's worked OOTB for me without having to change something (even the Cg2 
CairngormLogin example needs tweaking.)

"Beta" is certainly fun, but it can be awfully frustrating at times too :-)

Darren



>From: "Benoit Hediard" <[EMAIL PROTECTED]>
>Reply-To: flexcoders@yahoogroups.com
>To: 
>Subject: RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.
>Date: Fri, 12 May 2006 15:57:44 +0200
>
>You need to unzip all the files in the root folder of a new Flex Builder
>project and compile it.
>And it should work.
>
>Benoit Hediard
>
>   _
>
>De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
>part de Kevin Roche
>Envoyé : vendredi 12 mai 2006 15:47
>À : flexcoders@yahoogroups.com
>Objet : RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.
>
>
>Yes, the file is there but I gues it may not be in the right place. I am
>assuming that placing the whole thing under the place where the mxml file 
>is
>is correct or does it nee to be in some path so that flex can find it?
>
>-Original Message-
>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>Behalf Of Niklas Richardson
>Sent: 12 May 2006 11:59
>To: flexcoders@yahoogroups.com
>Subject: Re: [flexcoders] Problem with Cairngorm 2 version of Phones app.
>
>
>Stupid question - the file exists?
>
>
>
>On 5/12/06, Kevin Roche <[EMAIL PROTECTED]> wrote:
>
>Hi Nik,
>
>I found the problem, needed to add all the mxml files to the application.
>
>Now I have another problem.
>
>Error message says:
>
>Unable to locate specified base class
>'org.nevis.cairngorm.business.ServiceLocator' for component class
>'ApplicationServices'
>
>I do have the cairngorm directory structure (org.. etc) in the same
>directory as main.mxml.
>
>Any ideas why its not found?
>
>Kevin
>
>-Original Message-
>From: flexcoders@yahoogroups.com  
>[mailto:[EMAIL PROTECTED] Behalf Of Niklas Richardson
>Sent: 12 May 2006 11:09
>To: flexcoders@yahoogroups.com
>Subject: Re: [flexcoders] Problen with Cairngorm 2 version of Phones app.
>
>
>Hi Kevin,
>
>Good to see you on here.
>
>Could you post the line(s) in question?  It might be that you need to do
>some
>
>Cheers
>
>Niklas
>
>
>
>On 5/12/06, Kevin Roche <[EMAIL PROTECTED]> wrote:
>
>Hi,
>
>I am having difficult getting the Flex 2 Phones application working with
>Flex2 Beta 2 (Did not want to try Beta3 until it works)
>
>When I try to save and compile I get the following error:
>
>Implicit coercion of a value with static type 'Object' to a possibly
>unrelated type 'Array' Line 33 PhoneListGetCommand.as
>
>Anyone know why or what went wrong?  I am still learning ActionScript and
>cant see quite what is wrong here.
>
>Kevin Roche
>
>
>
>
>
>
>
>--
>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
>
>
>
>
>
>
>
>
>
>
>
>
>--
>Niklas Richardson
>Prismix Ltd
>
>UK based Flex and ColdFusion Specialists
>
>--
>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
>+design+development&w2=Computer+software+development&w3=Software+design+and+
>development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s=1
>66&.sig=L-4QTvxB_quFDtMyhrQaHQ>Computer software development
>te+design+development&w2=Computer+software+development&w3=Software+design+an
>d+development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s
>=166&.sig=lvQjSRfQDfWudJSe1lLjHw>  Software design and development
>site+design+development&w2=Computer+software+development&w3=Software+design+
>and+development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5
>&s=166&.sig=1pMBCdo3DsJbuU9AEmO1oQ>
>Macromedia flex
>

[flexcoders] Re: Beta3 Please Help

2006-05-12 Thread sufibaba




In Beta2, it worked without being wrapped. One of the reasons for this
was that instead of using the updateDisplayList, I was drawing the box
in the contructor,it didn't have rely on the Flex framework to call
the updateDisplayList.  The reason for doing this was that I wanted
the app to work as a stand alone AS in addition to being a Flex app.

Cheers,

Tim


--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> I would expect to have to compile an  containing the
> component in order to see anything. Are you saying that in Beta 2 you
> could just compile an AS component like MyTable.as into a SWF and run
> it?
> 
>  
> 
> - Gordon
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of sufibaba
> Sent: Wednesday, May 10, 2006 7:40 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Beta3 Please Help
> 
>  
> 
> Hello Gordon,
> 
> Some Update:
> 
> I found that when I compile only the MyTable.as file, nothing shows up.
> When I wrap it in an mxml file, then it works.
> 
> - TestMain.mxml ---
> 
> http://www.adobe.com/2006/mxml" width="100%"
> height="100%"xmlns="*">
> 
> 
> 
> --
> 
> Essentially, my real app has the following format.
> 
> TestMain.mxml calls MyTable, and MyTable calls MyTable1 (which is the
> same structure as MyTable).  
> 
> MyTable1 is called in MyTable.as file: -
> 
> override protected function updateDisplayList(unscaledWidth:Number,
> unscaledHeight:Number):void {
> super.updateDisplayList(unscaledWidth, unscaledHeight);
> // Check to see if style changed.
> if (bFillColorsChanged==true)
> {
> // Redraw gradient fill only if style changed.
> fillColorsData=getStyle("fillColors");
> graphics.beginGradientFill(GradientType.LINEAR, fillColorsData,
> alphas, ratios);
> graphics.drawRect(0, 0, unscaledWidth, unscaledHeight);
> 
> var table1:MyTable1 = new MyTable1();
> addChild(table1);
> }
> 
> 
> It seems to me that the problem I am having in Beta3 is due to the fact
> that Beta3 doesn't show the MyTable.as file by itself, it only works
> when wrapped by an mxml file. 
> 
> I hope that this situation has an easy solution as the comp0nent I have
> been building took a while to make and a big change would be a bit of a
> disaster.
> 
> Thanks again for helping out on this.  Definitely Appreciated Big Time.
> 
> Cheers,
> 
> Tim
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "sufibaba"  wrote:
> >
> > Hi Gordon,
> > 
> > I am trying out a few things, below is an example from the Extending
> > Components.pdf docs, but it doesn't seem to be working. Can you see
> > if it works for you?
> > 
> > --
> > 
> > package 
> > {
> > import mx.core.UIComponent;
> > import mx.styles.CSSStyleDeclaration;
> > import mx.styles.StyleManager;
> > import flash.display.GradientType;
> > // Insert the [Style] metadata tag to define the name, type
> > // and other information about the style property for the
> > // MXML compiler.
> > [Style(name="fillColors",type="Array",format="Color",inherit="no")]
> > 
> > public class MyTable extends UIComponent
> > {
> > // Define a static variable for initializing the style property.
> > private static var classConstructed:Boolean =! classConstruct();
> > // Define a static method to initialize the style.
> > 
> > private static function classConstruct():Boolean {
> > if (!StyleManager.getStyleDeclaration("MyTable"))
> > {
> > // If there is no CSS definition for StyledRectangle,
> > // then create one and set the default value.
> > var newStyleDeclaration:CSSStyleDeclaration =
> > new CSSStyleDeclaration();
> > newStyleDeclaration.setStyle("fillColors", [0xFF, 0xFF]);
> > StyleManager.setStyleDeclaration("MyTable",
> > newStyleDeclaration, true);
> > }
> > 
> > return true;
> > }
> > // Constructor
> > public function MyTable() {
> > super();
> > }
> > // Define a default size of 100 x 100 pixels.
> > 
> > override protected function measure():void {
> > super.measure();
> > measuredWidth = measuredMinWidth = 100;
> > measuredHeight = measuredMinHeight = 100;
> > }
> &g! t; 
> > // Define the variable to hold the current gradien! t fill c olors.
> > private var fillColorsData:Array;
> > // Define the flag that indicates a change to fillColors.
> > private var bFillColorsChanged:Boolean = true;
> > // Define variables for additional controls on the fill.
> > // You can create style properties for these as well.
> > private var alphas:Array = [1.0, 1.0];
> > private var ratios:Array = [0x00, 0xFF];
> > // Override styleChanged() to detect changes in your new style.
> > override public function styleChanged(styleProp:String):void {
> > super.styleChanged(styleProp);
> > // Check to see if style changed.
> > if (styleProp=="fillColors"){
> > bFillColorsChanged=true;
> > invali

[flexcoders] exception: flex.data.DataServiceException: Error occurred completing a transaction

2006-05-12 Thread João Fernandes










HI there,

 

I’m trying a custom sync method, but
I’m having this problem, If I just mark it co.fail(“test fail”),
my client is notified with that message with no problem but if I mark my
co.processed() I get this message   : “Error occurred completing a
transaction”.

 

Here is the log message:

 

[Flex] Exception when invoking service:
data-service

  with message: Flex Message
(flex.data.messages.DataMessage) 

    operation = transacted

    id = null

    clientId =
40126469-EC00-AA03-5799-88A018141B51

    correlationId = 

    destination = associacao

    messageId = 9A192E4F-E2AC-371C-FE94-296626487366

    timestamp = 1147450828460

    timeToLive = 0

    body = 

    [

  Flex Message
(flex.data.messages.DataMessage) 

  operation = update

  id = {clienteid=31}

  clientId =
557B1B37-88C6-4226-BDF5-29655F02AC7C

  correlationId =
9A192E4F-E2AC-371C-FE94-296626487366

  destination = associacao

  messageId = 5D6312A3-557C-1BFA-D496-2966263E6962

  timestamp = 1147450828660

  timeToLive = 0

  body = 

  [

    

    [

  cliente_nome

    ],

    {cliente_historia=, cliente_email=,
cliente_nif=, uid=31, cliente_distcapsocial=, cliente_capitalsocial=0,
cliente_nome=Abanico 32, cliente_data=Mon Mar 27 12:03:00 BST 2006,
cliente_distribuicao=, segmentosRecord=null, segmentonumber=4,
cliente_numempregados=0, cliente_datacriacao=Mon Mar 27 12:00:00 BST 2006,
clienteid=31, contactCollection=[], cliente_www=, cliente_estrategia=},

    {cliente_historia=, cliente_email=,
cliente_nif=, cliente_distcapsocial=, cliente_capitalsocial=0,
cliente_nome=Abanico , cliente_data=Mon Mar 27 12:03:00 BST 2006,
segmentosRecord={}, cliente_distribuicao=, segmentonumber=4, cliente_numempregados=0,
cliente_datacriacao=Mon Mar 27 12:00:00 BST 2006, clienteid=31,
contactCollection=[], cliente_www=, cliente_estrategia=}

  ]

  hdr(DSEndpoint) =
cf-dataservice-rtmp

    ]

    hdr(DSEndpoint) =
cf-dataservice-rtmp

  exception:
flex.data.DataServiceException: Error occurred completing a transaction

 

Any Ideas?

 

João Fernandes
Dep.
Informática - Área de Desenvolvimento
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]

 









--
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] Reporting options

2006-05-12 Thread Bill Sahlas










Hi Jeff – 

 

Here’s much more on the Flex_CF
solution http://www.dcooper.org/blog/client/index.cfm?mode=entry&entry=609B9952-DC57-D79E-83886B7D4E700834

 

Let us know if this helps to get you going
in the right direction, Bill

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster
Sent: Friday, May 12, 2006 11:29
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Reporting options



 

Can you give us more insight into what
kind of reporting you want to generate ?  Is it tabular reports, or more
formatted reports (such as invoices) ?  A great deal of the work Adobe
Consulting is doing right now, is leveraging Flex for the user-experience and
data-capture, with Adobe Livecycle as a service-tier technology for the dynamic
generation of PDF documents (note that Livecycle does a great deal more than
just generation of these documents, through the various different Livecycle
server technologies).  There is a very successful marriage between these 2
technologies since the Adobe / Macromedia combination.

 

Depending upon the use-case in your
application, that might be an architecture you consider, and there's certainly
a wealth of experience on this list that can give you insight into combining
Flex and Livecycle together.

 

Other approaches we've seen taken, include
generation of HTML reports using technologies such as JSP, if you are just
looking for tabular reports to be generated.   And of course, you
*can* print from a Flex application, but we have to be careful that
"when all we have is a hammer, everything looks like a nail".

 

Maybe if we understood the print/document
generation/workflow requirements you have, we could propose more specific
approaches.

 

Best wishes,

 

Steven



 




 
  
  
   






Steven
Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ,
 UK
p: +44 (0) 131 338 6108


m: +44 (0) 7917 428
947 
[EMAIL PROTECTED] 



   
  
  
  
 


 



 





 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Krueger
Sent: 12 May 2006 15:59
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Reporting
options





Hello,





 





    I was wondering if anyone has any opinions on how to
do reporting in flex.  I am using Flex 1.5.  Couple of options I have
thought of.





 





Just return the results in a grid, but I have read in the news group
that there is a bug when you get around 800 rows in a grid and try to print.





 





Also read about ColdFusions report writer as another alternative.





 





I thought about maybe a thrid party tool that has a html front end and
try to include that frontend wrapped inside my applicaiton.  Not sure if I
can do that.





 





But has anyone had any good experiences with a reporting setup?





 





Thanks in advance.





 





Jeff Krueger





 












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

2006-05-12 Thread Jay



I am not sure what to add to an example I found in the docs to make it
work

here is the example


http://www.adobe.com/2006/mxml"
xmlns:local="*" height="700" width="700" backgroundColor="#FF">

    
    
    

    
width="250" backgroundColor="white" initialize="initCellEditor()"> 
    
    
  webPage="http://www.state.ak.us/"/>
    
   webPage="http://www.alabama.gov/" />
    
 webPage="http://www.state.ar.us/"/>    
    
    


whenI try to use it I get a Access of undefined property Renderer
state error

how do I setup this property?

is that something I do in an action script page?

TIA for your help

Jay










--
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] invalidateList() problem

2006-05-12 Thread Brian Lesser



For performance reasons I would like to use Array methods to directly 
manipulate an array acting as a List component's dataProvider. After 
manipulating the array I assumed calling list.invalidateList(); should 
refresh the list with the new data. However, when I do that, the first 
item is never refreshed unless the list also scrolls. Scrolling the list 
will force the first item to redraw correctly.

Here is a code snippet that updates the list:

private function changeArray_invalidateList():void{
   startTime = flash.utils.getTimer();
   dataArray.length = 0;
   for (var i:Number = 0; i < testIterations; i++){
  dataArray.push("A" + i );
   }
   list.invalidateList();
   stopTime = flash.utils.getTimer();
   writeln("changeArray_invalidateList> time: " + (stopTime - startTime));
}

Am I right in assuming this should work?

Also, resetting the dataProvider with the array works. Instead of:
list.invalidateList();

this works:
list.dataProvider = dataArray

and still performs much better than using the IList methods.

Yours truly,
-Brian

-- 
__
Brian Lesser
Assistant Director, Teaching and Technology Support
Computing and Communications Services
Ryerson University
350 Victoria St.
Toronto, Ontario   Phone: (416) 979-5000 ext. 6835
M5B 2K3    Fax: (416) 979-5220
Office: AB48D  E-mail: [EMAIL PROTECTED]
(Enter through LB66)   Web: http://www.ryerson.ca/~blesser
__







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

2006-05-12 Thread parksch2



Thanks Ely. How would you suggest handling the dynamic data providers 
on the chart side? Would I have to use a repeater for the charts? 
Also, is this approach better than just making separate web service 
calls for the charts?

Thanks.

--- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> 
wrote:
>
> 
> 
> I think you'll probably have to do this from actionscript, by
> pre-processing the array into separate dataProviders.
> 
> 
> Var separateDPs:Object = {};
> For(var i:int=0;i
> {
>   var record:Object = data[i];
>   var id:Number = record.id;
>   var dp:Array = separateDPs[id];
>   if(dp == null)
>   {
>     dp = separateDPs[id] = new Array();
>   }
>   separateDPs.push(record);
> } 
> 
> Ely.
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of parksch2
> Sent: Friday, May 12, 2006 8:36 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] BarChart
> 
> Hello,
> 
> I'm looking for suggestions on the best way to take an array and
> separate it out into several bar charts. I currently have an array 
of
> data that also includes a chart number (1, 2, 3, etc.) and I would 
like
> to use that number to dynamically determine the chart that the data
> belongs to on the screen. Can I use a repeater with the bar chart 
and
> extract the appropriate information from the array on the fly?
> 
> Any help or suggestions would be greatly appreciated.
> 
> Thanks in advance.
> 
> 
> 
> 
> 
>  Yahoo! Groups Sponsor 
~-->
> You can search right from your browser? It's easy and it's free.  
See
> how.
> http://us.click.yahoo.com/_7bhrC/NGxNAA/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








  
  
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: FDS Beta 3 with ColdFusion Issues

2006-05-12 Thread Nikmd23



Thanks Bill.
That helped me to learn a lot, unfortunately, I am still having my problem.
 
I guess the best way I can boil it down is like this:
 
main.mxml:
…public var ds:DataService = new DataService(`nameA');
…
flex-data-service.xml:…
 
a simple change to both these files to:
 
main.mxml: (edited)
…public var ds:DataService = new DataService(`nameB');
…
flex-data-service.xml: (edited)…
 
breaks it. (Even after system/server restarts!)






--
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] Flex Apps and Google/Search Engines

2006-05-12 Thread Simon Fifield





Hi 
All,
 
Does anyone have any 
information or links about how successful Google and other search engine bots 
are at crawling Flex Apps?
 
Some of the 
possibilities for creating online shopping experiences are fantastic, but it has 
occurred to me that this area of search engine ranking may stumble Flex's 
adoption in the ecommerce area.
 
Has Adobe considered 
this or do you have any thoughts on this topic that you would like to 
share?
 
Regards,
Simon 
Fifield





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

2006-05-12 Thread Ely Greenfield





I think you'll probably have to do this from actionscript, by
pre-processing the array into separate dataProviders.


Var separateDPs:Object = {};
For(var i:int=0;i
{
  var record:Object = data[i];
  var id:Number = record.id;
  var dp:Array = separateDPs[id];
  if(dp == null)
  {
    dp = separateDPs[id] = new Array();
  }
  separateDPs.push(record);
} 

Ely.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of parksch2
Sent: Friday, May 12, 2006 8:36 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] BarChart

Hello,

I'm looking for suggestions on the best way to take an array and
separate it out into several bar charts. I currently have an array of
data that also includes a chart number (1, 2, 3, etc.) and I would like
to use that number to dynamically determine the chart that the data
belongs to on the screen. Can I use a repeater with the bar chart and
extract the appropriate information from the array on the fly?

Any help or suggestions would be greatly appreciated.

Thanks in advance.





 Yahoo! Groups Sponsor ~-->
You can search right from your browser? It's easy and it's free.  See
how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/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








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

2006-05-12 Thread parksch2



Hello,

I'm looking for suggestions on the best way to take an array and 
separate it out into several bar charts. I currently have an array of 
data that also includes a chart number (1, 2, 3, etc.) and I would like 
to use that number to dynamically determine the chart that the data 
belongs to on the screen. Can I use a repeater with the bar chart and 
extract the appropriate information from the array on the fly?

Any help or suggestions would be greatly appreciated.

Thanks in advance.









--
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] Reporting options

2006-05-12 Thread Steven Webster





Can you give us more insight into what kind of reporting 
you want to generate ?  Is it tabular reports, or more formatted reports 
(such as invoices) ?  A great deal of the work Adobe Consulting is doing 
right now, is leveraging Flex for the user-experience and data-capture, with 
Adobe Livecycle as a service-tier technology for the dynamic generation of PDF 
documents (note that Livecycle does a great deal more than just generation of 
these documents, through the various different Livecycle server 
technologies).  There is a very successful marriage between these 2 
technologies since the Adobe / Macromedia combination.
 
Depending upon the use-case in your application, that might 
be an architecture you consider, and there's certainly a wealth of experience on 
this list that can give you insight into combining Flex and Livecycle 
together.
 
Other approaches we've seen taken, include generation of 
HTML reports using technologies such as JSP, if you are just looking for tabular 
reports to be generated.   And of course, you *can* print from a 
Flex application, but we have to be careful that "when all we have is a hammer, 
everything looks like a nail".
 
Maybe if we understood the print/document 
generation/workflow requirements you have, we could propose more specific 
approaches.
 
Best wishes,
 
Steven
 


  
  

  


  
  

Steven WebsterPractice Director (Rich 
Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs 
Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 
6108
m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 
  
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Jeff 
  KruegerSent: 12 May 2006 15:59To: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Reporting 
  options
  
  
  Hello,
   
      I was wondering if anyone has any opinions on how to 
  do reporting in flex.  I am using Flex 1.5.  Couple of options I 
  have thought of.
   
  Just return the results in a grid, but I have read in the news group that 
  there is a bug when you get around 800 rows in a grid and try to print.
   
  Also read about ColdFusions report writer as another alternative.
   
  I thought about maybe a thrid party tool that has a html front end and 
  try to include that frontend wrapped inside my applicaiton.  Not sure if 
  I can do that.
   
  But has anyone had any good experiences with a reporting setup?
   
  Thanks in advance.
   
  Jeff Krueger
   





--
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] Reporting options

2006-05-12 Thread Tom Chiverton



>>> On Fri, May 12, 2006 at  3:59 PM, in message
<[EMAIL PROTECTED]>,
[EMAIL PROTECTED] wrote: 
> Just return the results in a grid, but I have read in the news group
that 
> there is a bug when you get around 800 rows in a grid and try to
print.

In what way ?



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.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







--
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] Reporting options

2006-05-12 Thread Jeff Krueger


Hello,
 
    I was wondering if anyone has any opinions on how to do reporting in flex.  I am using Flex 1.5.  Couple of options I have thought of.
 
Just return the results in a grid, but I have read in the news group that there is a bug when you get around 800 rows in a grid and try to print.
 
Also read about ColdFusions report writer as another alternative.
 
I thought about maybe a thrid party tool that has a html front end and try to include that frontend wrapped inside my applicaiton.  Not sure if I can do that.
 
But has anyone had any good experiences with a reporting setup?
 
Thanks in advance.
 
Jeff Krueger
 





--
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: FDS Beta 3 with ColdFusion Issues

2006-05-12 Thread Bill Sahlas










You need to enable the logging filters DataService.coldfusion,
Message.coldfusion.  Refer to flex-enterprise-services.xml in the C:\fds2\resources\config
folder for all the sample configs attributes.  Flex can watch certain configs files
for changes and will redeploy the ‘web-app’ whose file was changed
(could be /samples, /flex, /flex-admin, /foo).  The list of files is found in
the /WEB-INF/flex/flex-enterprise-services.xml file for every web-app 

 

    

    

   
true

   
20

   
{context.root}/WEB-INF/flex/flex-enterprise-services.xml

   
{context.root}/WEB-INF/flex/flex-proxy-service.xml

   
{context.root}/WEB-INF/flex/flex-remoting-service.xml

   
{context.root}/WEB-INF/flex/flex-message-service.xml

    {context.root}/WEB-INF/flex/flex-data-service.xml

   
{context.root}/WEB-INF/web.xml

    

    

 

 

If you change a destination attribute in
your /foo/WEB-INF/flex/flex-data-service.xml and you’ve got the
 params specified in your flex-enterprise-services.xml file
then your /foo web-app will redeploy.  Your application when creating the
DataServices object needs to pass in the destination name so that’s
another place to check. There are only a couple of places where this could brake
down.

 


 You
 have the yourapp.mxml(.as) file that defines the DataServices object
 you
 have the flex-enterprise-services.xml file that needs tweaking (see C:\fds2\resources\config
 folder for samples)
 you
 have the flex-data-service.xml file that contains the destination 


 

In order for your application (mxml/as) to
know about the new destinations it must recompile before the web-app redeploys
your {context.root}/WEB-INF/flex/flex-data-service.xml file

 

Clear your web cache; make sure the swf is
being rebuilt

 

HTH, Bill

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nikmd23
Sent: Friday, May 12, 2006 10:35
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: FDS Beta
3 with ColdFusion Issues



 

I dug a little deeper
into this issue, and this is what I've found:

My destination works, I named it "testDest" and now I can connect to 
it fine.  I changed it's name to "otherTest", restarted Flex
Server, 
changed my MXML to point to it, and when I ran it, it said 
that "otherTest" was not found.

I figured there was some kind of a cache problem, so I restarted my 
computer.  Once it booted up, I started Flex Server, and re-ran my 
MXML.  Same problem, "otherTest" not found.

So then, I opened up the XML file, changed the destinations name 
back to "testDest", changed my MXML to point to that destination and 
re-ran again (WITHOUT restarting Flex Server).  And it worked fine.

So Flex Server seems to have an issue with changes in destinations.  
Restarting the server/machine doesn't seem to help, and unlike in 
Beta 2, the counsel output doesn't seem to tell you what 
destinations it has defined.

The Flex Admin app (http://localhost:8700/flex-admin/)
does seem to 
tell you which destinations are defined, and in each case, the 
proper destination is defined there. Even when I get the error.

Is this a know bug in Flex Server, or is there another service 
somewhere I should be restarting?












--
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] Fluorine "Unknown service" error with F2B3/.NET

2006-05-12 Thread Rostislav Siryk




Hi,

This must be very stupid question but I'm just trying to get my 
"Fluorine + .NET + F2B3" working and got an error:

>>code = SERVER.PROCESSING
>>description = Unknown Service Error: Unknown service type requested
MLA

"MLA" is service type I'm trying to request with following AS3 code: 

>>gateway.call("MLA.MLAComposer", new Responder(onResult, onFault),
"hello")

(I use service mane from Fluorine's Service Browser as 2 stub code:
this.service=new
Service(this.gatewayUrl,null,"MLA.MLAComposer",null,null);


Where I've made my mistake?  


Sincerely,

Rostislav Siryk
Senior Graphic Designer
Validio Ukraine
[EMAIL PROTECTED]









--
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 2.0 b2: List, itemEditEnd event

2006-05-12 Thread Stephen Gilson



If you have Beta 3, you can see an example in the doc here:

http://livedocs.macromedia.com/labs/1/flex20beta3/0886.html

Stephen 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Chotin
Sent: Saturday, April 29, 2006 10:45 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2.0 b2: List, itemEditEnd event

If the item was null we didn't do anything to create the item.  The
DataGrid doesn't know how to create a new item of your class so it may
have just filled in the itemRenderer without doing anything.  This
allows you to create the object yourself, which you should probably do
in the itemEditBeginning event.  You'd get the information as to where
the thing is about to be created and if it's null you'd go ahead and
create an empty object and make sure that the it gets put into your
dataProvider.

I'm not sure if it will work, but I'm assuming otherwise we'd throw
errors for the value being null.

Matt 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of tyombria
Sent: Friday, April 28, 2006 1:14 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2.0 b2: List, itemEditEnd event

Hi, all.

i have a problem with itemEditEnd event.
How can i get data was being entered?
see the code:

someList.addEventListener( ListEvent.ITEM_EDIT_END, onItemEditEnd ); ...
...

private function onItemEditEnd( event : ListEvent ) : void {
  var itemRenderer : IListItemRenderer = event.itemRenderer;
  trace( itemRenderer.data );  // outputs null
   // (row i've edited
   //  was null before)
  trace( someList.dataProvider ); // outputs, for example: 1,2,,5
  // although between rows with
  // data '2' and '5'
  // i've entered, for example, '8'
  // and i can see it in list.
}






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








  
  
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] Flex2B2: control autoAdjust behaviour of DateTimeAxis

2006-05-12 Thread Ely Greenfield





Hi Willem. There's not way to do what you're looking for in the current beta.  But in the latest internal builds we've added an additional flag (alignLabelsToUnits) that will give you the behavior you're looking for. You'll see it in the next drop.

Ely.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Willem
Sent: Friday, May 12, 2006 6:19 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2B2: control autoAdjust behaviour of DateTimeAxis

Hi,

I am using the  to plot some data, spanning around 8 hours, starting at a random moment.
The DateTimeAxis sets the ticks at good intervals (hourly), but is using the the first data-item as a starting point for the ticks, so if the data happens to start at 16:52 hours, I get ticks at 16:52, 17:52, etc..
Setting autoAdjust to true results in ticks at whole hours, starting at 16:00.

Is there a way to get more control on the autoAdjust behaviour? I would prefer to have the ticks start at e.g. 16:30 and not to have too much unused space on the chart.

An other issue is that as soon as I change the minimum/maximum properties of the axis (to zoom in), the autoAdjust is no longer active it seems.

Thanks, Willem






 Yahoo! Groups Sponsor ~--> Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/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



   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: FDS Beta 3 with ColdFusion Issues

2006-05-12 Thread Nikmd23



I dug a little deeper into this issue, and this is what I've found:

My destination works, I named it "testDest" and now I can connect to 
it fine.  I changed it's name to "otherTest", restarted Flex Server, 
changed my MXML to point to it, and when I ran it, it said 
that "otherTest" was not found.

I figured there was some kind of a cache problem, so I restarted my 
computer.  Once it booted up, I started Flex Server, and re-ran my 
MXML.  Same problem, "otherTest" not found.

So then, I opened up the XML file, changed the destinations name 
back to "testDest", changed my MXML to point to that destination and 
re-ran again (WITHOUT restarting Flex Server).  And it worked fine.

So Flex Server seems to have an issue with changes in destinations.  
Restarting the server/machine doesn't seem to help, and unlike in 
Beta 2, the counsel output doesn't seem to tell you what 
destinations it has defined.

The Flex Admin app (http://localhost:8700/flex-admin/) does seem to 
tell you which destinations are defined, and in each case, the 
proper destination is defined there. Even when I get the error.

Is this a know bug in Flex Server, or is there another service 
somewhere I should be restarting?










--
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] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Benoit Hediard





You need to unzip all the files in the root folder of 
a new Flex Builder project and compile it.
And it should work.
 
Benoit Hediard


De : flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] De la part de Kevin 
RocheEnvoyé : vendredi 12 mai 2006 15:47À : 
flexcoders@yahoogroups.comObjet : RE: [flexcoders] Problem with 
Cairngorm 2 version of Phones app.

Yes, 
the file is there but I gues it may not be in the right place. I am assuming 
that placing the whole thing under the place where the mxml file is is correct 
or does it nee to be in some path so that flex can find it?

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:59To: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with 
  Cairngorm 2 version of Phones app.Stupid question - the 
  file exists?
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> 
  wrote: 
  


Hi Nik,
 
I found the problem, needed 
to add all the mxml files to the application.
 
Now I have another 
problem.
 
Error message 
says:
 
Unable to locate specified 
base class 'org.nevis.cairngorm.business.ServiceLocator' for component class 
'ApplicationServices'
 
I do have the cairngorm 
directory structure (org.. etc) in the same directory as 
main.mxml.
 
Any ideas why its not 
found?
 
Kevin

  -Original 
  Message-From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:09To: flexcoders@yahoogroups.comSubject: Re: 
  [flexcoders] Problen with Cairngorm 2 version of Phones 
  app.Hi Kevin,Good to see you on 
  here.Could you post the line(s) in question?  It might be 
  that you need to do some CheersNiklas
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> wrote: 
  Hi,I 
am having difficult getting the Flex 2 Phones application working 
withFlex2 Beta 2 (Did not want to try Beta3 until it 
works)When I try to save and compile I get the following 
error:Implicit coercion of a value with static type 'Object' to 
a possibly unrelated type 'Array' Line 33 
PhoneListGetCommand.asAnyone know why or what went 
wrong?  I am still learning ActionScript andcant see quite 
what is wrong here.Kevin 
Roche Yahoo! Groups 
Sponsor ~-->Protect your PC from spy ware 
with award winning anti spy technology. It's free.http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM 
~->--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Search 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/ 
  -- Niklas 
  RichardsonPrismix LtdUK based Flex and ColdFusion Specialists 
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  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 . 
  
  
  -- 
  Niklas RichardsonPrismix LtdUK based Flex and ColdFusion 
  Specialists 





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

RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Kevin Roche





Yes, 
the file is there but I gues it may not be in the right place. I am assuming 
that placing the whole thing under the place where the mxml file is is correct 
or does it nee to be in some path so that flex can find it?

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:59To: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with 
  Cairngorm 2 version of Phones app.Stupid question - the 
  file exists?
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> 
  wrote: 
  


Hi Nik,
 
I found the problem, needed 
to add all the mxml files to the application.
 
Now I have another 
problem.
 
Error message 
says:
 
Unable to locate specified 
base class 'org.nevis.cairngorm.business.ServiceLocator' for component class 
'ApplicationServices'
 
I do have the cairngorm 
directory structure (org.. etc) in the same directory as 
main.mxml.
 
Any ideas why its not 
found?
 
Kevin

  -Original 
  Message-From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:09To: flexcoders@yahoogroups.comSubject: Re: 
  [flexcoders] Problen with Cairngorm 2 version of Phones 
  app.Hi Kevin,Good to see you on 
  here.Could you post the line(s) in question?  It might be 
  that you need to do some CheersNiklas
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> wrote: 
  Hi,I 
am having difficult getting the Flex 2 Phones application working 
withFlex2 Beta 2 (Did not want to try Beta3 until it 
works)When I try to save and compile I get the following 
error:Implicit coercion of a value with static type 'Object' to 
a possibly unrelated type 'Array' Line 33 
PhoneListGetCommand.asAnyone know why or what went 
wrong?  I am still learning ActionScript andcant see quite 
what is wrong here.Kevin 
Roche Yahoo! Groups 
Sponsor ~-->Protect your PC from spy ware 
with award winning anti spy technology. It's free.http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM 
~->--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Search 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/ 
  -- Niklas 
  RichardsonPrismix LtdUK based Flex and ColdFusion Specialists 
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  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 . 
  
  
  -- 
  Niklas RichardsonPrismix LtdUK based Flex and ColdFusion 
  Specialists 





--
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: sending htmlText from RichTextEditor to webservice

2006-05-12 Thread Manish Jethani



On 5/12/06, Will Morgan <[EMAIL PROTECTED]> wrote:

>    Hey Manish - thanks. If you've done it before and you have a quick sample at hand could you post it?

Just use a string replace.


http://www.adobe.com/2006/mxml"
  xmlns="*">
  
  
  
    
  







--
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] Icons Buttons

2006-05-12 Thread Michael Schmalle



Not to mention,

This is a perfect example of where an MXML component is perfect.

Peace, MikeOn 5/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
Hi,

You just need to create a Skin class that has no graphics for the upSkin style.

Set labelPlacement to 'bottom'

Adjust padding and you are set.

See the docs Skinning programatically section for more info on how to create the ButtonSkin class.

Peace, MikeOn 5/12/06, s_hernandez01 <
[EMAIL PROTECTED]> wrote:



Would anybody know how to create an icon button in Flex simiilar to 
the way MSN Messenger created theirs?  Where the icon is above the 
text label and blended in to the background, but has a rollover effect 
that shows the border of the button.  Here's an example:

http://join.msn.com/messenger/features

Thanks
Sal










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





  









-- What goes up, does come down.

-- What goes up, does come down.






--
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: sending htmlText from RichTextEditor to webservice

2006-05-12 Thread Robert Thompson



ALL OF US WOULD BE VERY GREATFUL, I'm sure.This is a hot-topic period.I've heard rumors for quite sometime about Adobe/Macr. including some sort of Rich Text Editor.  F'load has changed their licensing policy on their control and it sucks now you have to pay for each site; MXP's rule; so do .SWC's.-rWill Morgan <[EMAIL PROTECTED]> wrote:Hey Manish - thanks. If you've done it before and you have a quick sample at hand could you post it? I'd be very grateful...On 5/12/06, Manish Jethani  <[EMAIL PROTECTED]> wrote:On
 5/12/06, willmorganuk <[EMAIL PROTECTED]> wrote: > Got it working now (RTE.htmlText), but the  tag is a > little large when it's placed on n html page :) need to find a way to > strip that out from the string...  It's valid XML, so I'd use E4X to strip out the unnecessary bits (I think I've done this before).   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKSWeb site design developmentComputer software developmentSoftware design and development   
   Macromedia flexSoftware 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 .  
		Get amazing travel prices for air and hotel in one click on Yahoo! FareChase 






--
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] Flex2B2: control autoAdjust behaviour of DateTimeAxis

2006-05-12 Thread Willem



Hi,

I am using the  to plot some data, spanning around 8
hours, starting at a random moment.
The DateTimeAxis sets the ticks at good intervals (hourly), but is
using the the first data-item as a starting point for the ticks, so if
the data happens to start at 16:52 hours, I get ticks at 16:52, 17:52,
etc..
Setting autoAdjust to true results in ticks at whole hours, starting
at 16:00.

Is there a way to get more control on the autoAdjust behaviour? I
would prefer to have the ticks start at e.g. 16:30 and not to have too
much unused space on the chart.

An other issue is that as soon as I change the minimum/maximum
properties of the axis (to zoom in), the autoAdjust is no longer
active it seems.

Thanks, Willem










--
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] Icons Buttons

2006-05-12 Thread Michael Schmalle



Hi,

You just need to create a Skin class that has no graphics for the upSkin style.

Set labelPlacement to 'bottom'

Adjust padding and you are set.

See the docs Skinning programatically section for more info on how to create the ButtonSkin class.

Peace, MikeOn 5/12/06, s_hernandez01 <[EMAIL PROTECTED]> wrote:



Would anybody know how to create an icon button in Flex simiilar to 
the way MSN Messenger created theirs?  Where the icon is above the 
text label and blended in to the background, but has a rollover effect 
that shows the border of the button.  Here's an example:

http://join.msn.com/messenger/features

Thanks
Sal










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




  









-- What goes up, does come down.






--
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: generic sorts for DataGridColumns?

2006-05-12 Thread djbrown_rotonews



I'm with you, thinking there HAS to be a simpler way of doing it. 
Why we don't have access to the columnIndex, for example, baffles 
me. I've messed around with the whole process of over-riding 
headerRelease and all, but it also would swap out two "rows" when I 
tried it, so I gave up and started digging deeper into this simpler 
method. 

let me know if you figure this thing out.

--- In flexcoders@yahoogroups.com, "Scott Romer" <[EMAIL PROTECTED]> wrote:
>
> I'm working on a very similar problem.  When I specify the
> sortCompareFunction on a DataGridColumn, it looks like it tries to
> actually execute that function from the SortField.  Try tracing
> through and see for yourself...
> 
> It looks like it takes the column's datafield and creates a 
sortField
> for it. Then sets the sortCompareFunction from the column as the
> compareFunction on the sortField.  In which case the SortField's
> compare function should have a signature like this: (per doc)
> 
> function myCompare(a:Object, b:Object):int
> 
> 
> Hence the third parameter (fields) that we both seem to try to use 
is
> always null?
> 
> There must be a simpler way that we are just not seeing.  On a flip
> side, I'm going to try to move towards the example in their 
documentation:
> 
http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/comm
on/html/wwhelp.htm?context=LiveDocs_Parts&file=0608.html
> 
> 
> --- In flexcoders@yahoogroups.com, "djbrown_rotonews"
>  wrote:
> >
> > It's default is null (obviously). Any idea how I can modify 
> > the "call" to sortCompareFunction in the dataGridColumn line to 
add 
> > this argument to the function call?
> > 
> > --- In flexcoders@yahoogroups.com, "Doug Lowder"  
> > wrote:
> > >
> > > 
> > > The DataGridColumn docs
> > > 
> > 
 > s/d\
> > > ataGridClasses/DataGridColumn.html#sortCompareFunction>   say 
the
> > > sortCompareFunction gets passed a fields parameter in addition 
to 
> > the
> > > item objects being compared.  Have you checked the fields 
> > parameter to
> > > see what's in it?
> > > 
> > > Doug
> > > 
> > > 
> > > --- In flexcoders@yahoogroups.com, "djbrown_rotonews"
> > >  wrote:
> > > >
> > > > bump. any help?
> > > >
> > > > --- In flexcoders@yahoogroups.com, "djbrown_rotonews"
> > > > djbrown_rotonews@ wrote:
> > > > >
> > > > > anyone? I've seen similir questions asked before, and 
never 
> > saw an
> > > > > answer that directly pertains to the DataGrdColumn issue.
> > > > >
> > > > > --- In flexcoders@yahoogroups.com, "djbrown_rotonews"
> > > > >  wrote:
> > > > > >
> > > > > > I'm using Flex Beta 2 and wanting to implement a generic 
sort
> > > > that
> > > > > > will handle the approximate 20 columns I'm displaying.
> > > > > >
> > > > > > I've got it set up as follows:
> > > > > > 
> > > > > > textAlign="center" fontWeight="bold" headerText="STA"
> > > > > > width="{dgDelays.width/22}" headerWordWrap="on"
> > > > > dataField="acfrmsta"
> > > > > > labelFunction="labelFunction" 
> > sortCompareFunction="sortAlpha"/>
> > > > > >
> > > > > > and my sortAlpha takes the form of:
> > > > > > public function sortAlpha(a:Object,b:Object):int {
> > > > > >
> > > > > > var field:String="acfrmsta";
> > > > > > var string1:String = a[field].attribute("dataValue");
> > > > > > var string2:String = b[field].attribute("dataValue");
> > > > > >
> > > > > > if (string1==string2)
> > > > > > return 0;
> > > > > > else if (string1 < string2)
> > > > > > return -1;
> > > > > > else
> > > > > > return 1;
> > > > > > }
> > > > > >
> > > > > > as you can see, I have to hard-code in the value of 
arfrmsta 
> > in
> > > > > the
> > > > > > sortalpha() method. How can I drill down and get this 
value
> > > > > > programatically if I don't have access to something like
> > > > > columnIndex
> > > > > > (which DOES exist apparently in DataGridListData)? 
Either 
> > that,
> > > > or
> > > > > I
> > > > > > can iterate over the column headers if something like
> > > > > isItemSelected
> > > > > > () existed.
> > > > > >
> > > > >
> > > >
> > >
> >
>











--
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: sending htmlText from RichTextEditor to webservice

2006-05-12 Thread Will Morgan



Hey Manish - thanks. If you've done it before and you have a quick sample at hand could you post it? I'd be very grateful...On 5/12/06, Manish Jethani
 <[EMAIL PROTECTED]> wrote:



On 5/12/06, willmorganuk <[EMAIL PROTECTED]> wrote:
> Got it working now (RTE.htmlText), but the  tag is a
> little large when it's placed on n html page :) need to find a way to
> strip that out from the string...

It's valid XML, so I'd use E4X to strip out the unnecessary bits (I
think I've done this before).






--
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 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] Icons Buttons

2006-05-12 Thread s_hernandez01



Would anybody know how to create an icon button in Flex simiilar to 
the way MSN Messenger created theirs?  Where the icon is above the 
text label and blended in to the background, but has a rollover effect 
that shows the border of the button.  Here's an example:

http://join.msn.com/messenger/features

Thanks
Sal










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

2006-05-12 Thread João Fernandes










Hi  there,

 

When launching debug my browser opens with http://localhost/d:/sites/appfolder/mymxml.mxml?debug=true.

 

This happens because I use an external
webserver (IIS) to connect to the FDS, so my content is outside the FDS server.

If I deploy under {jrun4}/servers/myFDSinstanceServer/{myfds.war}/
I can debug it with no problem.

 

Is it possible for final release to be able
to debug an app that is deployed in a custom folder ?

 

Thanks  

 

João Fernandes
Dep.
Informática - Área de Desenvolvimento
Cofina media

Avenida
João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel
(+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]

 









--
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] Developers Derby - Question for Adobe

2006-05-12 Thread Nikmd23



Hey Adobe people,
I submitted an application into the Derby a week ago.  I still have not received the confirmation Email or any feedback.  I was wondering if this was because you guys are so busy this week (Beta 3 & Spry), or perhaps something went wrong when I filled out the form.  I couldn't find a contact person to address this to on the labs, so I'm hoping this will get to the right person here.
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] Embeding URL() TTF fonts

2006-05-12 Thread Tom Chiverton



>>> On Fri, May 12, 2006 at 12:15 PM, in message
<[EMAIL PROTECTED]>, [EMAIL PROTECTED]
wrote: 
> Has anyone managed to do this in Beta 3 ? I keep getting the
following
> error:
> exception during transcoding: No FontManager provided. Cannot build
> font.

Ahh, misleading error.
It *meant* the font file was corrupted - other newly installed TTF font
files run fine. Oddly the font in question previews OK outside Flex :-/



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.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







--
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] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle



Hi,

Well now that I am just out of afterburnner mode and the weekend is
upon me; I would like to post a url for those interested in a quick
Friday morning read.

http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/

Some of you application developers, component devs also, might want to
just check this out. Make sure you click on the two image links. Didn't
have time to put up thumbnails. Thoses images are one little peice of
what I am making.

Let me know if you have thoughts...

Peace, Mike-- What goes up, does come down.






--
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] problems accessing a tree with xml from a HTTPService

2006-05-12 Thread Alin DICU



---the httpservice 
code---

    
    id="treeHttpSrv"
    concurrency="multiple"
    method="GET"
    url="" href="http://localhost:8084/FlexXMLServer/XMLTreeElementsServlet">http://localhost:8084/FlexXMLServer/XMLTreeElementsServlet"
    showBusyCursor="true"
    fault="alert(event.fault.faultstring);"/>

 the UI tree code 
-

width="100%" change="showTreeSelection(event)" height="100%"/>
 the received XML 
---

    
    
    
data="" href="http://localhost:8080/FlexXMLServer/Photos/BMW/BMW">http://localhost:8080/FlexXMLServer/Photos/BMW/BMW 325ci 
1994.jpeg" type="photo"/>
    
data="" href="http://localhost:8080/FlexXMLServer/Photos/BMW/BMW">http://localhost:8080/FlexXMLServer/Photos/BMW/BMW E65 
Schnitzer.jpeg" type="photo"/>
    
    
    
data="" href="http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes">http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes ML 
back.jpg" type="photo"/>
    
data="" href="http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes">http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes ML 
front.jpg" type="photo"/>
    
    

- the accesing attributes method 
---

   function showTreeSelection(event)
   {
    var node:Object=event.target.selectedItem.attributes;
    selectedLabel = node.label;
    selectedData = node.data;
    nodeType = node.type;
    //alert(selectedLabel + " " + selectedData + " " + 
nodeType);
   
    switch(nodeType)
    {
    case root:
    var params = new Object();
    params.param1 = initListe;   
  
  rechTreeHttpSrv.send(params);
   
    break;
    case album:
    var params = new Object();
    params.param1 = rechercherSelonAlbum;
    params.param2 = selectedLabel;   
   
    rechTreeHttpSrv.send(params);
   
    break;
    case photo:
    showPopUp(selectedLabel);
    break;
    default:
    ;
    }
   }

Right now, I'm using the xecat xml, only that it is statically put into 
the .mxml page.

Thanks,

Tracy Spratt a écrit :
> I do this regularly.
>
> How are you attempting to access the attributes?
>
> Tracy
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Alin DICU
> Sent: Thursday, May 11, 2006 10:03 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] problems accessing a tree with xml from a
> HTTPService
>
> Hi,
>
> I use the following xml to create a tree that is displayed:
>
> 
> 
> 
> data="" href="http://localhost:8080/FlexXMLServer/Photos/BMW/BMW">http://localhost:8080/FlexXMLServer/Photos/BMW/BMW 325ci
> 1994.jpeg"/>
> 
> data="" href="http://localhost:8080/FlexXMLServer/Photos/BMW/BMW">http://localhost:8080/FlexXMLServer/Photos/BMW/BMW E65
> Schnitzer.jpeg"/>
> 
> 
> 
> data="" href="http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes">http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes ML
> back.jpg"/>
> 
> data="" href="http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes">http://localhost:8080/FlexXMLServer/Photos/Mercedes/Mercedes ML
> front.jpg"/>
> 
> 
>
> The problem comes when I get this data from HTTPService or from a file.
> When I do this I cannot access the "label" and "data" attributes
> of the selected node.
>
> Has anyone dealed with this problem?
>
> 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
>
>
>
>
>
>
>
>
>
>
> --
> 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 
> 

Re: [flexcoders] Re: sending htmlText from RichTextEditor to webservice

2006-05-12 Thread Manish Jethani



On 5/12/06, willmorganuk <[EMAIL PROTECTED]> wrote:
> Got it working now (RTE.htmlText), but the  tag is a
> little large when it's placed on n html page :) need to find a way to
> strip that out from the string...

It's valid XML, so I'd use E4X to strip out the unnecessary bits (I
think I've done this before).






--
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] SWFLoader and passing loaded swf to be a child of the application's panel

2006-05-12 Thread Manish Jethani



On 5/11/06, bobpardoe1959 <[EMAIL PROTECTED]> wrote:

> In the loadcompleted function I am trying to use the swfloader.content
> and create a new titlewindow (as a child of the main apps's panel)
> whose contents are the swfloader content.
>
> I am getting runtime errors regarding the coercion of one type to another.

Why are you accessing the content property? Is it not possible to
simply put the SWFLoader instance into the TitleWidow? I thought that
worked.






--
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] subclassing DataGrid in Beta 3

2006-05-12 Thread Manish Jethani



On 5/12/06, Jim Laing <[EMAIL PROTECTED]> wrote:
> So, one of our requirements is to make the up/down arrow keys work in
> a DataGrid that is being edited. In Beta 2, I was able to subclass
> certain functions (keyDownHandler, findNextEnterItemRenderer) of the
> DataGrid which were marked public at the time. Now it seems these
> functions are marked private so I am unable to subclass them. Does
> anyone have any ideas as to how I can achieve functionality similar to
> the code below?

I don't know why it's private now, but maybe you could try looking at
the findNextItemRenderer() implementation in the DataGrid.as in the B3
source and try implementing something along those lines?






--
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] FB2B3: Transfer Focus from custom editor in dataGrid

2006-05-12 Thread Manish Jethani



On 5/12/06, Scott Romer <[EMAIL PROTECTED]> wrote:
> I have created a custom editor for my dataGrid.  I am also handling
> the itemEditEnd event.  When focus exists in a cell in this column and
> I try to TAB out, I am prevented... In tracing through the code, (in
> DataGrid.as, I believe I know why.. but not sure if this is a bug or
> by design).

Interesting. So cancelling an "itemEditEnd" also prevents the focus
from moving on.

Have you tried not cancelling the event and instead making
modifications to your StateEditor.mxml to make it work the way you
want?






--
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: DataGridColumn Style

2006-05-12 Thread Tim Hoff



Agha,

Are you using CSS or MX tags for style?  Also, the CSS I provided 
(different colors than what you wanted) works for all grid column 
headers.  If you want to apply different colors for individual 
column headers, you'll have to use some AS.

Tim


--- In flexcoders@yahoogroups.com, "Mehdi, Agha" <[EMAIL PROTECTED]> 
wrote:
>
> Tim,
> 
> That didn't do it.
> 
> Agha Mehdi
> IDT - eBusiness Program Manager
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Tim Hoff
> Sent: Thursday, May 11, 2006 1:22 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: DataGridColumn Style
> 
> You could try something like this:
> 
> DataGrid {
>   headerStyleName:"gridHeaderStyle";
>   headerColors:#ff,#CCD9E6;
> }
> 
> ..gridHeaderStyle
> {
> fontWeight:"bold";
>   fontSize:10;
>   color:#00;
> }
> 
> -TH
> 
> 
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Mehdi, Agha"  
> wrote:
> >
> > Hi all,
> > 
> > How can I set the color of text of DataGrid Column Headers?
> > DataGridColumn{color:#FF;} in .css is not working
> > 
> > Thanks
> > 
> > Agha Mehdi
> > IDT - eBusiness Program Manager
> > Work: 408.284.8239
> > Cell  : 510.493.0491
> > Fax  :  408.284.2766
> >
> 
> 
> 
> 
> 
> 
> 
> --
> 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








  
  
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] Embeding URL() TTF fonts

2006-05-12 Thread Tom Chiverton



Has anyone managed to do this in Beta 3 ? I keep getting the following
error:
exception during transcoding: No FontManager provided. Cannot build
font.



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.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards







--
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 Beta 3 and ASP.NET 2.0 Web Services

2006-05-12 Thread Tim Hoff



Hey Ken,

Here's the deal.  Flex and .NET Datasets don't play well together.  
Your web service needs to return a class or an array.  Thank the 
Java gods that there is a way to do this, but it's a little off-
list.  If you would like some help with this and a little sample 
code, I can help you.

Tim Hoff


--- In flexcoders@yahoogroups.com, "Ken Bromberger" <[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
>  
> 
> I am trying to consume a dataset returned by an asp.net web 
service and
> I get the following error.
> 
>  
> 
> Any help or resources related to consuming web services would be 
greatly
> appreciated! - Ken
> 
>  
> 
>  
> 
> [WSDLError faultString="Element
> http://fatmango/wsExtranet:getContactsResponse not resolvable"
> faultCode="WSDL.BadElement" faultDetail="null"]
> 
> at
> 
mx.rpc.soap::WSDLParser/http://www.adobe.com/2006/flex/mx/internal::p
ars
> eMessage()
> 
> at mx.rpc.soap::WSDLOperation/parseMessages()
> 
> at
> 
mx.rpc.soap::Operation/http://www.adobe.com/2006/flex/mx/internal::in
vok
> ePendingCall()
> 
> at
> 
mx.rpc.soap::Operation/http://www.adobe.com/2006/flex/mx/internal::in
vok
> eAllPending()
> 
> at mx.rpc.soap::WebService/::unEnqueueCalls()
> 
> at
> 
mx.rpc.soap::WebService/http://www.adobe.com/2006/flex/mx/internal::w
sdl
> Handler()
> 
> at flash.events::EventDispatcher/dispatchEvent()
> 
> at mx.rpc.soap::WSDLParser/dispatchEvent()
> 
> at mx.rpc.soap::WSDLParser/::parseCompleted()
> 
> at
> 
mx.rpc.soap::WSDLParser/http://www.adobe.com/2006/flex/mx/internal::h
ttp
> ResultHandler()
> 
> at flash.events::EventDispatcher/dispatchEvent()
> 
> at
> 
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::d
isp
> atchRpcEvent()
> 
> at
> 
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::r
esu
> ltHandler()
> 
> at mx.rpc::Responder/result()
> 
> at mx.rpc::AsyncRequest/acknowledge()
> 
> at ::DirectHTTPMessageResponder/completeHandler()
> 
> at flash.events::EventDispatcher/dispatchEvent()
> 
> at flash.net::URLLoader/flash.net:URLLoader::onComplete
()
> 
>  
> 
>  
> 
> I am able to get a simple "hello world" web service to return a 
string
> and display it just fine but when I return the data set flash 
crashes
> when the web service is called...
> 
>  
> 
>  
> 
> Here is the mxml code:
> 
>  
> 
>  
> 
> 
> 
> http://www.adobe.com/2006/mxml"
> layout="absolute" creationComplete="wsContacts.getContacts.send()">
> 
>    
> wsdl="http://fatmango/wsExtranet/getContacts.asmx?wsdl"
> useProxy="false">
> 
>   
> 
>  
> 
>  
> 
>    156
> 
>  
> 
>  
> 
>   
> 
>    
> 
> 
> 
>  
> 
>  
> 
> Here is the .Net web service code
> 
>  
> 
>  
> 
>  
> 
> Imports System.Web.Services
> 
> Imports System.Web.Services.Protocols
> 
>  
> 
> http://fatmango/wsExtranet")> _
> 
>  _
> 
> 
> _
> 
> Public Class getContacts
> 
> Inherits System.Web.Services.WebService
> 
>  
> 
>  _
> 
> Public Function getContacts(ByVal varCntKey As Integer) As
> Data.DataSet
> 
>  
> 
> Dim conn As Data.SqlClient.SqlConnection
> 
> Dim myDataAdapter As Data.SqlClient.SqlDataAdapter
> 
> Dim myDataSet As Data.DataSet
> 
> Dim cmdString As String = "Select * From tblCnt Where 
CntKey=" &
> varCntKey
> 
>  
> 
> conn = New
> Data.SqlClient.SqlConnection
("Server=monstermango;uid=sa;pwd=**;data
> base=ExtranetData")
> 
> myDataAdapter = New Data.SqlClient.SqlDataAdapter
(cmdString,
> conn)
> 
>  
> 
> myDataSet = New Data.DataSet()
> 
> myDataAdapter.Fill(myDataSet, "tblCnt")
> 
>  
> 
> Return myDataSet
> 
>  
> 
> End Function
> 
>  
> 
> End Class
> 
>  
> 
> The result of the web service call looks like this...
> 
>  
> 
>    
> 
> -   

> xmlns="http://fatmango/wsExtranet">
> 
> - 
> 
> xmlns:xs="http://www.w3.org/2001/XMLSchema"
> xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
> 
> - 
> 
> msdata:UseCurrentLocale="true">
> 
> - 
> 
> 
> - 
> 
> 
> - 
> 
> 
> - 
> 
> 
> - 
> 
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 
>    
> 

Re: [flexcoders] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Niklas Richardson



Stupid question - the file exists?On 5/12/06, Kevin Roche <[EMAIL PROTECTED]> wrote:







Hi 
Nik,
 
I 
found the problem, needed to add all the mxml files to the 
application.
 
Now I 
have another problem.
 
Error 
message says:
 
Unable 
to locate specified base class 'org.nevis.cairngorm.business.ServiceLocator' for 
component class 'ApplicationServices'
 
I do 
have the cairngorm directory structure (org.. etc) in the same directory as 
main.mxml.
 
Any 
ideas why its not found?
 
Kevin

  -Original Message-From: flexcoders@yahoogroups.com
 
  [mailto:flexcoders@yahoogroups.com]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:09To: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problen with 
  Cairngorm 2 version of Phones app.Hi Kevin,Good 
  to see you on here.Could you post the line(s) in question?  It 
  might be that you need to do some CheersNiklas
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> wrote:
  Hi,I 
am having difficult getting the Flex 2 Phones application working 
withFlex2 Beta 2 (Did not want to try Beta3 until it works)When 
I try to save and compile I get the following error:Implicit 
coercion of a value with static type 'Object' to a possibly unrelated 
type 'Array' Line 33 PhoneListGetCommand.asAnyone know why or what 
went wrong?  I am still learning ActionScript andcant see 
quite what is wrong here.Kevin 
Roche Yahoo! Groups 
Sponsor ~-->Protect your PC from spy ware with 
award winning anti spy technology. It's free.http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~->--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
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/ 
  -- Niklas 
  RichardsonPrismix LtdUK based Flex and ColdFusion Specialists 





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



  








-- Niklas RichardsonPrismix LtdUK based Flex and ColdFusion Specialists






--
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] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Kevin Roche





Hi 
Nik,
 
I 
found the problem, needed to add all the mxml files to the 
application.
 
Now I 
have another problem.
 
Error 
message says:
 
Unable 
to locate specified base class 'org.nevis.cairngorm.business.ServiceLocator' for 
component class 'ApplicationServices'
 
I do 
have the cairngorm directory structure (org.. etc) in the same directory as 
main.mxml.
 
Any 
ideas why its not found?
 
Kevin

  -Original Message-From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED]On Behalf Of Niklas 
  RichardsonSent: 12 May 2006 11:09To: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problen with 
  Cairngorm 2 version of Phones app.Hi Kevin,Good 
  to see you on here.Could you post the line(s) in question?  It 
  might be that you need to do some CheersNiklas
  On 5/12/06, Kevin 
  Roche <[EMAIL PROTECTED]> wrote:
  Hi,I 
am having difficult getting the Flex 2 Phones application working 
withFlex2 Beta 2 (Did not want to try Beta3 until it works)When 
I try to save and compile I get the following error:Implicit 
coercion of a value with static type 'Object' to a possibly unrelated 
type 'Array' Line 33 PhoneListGetCommand.asAnyone know why or what 
went wrong?  I am still learning ActionScript andcant see 
quite what is wrong here.Kevin 
Roche Yahoo! Groups 
Sponsor ~-->Protect your PC from spy ware with 
award winning anti spy technology. It's free.http://us.click.yahoo.com/97bhrC/LGxNAA/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/ 
  -- Niklas 
  RichardsonPrismix LtdUK based Flex and ColdFusion Specialists 





--
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] F2B3: Placing sort arrow on dataGrid

2006-05-12 Thread Manish Jethani



On 5/12/06, Scott Romer <[EMAIL PROTECTED]> wrote:
> I am working on a version of adding generic sorting on my class that
> extends DataGrid.  The "placeSortArrow" method of DataGrid is marked
> as protected, so I can call the method, but the arrow will never show
> up because sortIndex has to be set and is marked private.  In
> addition, I can't set some of the other needed variables (i.e.
> sortDirection on the dataGrid).

For the sort arrow to show up, you have to actually sort the
collection. See the updateSortIndexAndDirection method in DataGrid.as






--
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] Problen with Cairngorm 2 version of Phones app.

2006-05-12 Thread Niklas Richardson



Hi Kevin,Good to see you on here.Could you post the line(s) in question?  It might be that you need to do some CheersNiklasOn 5/12/06, 

Kevin Roche <[EMAIL PROTECTED]> wrote:

Hi,I am having difficult getting the Flex 2 Phones application working withFlex2 Beta 2 (Did not want to try Beta3 until it works)When I try to save and compile I get the following error: Implicit coercion of a value with static type 'Object' to a possibly
unrelated type 'Array' Line 33 PhoneListGetCommand.asAnyone know why or what went wrong?  I am still learning ActionScript andcant see quite what is wrong here.Kevin Roche

 Yahoo! Groups Sponsor ~-->Protect your PC from spy ware with award winning anti spy technology. It's free.

http://us.click.yahoo.com/97bhrC/LGxNAA/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/
-- Niklas RichardsonPrismix LtdUK based Flex and ColdFusion Specialists







--
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] Problen with Cairngorm 2 version of Phones app.

2006-05-12 Thread Kevin Roche



Hi,

I am having difficult getting the Flex 2 Phones application working with
Flex2 Beta 2 (Did not want to try Beta3 until it works)

When I try to save and compile I get the following error:

 Implicit coercion of a value with static type 'Object' to a possibly
unrelated type 'Array' Line 33 PhoneListGetCommand.as

Anyone know why or what went wrong?  I am still learning ActionScript and
cant see quite what is wrong here.

Kevin Roche










--
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] how to know the selectedItem in tree is a leaf or a branch in Flex2B3?

2006-05-12 Thread Sreenivas R



Use 
 
tree.dataDescriptor.isBranch(selectedItem) 
-Sreenivas 
On 5/12/06, calvin33castic <[EMAIL PROTECTED]> wrote:
in change Event, I got a selectedItem.but how can I know it's a leaf or a branch?
 Yahoo! Groups Sponsor ~-->You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/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/







--
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] how to know the selectedItem in tree is a leaf or a branch in Flex2B3?

2006-05-12 Thread calvin33castic




in change Event, I got a selectedItem.
but how can I know it's a leaf or a branch?












--
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: passing parameters to a popUp

2006-05-12 Thread Alin DICU



Thanks Tracy, Doug and Tom!!!

Bye,

Tracy Spratt a écrit :
> Here is a link to a full example that passes data several ways.
> http://www.cflex.net/showfiledetails.cfm?objectID=197
> Tracy
>
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
> On Behalf Of Doug Lowder
> Sent: Thursday, May 11, 2006 11:54 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: passing parameters to a popUp
>
> That's what the initobj parameter of PopUpManager.createPopUp() is
> for in Flex 1.5:
>
> var login = mx.managers.PopUpManager.createPopUp(this, PopUp, false,
>    { nomPhoto: "vsdvdsvsdvsdv"} );
>
>
>
> --- In flexcoders@yahoogroups.com, Alin DICU <[EMAIL PROTECTED]>
> wrote:
> >
> > Hello,
> >
> > I want to create a popUp and pass parameters to it so that it can
> > dynamically display information. Is it possible?
> >
> > Here are some parts of my code:
> >
> > --PopUp.mxml---
> 
> >
> > 
> > 
> > xmlns:mx="http://www.macromedia.com/2003/mxml"
> > title="Les détails de la sélection"
> > x="268" y="86"
> > closeButton="true"
> > click="this.deletePopUp();"
> > width="380" height="300">
> >   
> > 
> > 
> > 
> >   
> > 
> > id="remplirListeHttpSrv"
> > concurrency="multiple"
> > method="GET"
> >    
> url="" href="http://localhost:8084/FlexXMLServer/RemplirListeServlet">http://localhost:8084/FlexXMLServer/RemplirListeServlet"
> > showBusyCursor="true"
> > resultFormat="object"
> > fault=""
> > />
> >   
> > 
> height="100%">
> > 
> > backgroundColor="#CC">  
> > 
> >
> source="http://localhost:8084/FlexXMLServer/Photos/Mercedes/Mercedes
> ML
> > back.jpg"/>  
> > 
> >
> > 
> height="100%"
> > backgroundColor="#CC">
> > 
> >   
> > 
> > 
> > 
> > 
> > 
> id="nomPhotoLbl"
> > width="120"/>  
> > 
> > 
> > 
> id="nomPhotoTxt"
> > text="{nomPhoto}" width="200"/>
> >   
> >   
> >    
> -
> > 
> horizontalAlign="right">
> > 
> >   
> > click="changerCommentaire()" width="50%"/>
> >   
> >  
>    
> >   
> >   
> > 
> > 
> >   
> > 
> > click="this.deletePopUp();"/>
> >
> > 
> >
> > --TitleWindowApp.mxml--
> -
> >
> > 
> > 
> > http://www.macromedia.com/2003/mxml"
> xmlns="*"
> > backgroundColor="#FF">
> >
> >    
> >    
> >    
> >  
> >    
> >
> >    
> >
> >    
> click="showWindow();"/>
> >    
> >    
> >
> >    
> >
> > 
> >
> > So what I want to is to dynamically display the "nomPhotoTxt"
> InputField
> > into the PopUp.mxml. A solution was to instantiate a PopUp and
> parameter
> > it before displaying it, but apparently the
> > mx.managers.PopUpManager.createPopUp(...) doesn't allow it.
> >
> > Are there any other ways?
> >
> > 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
>
>
>
>
>
>
>
>
>
>
>
> --
> 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 
> 

  1   2   >