Re: [flexcoders] cellRenderer

2005-09-08 Thread Manish Jethani
On 9/7/05, Philippe Maegerman <[EMAIL PROTECTED]> wrote:

> If I would ask my question differently it would be : 
> Is it possible to change cellRenderers on the fly, switching from
> cellRendererA to cellRendererB ? 

I think changing the cell renderer that way should work - i.e it
should refresh the DataGrid with the new cells.  I haven't tried.  If
it doesn't work, you could try refreshing the grid by reassigning the
dataProvider

  grid.dataProvider = grid.dataProvider


 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] 3 problems about datagrid ...

2005-09-08 Thread Manish Jethani
On 9/8/05, xiankevin2005 <[EMAIL PROTECTED]> wrote:

> 1:

> when i use a cellrenderer in the datagrid,such as checkCellRenderer,in
> the click event handler of the checkBox,the method
> listOwner.dataProvider.editField is invoked.but it seems that the
> datagrid control cannot handle the event that the value of the cell was
> changed.

Not sure what you mean.  Could you explain a bit more, please?

> if my app need to get the number of the row in which the checkBox was
> clicked just now,what should i do?

Call this from within the cell renderer code:

  getCellIndex().itemIndex

> 2:
> when the text in some cell is too long to be fully displayed,i think i
> need to set the wordWrap and variableRowHeight to true.however,if i set
> the rowCount to a certain number then,3 for instance,there will be some
> other empty row at the bottom...why?

Don't know really, but I'm guessing it's got to do with the way the
DataGrid calculates its preferred height.  Try setting the height
explicitly to a number if that works for you.

> 3:
> if i'd like the text be cut off to fit the cell rather than
> wrap.further more,while the width of the column is changing,the text
> should adjust its length...any ideas?

I think the text already gets cut off if it's too long to fit in the
cell, no?  If you're talking about truncating it and then appending it
with an ellipsis ("..."), you need to use a custom cell renderer to
start with.


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] getting data from xml file

2005-09-08 Thread Manish Jethani
On 9/8/05, Prasad Dhananjaya <[EMAIL PROTECTED]> wrote:

> When I'm trying to run this application, getting the following error
> "Problem parsing external XML".

That's it?  What problem?

> And also I am not sure of writing varible(is this correct 
> "jobrepeat.jobs.job." ?).

It should be jobrepeat.job.*

> jobdata.xml--
> 
> 
> 
> 
> job1
> 200
> 100
> 100
> job1.jpg
> 
[...]


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread Daniel Harfleet
I would add that a quick way to deploy a vanilla flex war to Tomcat
with the preferred name of you webapp, is to rename flex.war to your
webapp name  e.g.  rename flex.war to bookstore.war   and drop it into
your Tomcat webapps directory

dan


--- In flexcoders@yahoogroups.com, "charlespaz1" <[EMAIL PROTECTED]> wrote:
> I've just created and posted a HOWTO for installing Macromedia Flex on
> Tomcat in a RHEL AS4 / Fedora Core 3 environment.
> 
> Comments and critiques are welcome.
> 
> http://members.cox.net/midian/howto/flex+tomcat.htm




 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] cellRenderer

2005-09-08 Thread Philippe Maegerman





Sorry but that doesn't work, I have tried almost 
everything I could think of, including your advices, but can't 
succeed.
I put below a simple example of what I am trying 
to do.
 
There are 2 buttons supposed to change the 
cellRenderer onClick, you can see that the DataGrid is redrawn but the new 
cellRenderer isn't taken in account :(( I have tried with cellRenderer = 
'boldRenderer' + cellRenderer = boldRenderer
 
Something I have discovered, in the mx:DataGrid tag, if 
you add  initialize="event.target.getColumnAt(1).cellRenderer =  
boldRenderer" the cellRenderer is taken, but not if you use the creationComplete 
event.
 
I am out of ideas right now, starting to think it is 
not feasible :((
 
http://www.macromedia.com/2003/mxml">   Maegerman  PhilippeMy 
name  is 
nobody  
 

 

 
 
boldRenderer

http://www.macromedia.com/2003/mxml" 
fontWeight="bold">
 
italicRenderer
-
http://www.macromedia.com/2003/mxml" 
fontStyle="italic">
 
 
Philippe 
Maegerman


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Manish 
JethaniSent: jeudi 8 septembre 2005 9:31To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] 
cellRenderer
On 9/7/05, Philippe Maegerman <[EMAIL PROTECTED]> 
wrote:> If I would ask my question differently it would be : > 
Is it possible to change cellRenderers on the fly, switching from> 
cellRendererA to cellRendererB ? I think changing the cell renderer that 
way should work - i.e itshould refresh the DataGrid with the new 
cells.  I haven't tried.  Ifit doesn't work, you could try 
refreshing the grid by reassigning thedataProvider  
grid.dataProvider = grid.dataProvider





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



  






--**STATEMENT OF CONFIDENTIALITY** 
This e-mail and any attached files are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of author and do not necessarily represent those the Emakina Company. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.
We also inform you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--


boldRenderer.mxml
Description: boldRenderer.mxml


dGridCellRenderer.mxml
Description: dGridCellRenderer.mxml


italicRenderer.mxml
Description: italicRenderer.mxml


[flexcoders] Panel at 100% - application bg still showing...

2005-09-08 Thread flexhansen
Hi,

I'm looking to have a panel-component fill all of the application area. 

I've set the application margins to zero, but there's still a brim of
background around the panel component (ca. 2 pixels in width).

Any help would be much appreciated :o)

Cheers,

  -michael





 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] Panel at 100% - application bg still showing...

2005-09-08 Thread vnice Cute



Hi,
Yeah you should do it like to fill it on the appilcation area
 
http://www.macromedia.com/2003/mxml" marginBottom="-5" marginLeft="-5" marginRight="-5" marginTop="-5" >flexhansen <[EMAIL PROTECTED]> wrote:
Hi,I'm looking to have a panel-component fill all of the application area. I've set the application margins to zero, but there's still a brim ofbackground around the panel component (ca. 2 pixels in width).Any help would be much appreciated :o)Cheers,  -michael
		 Click here to donate to the Hurricane Katrina relief effort.





--
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
  
  
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] getting data from xml file

2005-09-08 Thread Prasad Dhananjaya
Thanks for reply.

> That's it?  What problem?
That's what I can't understand.There is no errors in XML file.
But error message says...[Problem parsing external XML]

I searched the Flexcoders archive and found some threads.
http://www.mail-archive.com/flexcoders@yahoogroups.com/msg10945.html

it says need to reinstall Flex Builder 1.5

Is there any other way to solve this?

thanks


> On 9/8/05, Prasad Dhananjaya <[EMAIL PROTECTED]> wrote:
> 
> > When I'm trying to run this application, getting the following error
> > "Problem parsing external XML".
> 
> That's it?  What problem?
> 
> > And also I am not sure of writing varible(is this correct 
> > "jobrepeat.jobs.job." ?).
> 
> It should be jobrepeat.job.*
> 
> > jobdata.xml--
> > 
> > 
> > 
> > 
> > job1
> > 200
> > 100
> > 100
> > job1.jpg
> > 
> [...]
> 
> Hello,
> 
> I hava a small problem with getting data from xml file.
> What I want to do is get the image data from xml file and display
> image on canves.
> When I'm trying to run this application, getting the following error
> "Problem parsing external XML".
> 
> And also I am not sure of writing varible(is this correct 
> "jobrepeat.jobs.job." ?).
> 
> If somebody could help, I would appreciate it.
> 
> Thanks,
> 
> ---readxmlfile.mxml--
> 
> http://www.macromedia.com/2003/mxml"; >
> 
>  
> 
> 
>   
>  backgroundColor="#D3EFFE">
>   
>  x="{jobrepeat.jobs.job.xcordinate} y="{jobrepeat.jobs.job.ycordinate}" >
> 
>   
> 
>   
> 
> 
> 
> jobdata.xml--
> 
> 
> 
>   
>   job1
>   200
>   100
>   100
> job1.jpg
>   
>   
>   job2
>   300
>   200
>   100
> job2.jpg
>   
>   
> 
> --


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: Panel at 100% - application bg still showing...

2005-09-08 Thread flexhansen
Thanks a lot!

I wasn't aware that the margin could hold negative values.

Seems like an odd construction of the App. component though.

Thanks again

 -michael




--- In flexcoders@yahoogroups.com, vnice Cute <[EMAIL PROTECTED]> wrote:
> Hi,
> Yeah you should do it like to fill it on the appilcation area
>  
> 
> http://www.macromedia.com/2003/mxml";
marginBottom="-5" marginLeft="-5" marginRight="-5" marginTop="-5" >
> 
> 
> 
> flexhansen <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I'm looking to have a panel-component fill all of the application area. 
> 
> I've set the application margins to zero, but there's still a brim of
> background around the panel component (ca. 2 pixels in width).
> 
> Any help would be much appreciated :o)
> 
> Cheers,
> 
>   -michael
> 
> 
> 
> 
> 
> --
> 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 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. 
> 
> 
> -
> 
> 
> 
>   
> -
>  Click here to donate to the Hurricane Katrina relief effort.




 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/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] no longer jumping to a secure page

2005-09-08 Thread paulehooker
Hi All

I was wondering if anyone had any thoughts or guidance as to how best to 
indicate  
information is being collected securely i.e switching to https.

For example in the traditional approach to web development when you are taking 
information securely you jump from the standard url http:/www.mywebsite.com/
basket.html to https://www.mywebsite.com/checkout.html. The viewers of the 
website 
then see the padlock appear in the status bar of their browser and now feel 
some security 
that their information is being encrypted.

Now from a flex perspective two things obviously hinder this. The first being 
to enable the 
history functionality flex runs within a frame which can be reflected 
insecurely in a  
browser even if the particularly frame in question is running securely. 
And secondly the ideology of no longer needing to refresh the browser window 
doesn't  
give you an excuse to jump to a secure version of the website.

Now I guess there are a number of ways to do this:

1. Take the details within your RIA and transfer the information securely using 
Remoting 
to your underlying business logic ( we would be using remoting and POJO). To 
reassure 
the user display the page with a selection of well placed padlocks, security 
statements and 
the like.

2. Save state out of the RIA to a remote datastore and force the browser to 
reload the 
same RIA in an https version of the website and re-initialise it with the 
previously saved 
state.

3. Run the whole lot in https and avoid the issue.

As you can tell at the moment I am considering this very much from a 
hypothetical point 
of view. I appreciate further consideration needs to be made as to the specific 
security of 
taking information but for now I am concerned as to the users perception of 
such a 
process.

Cheers

Paul 




 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: getting data from xml file

2005-09-08 Thread xiankevin2005
i think this would be fine:






kevin

--- In flexcoders@yahoogroups.com, Prasad Dhananjaya <[EMAIL PROTECTED]> 
wrote:
> Hello,
> 
> I hava a small problem with getting data from xml file.
> What I want to do is get the image data from xml file and display
> image on canves.
> When I'm trying to run this application, getting the following error
> "Problem parsing external XML".
> 
> And also I am not sure of writing varible(is this 
correct "jobrepeat.jobs.job." ?).
> 
> If somebody could help, I would appreciate it.
> 
> Thanks,
> 
> ---readxmlfile.mxml-
-
> 
> http://www.macromedia.com/2003/mxml"; >
> 
>  
> 
> 
>   

> 
>   
> 
> 
>   
> 
>   
> 
> 
> 
> jobdata.xml--
> 
> 
> 
>   
>   job1
>   200
>   100
>   100
> job1.jpg
>   
>   
>   job2
>   300
>   200
>   100
> job2.jpg
>   
>   
> 
> --





 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: 3 problems about datagrid ...

2005-09-08 Thread xiankevin2005
thanks for the reply...let me describe the problem i'm facing.
assume that the dategrid is a song list with several pages and i use 
a CheckCellRenderer for a column.when user clicks the check box,the 
song will add to his play list and remove it for another click.
i want to create a click handler in the mxml file,which functions to 
watch all the check boxes,and when one of them is clicked,i can get 
the number of the row.then append the selected song to the play list.

i used to add some code in the click handler in 
CheckCellRenderer.as.like this:
if(check.checked)
  listOwner._parent.addToPlayList(getCellIndex().itemIndex);
else
  listOwner._parent.delFromPlayList(getCellIndex().itemIndex);
  
it seems strange though can work properly...

how can i do?


about problem 3:
to add a "..." is just what i want.but how to implement this cell 
renderer?i've no idea...any prompt would be appreciated...

thanks a lot.

kevin





 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





RE: [flexcoders] Re: 3 problems about datagrid ...

2005-09-08 Thread Dirk Eismann
You could make the CheckCellRenderer dispatch an event on the DataGrid,
i.e. inside your CheckCellRenderer:

  

This will make the DataGrid dispatch a "cellClick" event. To listen to
this event you'll need to add an event listener on the DataGrid

  myGrid.addEventListener("cellClick", this);

The clicked row will be available in the event object passed to the
cellClick function, e.g.

  function cellClick(event:Object):Void {
mx.controls.Alert.show("Row clicked: " + event.row);
  }

Dirk.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of xiankevin2005
Sent: Thursday, September 08, 2005 1:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: 3 problems about datagrid ...

thanks for the reply...let me describe the problem i'm facing.
assume that the dategrid is a song list with several pages and i use a
CheckCellRenderer for a column.when user clicks the check box,the song
will add to his play list and remove it for another click.
i want to create a click handler in the mxml file,which functions to
watch all the check boxes,and when one of them is clicked,i can get the
number of the row.then append the selected song to the play list.

i used to add some code in the click handler in
CheckCellRenderer.as.like this:
if(check.checked)
  listOwner._parent.addToPlayList(getCellIndex().itemIndex);
else
  listOwner._parent.delFromPlayList(getCellIndex().itemIndex);
  
it seems strange though can work properly...

how can i do?


about problem 3:
to add a "..." is just what i want.but how to implement this cell
renderer?i've no idea...any prompt would be appreciated...

thanks a lot.

kevin





 Yahoo! Groups Sponsor ~-->
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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



 





 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread Douglas Knudsen
http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html
check out mod_jk.  I set it up recently on a Slack box.  It certainly
is no walk in the park to setup though, seems every config example I
found was different, that and I have been in the windows world the
past couple years.  In the end I now have apache handing off requests
for say /flex to tomcat.  In short I grabbed the source for mod_jk,
played build/make and all, added a couple config files and bamm.  For
the RH folks, I believe you can grab binaries for it.

DK

On 9/7/05, J.A. Rottman <[EMAIL PROTECTED]> wrote:
> Awsome tutorial. Do you have a tutorial for installing
> flex with tomcat and passing it on to apache. This is
> one thing that I have no been able to get to work yet.
> 
> 
> --- charlespaz1 <[EMAIL PROTECTED]> wrote:
> 
> > I've just created and posted a HOWTO for installing
> > Macromedia Flex on
> > Tomcat in a RHEL AS4 / Fedora Core 3 environment.
> >
> > Comments and critiques are welcome.
> >
> > http://members.cox.net/midian/howto/flex+tomcat.htm
> >
> >
> >
> >
> 
> 
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 


-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Problem accessing RemoteObjects

2005-09-08 Thread Jeremy Crane










Since I am able to invoke my class, and
receive a valid response from a JSP page, can you think of anything else I
might try to get my RemoteObject call to work from within Flex?

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeremy Crane
Sent: Wednesday, September 07,
2005 9:58 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Problem
accessing RemoteObjects



 

I will try to load the class in a JSP
later on today.  Below is basically what I have my User class stripped
down to right now.  See any problems?  Have any other suggestions?

 

package com.obc;

 

import java.sql.*;

 

public class User {

   


public User(){}

 

public String qryUsers(){

   
return "Hello, from Java RemoteObject";

   


}

}

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brian Deitte
Sent: Wednesday, September 07,
2005 9:29 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Problem
accessing RemoteObjects



 

The "Creating Service" message
you see is from the client side, so it is a little misleading in that it makes it
look like RemoteObject already found things, but it isn't an indication of how
things are happening on the server side.  The error message you are
getting says that the class could not be found or could not be loaded on the
server side.  Can you try to load the class in a JSP page or a servlet,
just to be really sure that it works?  Do you have a no-argument
constructor?  What classes are you importing within com.obc.User?

 

(And looking at the error message- ah,
shoot, I thought we had gotten all the Flash Remoting MX references out of
there.  :)  ) -Brian

 



 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeremy Crane
Sent: Wednesday, September 07,
2005 10:16 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problem
accessing RemoteObjects

I am trying to access a RemoteObject that I created to retrieve
information from a MSSQL database, and cannot get it to work. Any suggestions
on this are greatly appreciated. Details to follow:

When Debugging the app from within Flex Builder I get the following under the
Output Tab:

RemoteObject_AMF: Creating Service for com.obc.User
RemoteObject_AMF: Creating gateway connection for http://localhost:/development/amfgateway
RemoteObject_AMF: Successfully created Service.

However, when I click on a button I created to invoke the RemoteObject method I
receive this error:

Service threw an exception during method invocation: No service named
com.obc.User is known to Flash Remoting MX.

I have the following in my flex-config.xml file under 


*

I have also modified my RemoteObject to simply return a string, until I am able
to get this to work. The java class files are being placed in the following
location on the JRun Server:

\servers\\development\WEB-INF\classes\com\obc










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

2005-09-08 Thread Dirk Eismann
Which servlet container / application server are you using? Do you also
have ColdFusion installed?
 
Dirk.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeremy Crane
Sent: Thursday, September 08, 2005 4:07 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Problem accessing RemoteObjects



Since I am able to invoke my class, and receive a valid response from a
JSP page, can you think of anything else I might try to get my
RemoteObject call to work from within Flex?



 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/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] Color component

2005-09-08 Thread Philippe Maegerman





cool color 
component .. free download + swc version
http://www.powerclients.de/colorfan-component
 
Philippe 
Maegerman
 





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



  






--**STATEMENT OF CONFIDENTIALITY** 
This e-mail and any attached files are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of author and do not necessarily represent those the Emakina Company. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.
We also inform you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--


[flexcoders] Re: Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread charlespaz1
Thanks for the suggestion.  Updated.

--- In flexcoders@yahoogroups.com, "Daniel Harfleet" <[EMAIL PROTECTED]>
wrote:
> I would add that a quick way to deploy a vanilla flex war to Tomcat
> with the preferred name of you webapp, is to rename flex.war to your
> webapp name  e.g.  rename flex.war to bookstore.war   and drop it into
> your Tomcat webapps directory
> 
> dan





 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread charlespaz1
mod_jk is supposed to be one way to do it, but every HOWTO and
tutorial on using it is different or out of date, and I never got it
to work reliably.  The simplest, most consistent way I found was
simply ProxyPass/ProxyPassReverse. 

I'll create a quick HOWTO today and post it.

--- In flexcoders@yahoogroups.com, "J.A. Rottman" <[EMAIL PROTECTED]> wrote:
> Awsome tutorial. Do you have a tutorial for installing
> flex with tomcat and passing it on to apache. This is
> one thing that I have no been able to get to work yet.






 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Color component

2005-09-08 Thread bsd










Very cool..

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Philippe Maegerman
Sent: Thursday, September 08, 2005
9:32 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Color
component



 



cool color component .. free download +
swc version





http://www.powerclients.de/colorfan-component





 



Philippe
Maegerman



 











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



  








--**STATEMENT OF CONFIDENTIALITY** 
This e-mail and any attached files are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of author and do not necessarily represent those the Emakina Company. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.
We also inform you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.--



[flexcoders] Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread charlespaz1
Created and posted configuration HOWTO to get Apache and Tomcat to
connect via Proxy:

http://members.cox.net/midian/howto/apache+tomcat+proxy.htm

Comments and critiques welcome.




 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/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] checkbox in repeater tag

2005-09-08 Thread relisanhard52
Hi
I have a repeater tag which goes through an array. In my tag, i create 
a checkbox. I want my check box id to be created dynamically.
I use



But it throws an error saying id is not a valid identifier. Apparently 
it does not throw any error on label and it works perfect.

Any ideas how to create the id dynamically.

Regards
Husain




 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/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] modifying the datefield object...

2005-09-08 Thread Greg Morphis
Is it possible to capture/modify the value that shows in the textbox
of the datefield object?
I've tried .value, .text and looked at the livedocs (didnt see .value
or .text or anything usable).
What I'm trying to do is make it to where if someone clicks on a date
(9/20/2005) then the date that shows is that week's Saturday
(9/24/2005).
The easiest way of doing this I found is just using
disabledDays="[0,1,2,3,4,5]" to disable all of the days except
Saturday, which works fine, no overhead, etc.. The user would just
select the Saturday that applies.
But is there a way I can pass that selected value to an actionscript
function, get that week's Saturday and pass it back to the DateField?
>From the looks of it it would be difficult, you'd have to parse the
date shown ie 20 Sep 2005 to get the day, month, year and then preform
the fuction to get the following Saturday 9/24/2005 and then parse it
back to the format Flex takes 24 Sep 2005 and lastly populate the text
box with that value.
What are your ideas?


-- 
Auxilium meum a Domino


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/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] not-explicitly-set VO attribute being lost when passed to CFC

2005-09-08 Thread a8i364io
OK I think this is really weird.  I've been making good progress in 
Cairngorm'ing an app I built but I've run across a problem.  I've got 
this thingy that updates a database using a CFC that accepts a 
structure as its only argument.  When I don't explicitly define each 
of the attributes of the VO that I'm passing, they get lost somewhere 
in the send between Flex and CF - I get this message back from the 
CFC: 

"Element ATTRIBUTE_NAME is undefined in STRUCTURE_NAME"

I know that attribute is being passed all the way through the 
Cairngorm architure because I can trace it until just before the CFC 
call.

here's the relevant code:

ViewHelper.as 
(if I uncomment that one line of code where I'm just setting the 
attribute equal to itself the whole thing works like a charm!)


function updateDL():Void
{
var eventObj = new Object();
eventObj.dlToUpdate = new ListVO();
eventObj.dlToUpdate = ModelLocator.selectedList;
//eventObj.dlToUpdate.DLAlias = 
eventObj.dlToUpdate.DLAlias;
eventObj.dlToUpdate.OwnerAlias = "DistListAdmin";
eventObj.dlToUpdate.EditorAlias = "System";
EventBroadcaster.getInstance().broadcastEvent( 
DLController.EVENT_CONCRETE_COMMAND, eventObj );
closeForm();
}


ConcreteCommand.as


public function execute( event : Event ):Void
{
var delegate : ListDelegate = new ListDelegate( 
this );
delegate.updateDL(event);
}



ListDelegate.as
(the below alert shows the correct value whether the line
of code in the ViewHelper.as file is commented-out or not)


public function updateDL(event:Object) : Void
{   
var dlToUpdate:ListVO;
dlToUpdate=event.data.dlToUpdate;
mx.core.Application.alert(dlToUpdate.DLAlias);
var call = service.updateDL({dlToUpdate:dlToUpdate});
/...
}




AppHandler.CFC







ANY INSIGHT/HELP MUCH APPRECIATED!





 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
I've found that I can use this to get the date
 change="displayDate(event.target.selectedDate)" 





On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> Is it possible to capture/modify the value that shows in the textbox
> of the datefield object?
> I've tried .value, .text and looked at the livedocs (didnt see .value
> or .text or anything usable).
> What I'm trying to do is make it to where if someone clicks on a date
> (9/20/2005) then the date that shows is that week's Saturday
> (9/24/2005).
> The easiest way of doing this I found is just using
> disabledDays="[0,1,2,3,4,5]" to disable all of the days except
> Saturday, which works fine, no overhead, etc.. The user would just
> select the Saturday that applies.
> But is there a way I can pass that selected value to an actionscript
> function, get that week's Saturday and pass it back to the DateField?
> From the looks of it it would be difficult, you'd have to parse the
> date shown ie 20 Sep 2005 to get the day, month, year and then preform
> the fuction to get the following Saturday 9/24/2005 and then parse it
> back to the format Flex takes 24 Sep 2005 and lastly populate the text
> box with that value.
> What are your ideas?
> 
> 
> --
> Auxilium meum a Domino
> 


-- 
Auxilium meum a Domino


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread J.A. Rottman
I have looked all over my httpd.conf file, and I have
not been able to find hte ifmodule for mod_proxy at
all. I have done a source install of apache 2.53.0, do
I need to download this module or is there something I
am missing.

--- charlespaz1 <[EMAIL PROTECTED]> wrote:

> Created and posted configuration HOWTO to get Apache
> and Tomcat to
> connect via Proxy:
> 
>
http://members.cox.net/midian/howto/apache+tomcat+proxy.htm
> 
> Comments and critiques welcome.
> 
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread charlespaz1
Standard install of apache on RHEL 4 and FC3 have a commented out
entry for it.  All it does is verify that mod_proxy is loaded.

In my httpd.conf it is listed just above Virtual Host section.
#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#


ProxyPass /flex/ http://127.0.0.1:8081/flex/
ProxyPassReverse /flex/ http://127.0.0.1:8081/flex/

#ProxyRequests On
#
#
#Order deny,allow
#Deny from all
#Allow from .example.com
#

#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via:
headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable a cache of proxied content, uncomment the following lines.
# See http://httpd.apache.org/docs-2.0/mod/mod_cache.html for more
details.
#
#
#   CacheEnable disk /
#   CacheRoot "/var/cache/mod_proxy"
#
#


# End of proxy directives.



--- In flexcoders@yahoogroups.com, "J.A. Rottman" <[EMAIL PROTECTED]> wrote:
> I have looked all over my httpd.conf file, and I have
> not been able to find hte ifmodule for mod_proxy at
> all. I have done a source install of apache 2.53.0, do
> I need to download this module or is there something I
> am missing.





 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: checkbox in repeater tag

2005-09-08 Thread Rajesh Jayabalan
Hi,

 I had the same problem, I found out that you cannot dynamically
create id in the repeater tag.

 When you create a checkbox in an array you will get an array of check
boxes and you can go thru them in a for loop to find their values.. 

 Here I am doing it with a combobox







and in the AS my for loop looks like

var atts:String;
for (var i = 0; i < itatt.length; i++)
{
selectedItem = itatt[i].selectedItem;
if (selectedItem != null && selectedItem.label != null)
{
if (atts == null)
{
atts = new String();
}
atts = atts+itatt[i].labelField;
atts = atts+": ";
atts = atts+selectedItem.label;
if (i < itatt.length-1)
{
atts = atts+", ";
}
}   

You can pretty much convert this to use with checkbox.

Rajesh J
--- In flexcoders@yahoogroups.com, "relisanhard52"
<[EMAIL PROTECTED]> wrote:
> Hi
> I have a repeater tag which goes through an array. In my tag, i create 
> a checkbox. I want my check box id to be created dynamically.
> I use
> 
>  label="{list.currentItem.myObjectName}"/>
> 
> But it throws an error saying id is not a valid identifier. Apparently 
> it does not throw any error on label and it works perfect.
> 
> Any ideas how to create the id dynamically.
> 
> Regards
> Husain




 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] Re: Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread J.A. Rottman
I installed the redhat apache version, and I am
getting a bit closer to getting this right. I am now
getting a 502 error from apache. 

Bad Gateway

The proxy server received an invalid response from an
upstream server.

here is my connector in server.xml


Here is my proxy config from httpd.conf

#
# Proxy Server directives. Uncomment the following
lines to
# enable the proxy server:
#

ProxyPass /samples/ http://127.0.0.1:8081/samples/
ProxyPassReverse /samples/
http://127.0.0.1:8081/samples/
#ProxyRequests On
#
#
#Order deny,allow
#Deny from all
#Allow from .example.com
#

#
# Enable/disable the handling of HTTP/1.1 "Via:"
headers.
# ("Full" adds the server version; "Block" removes all
outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable a cache of proxied content, uncomment the
following lines.
# See
http://httpd.apache.org/docs-2.0/mod/mod_cache.html
for more details.
#
#
#   CacheEnable disk /
#   CacheRoot "/var/cache/mod_proxy"
#
#


# End of proxy directives.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
Well, I've gotten this far...
function displayDate(date)
{
   var cMonth;
   var cYear;
   var cDay;
   var dayNum;
var tempDate;
   
   cMonth = (date.getMonth()) + 1;
   cYear = date.getFullYear();
   cDay = date.getDate();
   dayNum = date.getDay();
if(dayNum != 6) {
cDay = (date.getDate()) + (6 - dayNum);
}
fooDate.text = ("Year:" + cYear + " Month:" + cMonth + " Day:" 
+ cDay); 
daDate.selectedDate = new Date(cYear,cMonth,cDay);
   
}   


However daDate doesnt show the value of fooDate, it remains showing
whatever I click on.
For example; I click on Sept 13th 2005, the label shows the correct
value of "Year:2005 Month:9 Day:17" or Sept 17th 2005, however the
datefield value remains Sept 13th 2005.

Livedocs says it accepts a date object, is that not one? 
"daDate.selectedDate = new Date(cYear,cMonth,cDay);" ??

Thanks!





On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> I've found that I can use this to get the date
>  change="displayDate(event.target.selectedDate)"
> 
> 
> 
> 
> 
> On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > Is it possible to capture/modify the value that shows in the textbox
> > of the datefield object?
> > I've tried .value, .text and looked at the livedocs (didnt see .value
> > or .text or anything usable).
> > What I'm trying to do is make it to where if someone clicks on a date
> > (9/20/2005) then the date that shows is that week's Saturday
> > (9/24/2005).
> > The easiest way of doing this I found is just using
> > disabledDays="[0,1,2,3,4,5]" to disable all of the days except
> > Saturday, which works fine, no overhead, etc.. The user would just
> > select the Saturday that applies.
> > But is there a way I can pass that selected value to an actionscript
> > function, get that week's Saturday and pass it back to the DateField?
> > From the looks of it it would be difficult, you'd have to parse the
> > date shown ie 20 Sep 2005 to get the day, month, year and then preform
> > the fuction to get the following Saturday 9/24/2005 and then parse it
> > back to the format Flex takes 24 Sep 2005 and lastly populate the text
> > box with that value.
> > What are your ideas?
> >
> >
> > --
> > Auxilium meum a Domino
> >
> 
> 
> --
> Auxilium meum a Domino
> 


-- 
Auxilium meum a Domino


 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/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] I have an overloaded Java method, How can I call an specific method using RemoteObject?

2005-09-08 Thread Oscar . Cortes
I have a overloaded method in Java which I am calling using RemoteObject.
One version of the methods requires X parameters while the other requires
Y. I am trying to call the one with Y but it Flex tries to call the one
with X by the default. How can I tell Flex which to call?

Thanks

---
This e-mail message (including attachments, if any) is intended for the use
of the individual or entity to which it is addressed and may contain
information that is privileged, proprietary , confidential and exempt from
disclosure.  If you are not the intended recipient, you are notified that
any dissemination, distribution or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please notify the sender and erase this e-mail message immediately.
---




 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/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] setting focus back to component that fails validation?

2005-09-08 Thread cruegger2000

I create a form dynamically and need to do my data validations
within ActionScript code. I generate a TextInput component that
must be numeric. What I'd like to have happen is that if the
user enters non-numeric data, I issue an alert; when the user
clicks ok, the focus goes back to the TextInput field that failed
validation. However, I can't get the focus to go back to the
failed component (even if I dont issue an alert). Code snippets
below, any ideas what I'm doing wrong?
Thanks in advance:

mxml snippet


ActionScript:
var myValidator:NumberValidator = new NumberValidator();
public function itemChanged(event): Void
{
  var ok:Boolean =
NumberValidator.validateNumber(myValidator,
   event.target.text,
   null,
   "text");

  if (ok == false)
  {
// Force focus to failed component
event.target.setFocus();
  }
}





 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Connection Pooling, Proxool, and Oracle

2005-09-08 Thread stealth1399
Does anyone know of any open source projects similar to proxool that
will implment connection pooling with flex?

--- In flexcoders@yahoogroups.com, "stealth1399" <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> The application that I'm working on is filling up the connections to
> our Oracle database. We are using Remote Objects (POJOs) to connect to
> the database.  The application is moderatley database intensive and to
> speed up the responsiveness, connections are not explicitly being
> closed after they are used.  Instead we are closing connections by
> overiding the "finalize" method.  For this reason only one instance of
> the connections is used throught the lifetime of the class.
> 
> The flex client is using "stateful-class" type in the RemoteObject
> invocation but it appears that there are still mulitple database
> connections being created with every client.  
> 
> To fix thie multiple database connection issue, we tried making the
> connection static, which caused an error presumably because of the
> multiple Asynchronus calls being made  to the database.
> 
> When proxool was integrated into our application, the connection would
> be established but when the application tried to use the connection
> there would be a similar error as before.
> 
> Please point me in the direction of the best practice for properly
> managing connection pools with flex applications.
> 
> Thanks for your time.




 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Philippe Maegerman
You added 1 to the month for the display, however you need to substrat that 
value later when creating your new date:

daDate.selectedDate = new Date(cYear,cMonth-1,cDay);

Cheers,

Philippe

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Greg Morphis
Sent: Thu 8/09/2005 21:12
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: modifying the datefield object...
 
Well, I've gotten this far...
  function displayDate(date)
  {
 var cMonth;
 var cYear;
 var cDay;
 var dayNum;
var tempDate;
 
 cMonth = (date.getMonth()) + 1;
 cYear = date.getFullYear();
 cDay = date.getDate();
 dayNum = date.getDay();
if(dayNum != 6) {
  cDay = (date.getDate()) + (6 - dayNum);
}
fooDate.text = ("Year:" + cYear + " Month:" + cMonth + " Day:" + 
cDay); 
daDate.selectedDate = new Date(cYear,cMonth,cDay);
 
  }   


However daDate doesnt show the value of fooDate, it remains showing
whatever I click on.
For example; I click on Sept 13th 2005, the label shows the correct
value of "Year:2005 Month:9 Day:17" or Sept 17th 2005, however the
datefield value remains Sept 13th 2005.

Livedocs says it accepts a date object, is that not one? 
"daDate.selectedDate = new Date(cYear,cMonth,cDay);" ??

Thanks!





On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> I've found that I can use this to get the date
>  change="displayDate(event.target.selectedDate)"
> 
> 
> 
> 
> 
> On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > Is it possible to capture/modify the value that shows in the textbox
> > of the datefield object?
> > I've tried .value, .text and looked at the livedocs (didnt see .value
> > or .text or anything usable).
> > What I'm trying to do is make it to where if someone clicks on a date
> > (9/20/2005) then the date that shows is that week's Saturday
> > (9/24/2005).
> > The easiest way of doing this I found is just using
> > disabledDays="[0,1,2,3,4,5]" to disable all of the days except
> > Saturday, which works fine, no overhead, etc.. The user would just
> > select the Saturday that applies.
> > But is there a way I can pass that selected value to an actionscript
> > function, get that week's Saturday and pass it back to the DateField?
> > From the looks of it it would be difficult, you'd have to parse the
> > date shown ie 20 Sep 2005 to get the day, month, year and then preform
> > the fuction to get the following Saturday 9/24/2005 and then parse it
> > back to the format Flex takes 24 Sep 2005 and lastly populate the text
> > box with that value.
> > What are your ideas?
> >
> >
> > --
> > Auxilium meum a Domino
> >
> 
> 
> --
> Auxilium meum a Domino
> 


-- 
Auxilium meum a Domino


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






--
**STATEMENT OF CONFIDENTIALITY** 

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

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



 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/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

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
yeah, I took that out in the last version. Thanks

On 9/8/05, Philippe Maegerman <[EMAIL PROTECTED]> wrote:
> You added 1 to the month for the display, however you need to substrat that 
> value later when creating your new date:
> 
> daDate.selectedDate = new Date(cYear,cMonth-1,cDay);
> 
> Cheers,
> 
> Philippe
> 
> -Original Message-
> From: flexcoders@yahoogroups.com on behalf of Greg Morphis
> Sent: Thu 8/09/2005 21:12
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: modifying the datefield object...
> 
> Well, I've gotten this far...
>   function displayDate(date)
>   {
>  var cMonth;
>  var cYear;
>  var cDay;
>  var dayNum;
> var tempDate;
> 
>  cMonth = (date.getMonth()) + 1;
>  cYear = date.getFullYear();
>  cDay = date.getDate();
>  dayNum = date.getDay();
> if(dayNum != 6) {
>   cDay = (date.getDate()) + (6 - dayNum);
> }
> fooDate.text = ("Year:" + cYear + " Month:" + cMonth + " Day:" + 
> cDay);
> daDate.selectedDate = new Date(cYear,cMonth,cDay);
> 
>   }
> 
> 
> However daDate doesnt show the value of fooDate, it remains showing
> whatever I click on.
> For example; I click on Sept 13th 2005, the label shows the correct
> value of "Year:2005 Month:9 Day:17" or Sept 17th 2005, however the
> datefield value remains Sept 13th 2005.
> 
> Livedocs says it accepts a date object, is that not one?
> "daDate.selectedDate = new Date(cYear,cMonth,cDay);" ??
> 
> Thanks!
> 
> 
> 
> 
> 
> On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > I've found that I can use this to get the date
> >  change="displayDate(event.target.selectedDate)"
> >
> >
> >
> >
> >
> > On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > > Is it possible to capture/modify the value that shows in the textbox
> > > of the datefield object?
> > > I've tried .value, .text and looked at the livedocs (didnt see .value
> > > or .text or anything usable).
> > > What I'm trying to do is make it to where if someone clicks on a date
> > > (9/20/2005) then the date that shows is that week's Saturday
> > > (9/24/2005).
> > > The easiest way of doing this I found is just using
> > > disabledDays="[0,1,2,3,4,5]" to disable all of the days except
> > > Saturday, which works fine, no overhead, etc.. The user would just
> > > select the Saturday that applies.
> > > But is there a way I can pass that selected value to an actionscript
> > > function, get that week's Saturday and pass it back to the DateField?
> > > From the looks of it it would be difficult, you'd have to parse the
> > > date shown ie 20 Sep 2005 to get the day, month, year and then preform
> > > the fuction to get the following Saturday 9/24/2005 and then parse it
> > > back to the format Flex takes 24 Sep 2005 and lastly populate the text
> > > box with that value.
> > > What are your ideas?
> > >
> > >
> > > --
> > > Auxilium meum a Domino
> > >
> >
> >
> > --
> > Auxilium meum a Domino
> >
> 
> 
> --
> Auxilium meum a Domino
> 
> 
> --
> 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 
>  .
> 
> 
> 
> 
> 
> 
> --
> **STATEMENT OF CONFIDENTIALITY**
> 
> This e-mail and any attached files are confidential and intended solely for 
> the use of the individual to whom it is addressed. If you have received this 
> email in error please send it back to the person that sent it to you. Any 
> views or opinions presented are solely those of author and do not necessarily 
> represent those the Emakina Company. Unauthorized publication, use, 
> dissemination, forwarding, printing or copying of this email and its 
> associated attachments is strictly prohibited.
> 
> We also inform you that we have checked that this message does not contain 
> any virus but we decline any responsability in case of any damage caused by 
> an a non detected virus.
> --
> 
> 
> 
> 
> --
> 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
> 
> 
> 
> 
> 
> 


-- 
Auxilium meum a Domino


 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
though I'm still having a problem with populating that text box.
I've added code at the bottom to populate it but if it does, it gets
over written.
Does anyone know what event I could use to populate the text so it's
seemingly unnoticable to the user. I've tried mouseDown, mouseUp,
focusOut with no luck.



On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> yeah, I took that out in the last version. Thanks
> 
> On 9/8/05, Philippe Maegerman <[EMAIL PROTECTED]> wrote:
> > You added 1 to the month for the display, however you need to substrat that 
> > value later when creating your new date:
> >
> > daDate.selectedDate = new Date(cYear,cMonth-1,cDay);
> >
> > Cheers,
> >
> > Philippe
> >
> > -Original Message-
> > From: flexcoders@yahoogroups.com on behalf of Greg Morphis
> > Sent: Thu 8/09/2005 21:12
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: modifying the datefield object...
> >
> > Well, I've gotten this far...
> >   function displayDate(date)
> >   {
> >  var cMonth;
> >  var cYear;
> >  var cDay;
> >  var dayNum;
> > var tempDate;
> >
> >  cMonth = (date.getMonth()) + 1;
> >  cYear = date.getFullYear();
> >  cDay = date.getDate();
> >  dayNum = date.getDay();
> > if(dayNum != 6) {
> >   cDay = (date.getDate()) + (6 - dayNum);
> > }
> > fooDate.text = ("Year:" + cYear + " Month:" + cMonth + " Day:" 
> > + cDay);
> > daDate.selectedDate = new Date(cYear,cMonth,cDay);
> >
> >   }
> >
> >
> > However daDate doesnt show the value of fooDate, it remains showing
> > whatever I click on.
> > For example; I click on Sept 13th 2005, the label shows the correct
> > value of "Year:2005 Month:9 Day:17" or Sept 17th 2005, however the
> > datefield value remains Sept 13th 2005.
> >
> > Livedocs says it accepts a date object, is that not one?
> > "daDate.selectedDate = new Date(cYear,cMonth,cDay);" ??
> >
> > Thanks!
> >
> >
> >
> >
> >
> > On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > > I've found that I can use this to get the date
> > >  change="displayDate(event.target.selectedDate)"
> > >
> > >
> > >
> > >
> > >
> > > On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote:
> > > > Is it possible to capture/modify the value that shows in the textbox
> > > > of the datefield object?
> > > > I've tried .value, .text and looked at the livedocs (didnt see .value
> > > > or .text or anything usable).
> > > > What I'm trying to do is make it to where if someone clicks on a date
> > > > (9/20/2005) then the date that shows is that week's Saturday
> > > > (9/24/2005).
> > > > The easiest way of doing this I found is just using
> > > > disabledDays="[0,1,2,3,4,5]" to disable all of the days except
> > > > Saturday, which works fine, no overhead, etc.. The user would just
> > > > select the Saturday that applies.
> > > > But is there a way I can pass that selected value to an actionscript
> > > > function, get that week's Saturday and pass it back to the DateField?
> > > > From the looks of it it would be difficult, you'd have to parse the
> > > > date shown ie 20 Sep 2005 to get the day, month, year and then preform
> > > > the fuction to get the following Saturday 9/24/2005 and then parse it
> > > > back to the format Flex takes 24 Sep 2005 and lastly populate the text
> > > > box with that value.
> > > > What are your ideas?
> > > >
> > > >
> > > > --
> > > > Auxilium meum a Domino
> > > >
> > >
> > >
> > > --
> > > Auxilium meum a Domino
> > >
> >
> >
> > --
> > Auxilium meum a Domino
> >
> >
> > --
> > 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  .
> >
> >
> > 
> >
> >
> >
> > --
> > **STATEMENT OF CONFIDENTIALITY**
> >
> > This e-mail and any attached files are confidential and intended solely for 
> > the use of the individual to whom it is addressed. If you have received 
> > this email in error please send it back to the person that sent it to you. 
> > Any views or opinions presented are solely those of author and do not 
> > necessarily represent those the Emakina Company. Unauthorized publication, 
> > use, dissemination, forwarding, printing or copying of this email and its 
> > associated attachments is strictly prohibited.
> >
> > We also inform you that we h

Re: [flexcoders] Re: Connection Pooling, Proxool, and Oracle

2005-09-08 Thread Douglas Knudsen
nothing will implement this with Flex.  Its up to the backend, eh?  Me
the total noob here...I'm working on my first Flex app now with a Java
back end.  I'm using a collection pool class that I basically rolled
on my own.  You could use which ever one you want, eh?  Jakarta
commons seems to have one available.

DK

On 9/8/05, stealth1399 <[EMAIL PROTECTED]> wrote:
> Does anyone know of any open source projects similar to proxool that
> will implment connection pooling with flex?
> 
> --- In flexcoders@yahoogroups.com, "stealth1399" <[EMAIL PROTECTED]> wrote:
> > Hello,
> >
> > The application that I'm working on is filling up the connections to
> > our Oracle database. We are using Remote Objects (POJOs) to connect to
> > the database.  The application is moderatley database intensive and to
> > speed up the responsiveness, connections are not explicitly being
> > closed after they are used.  Instead we are closing connections by
> > overiding the "finalize" method.  For this reason only one instance of
> > the connections is used throught the lifetime of the class.
> >
> > The flex client is using "stateful-class" type in the RemoteObject
> > invocation but it appears that there are still mulitple database
> > connections being created with every client.
> >
> > To fix thie multiple database connection issue, we tried making the
> > connection static, which caused an error presumably because of the
> > multiple Asynchronus calls being made  to the database.
> >
> > When proxool was integrated into our application, the connection would
> > be established but when the application tried to use the connection
> > there would be a similar error as before.
> >
> > Please point me in the direction of the best practice for properly
> > managing connection pools with flex applications.
> >
> > Thanks for your time.
> 
> 
> 
> 
> 
> --
> 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
> 
> 
> 
> 
> 
> 
> 


-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/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] the 3D engine for UI controls

2005-09-08 Thread Igor Costa



Hi folks

Does anyone on list have tried to create some puzzle classes to add dynamic 3d Motion for some kind of UI, like 

I've try here just with myself but I couldn't get sucessfull, due the UI component was unrecognized and dashed.


That's really may possible?

I'm trying this because on the last presentation on MS for avalon I saw
some cool 3D and 2D animation transitions between controls.

If you have some information help me to try something cool to list

Thanks all.-- Igor Costawww.igorcosta.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
  
  
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.