[flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Nithya R



hi,  i have a title window with header height=0 and instead of the headerI have a control bar in the top of the title window even when i setmodal window property to false, i am not able to move the pop up around.. why is this so? is the problem bcoz of the header height set to 0?   thanks,nithyaSend instant messages to your online friends http://uk.messenger.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



  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] creationComplete throw several times...

2005-12-20 Thread Flapflap
Hi there,

I create a simple mxml component based on canvas.
I got a little script that will set the y and height depends on some 
data injected and of the height of the parent of my component.
So I create a function in as and call my function on the 
creationComplete event.
But the event is fire 4 times for each instance !
And the first event can have the parentDocument.height property, after 
that its a null so the app crash...

I know its alpha but have any of you some solution ?

Thanks...


 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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: How to handle manipulation of Date object and Timezones elegantly in Flex?

2005-12-20 Thread Kam-Wing Pang
Dear Matt,

Thanks for the link. I've added a new wish to the list.

We have played with the getTimezoneOffset and have been using it. It
is just not the most elegant solution, especially when the application
has many date objects for both display and as part of the parameters
used for requesting data from the backend. 

I wondered if it would be worth considering creating a custom object
(or even passing a string denoting the various date elements) to pass
around date and time without any timezone information, if we are very
sure that we won't use timezones in the future...

Kam.


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

 You can file enhancement requests like the formatter with timezone
 support at http://www.macromedia.com/go/wish.
 
 I assume you've played with setting the minutes of the date based on the
 getTimezoneOffset returned from the date?
 
 Matt
 





 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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/
 




REPOST: [flexcoders] PrintJob cutting text on datagrid

2005-12-20 Thread Mika Kiljunen










Repost, since no answer Anyone?











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mika Kiljunen
Sent: 1. joulukuuta 2005 14:40
To: flexcoders@yahoogroups.com
Subject: [flexcoders] PrintJob
cutting text on datagrid





Hi,

Can someone explain why PrintJob is cutting the bottom of
letters like g, y,q etc?? See pic to explain. In the pic (a printed datagrid)
the numbers should have text mg after them, but it has mg and the g has
no bottom on it!



Is there a way to fix this?



-Mika













--
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: How do we judge CFC's method arguments of RemoteObject from ResultEvent??

2005-12-20 Thread sn197412
Thank you very much for your help!!
It works very well.

--Shigeru

for archives
 ACT pattern is Asynchronous Completion Token design pattern.


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

 Check out the ACT pattern in the docs.  You want to look at the 
return
 value of each of those calls to getList, it's an asynchronous token 
on
 which you can place whatever data you want (including the arguments 
to
 the method call).  That object is then available to you again in the
 ResultEvent as event.call.
 
 Matt
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Nakagaki Shigeru
 Sent: Monday, December 19, 2005 7:11 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How do we judge CFC's method arguments of
 RemoteObject from ResultEvent??
 
 Hi.
 
 How do we judge CFC's method arguments of RemoteObject from
 ResultEvent??
 Any ideas? Need a trick?
 
 Here is code.
 
 ?xml version=1.0 encoding=utf-8?
 mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; 
xmlns=*
  creationComplete=initApp()
 
 mx:Script
   ![CDATA[
 import mx.rpc.events.ResultEvent;
 
 private function initApp():Void
 {
   roLCM.getList.addEventListener(result,this.loadList);
   roLCM.getList(1);
   roLCM.getList(2);
   roLCM.getList(3);
   roLCM.getList(4);
 }
 
 
 private function loadList(evt:ResultEvent):Void
 {
   // evt.result is only ArrayCollection
   // How do we judge that this ResultEvent is argument 1 
event??
 }
 
 
   ]]
 /mx:Script
 
 !-- ColdFusion CFC (via AMF) --
 mx:RemoteObject id=roCFC destination=CFCdes 
showBusyCursor=true
   method name=getList /
 /mx:RemoteObject
 
   mx:Canvas width=100% height=100%
   /mx:Canvas
 /mx:Application
 
 
 
 
 
 --
 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 ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread sn197412
Hi.

1. There two or more PopupWindow with a MenuBar.
2. I want to change PopupWindow's z-index on mouseDown event.
3. ActionScript3.0 for Changing PopupWindow's z-index is below.
this.parent.setChildIndex(this,this.parent.numChildren);

Then MenuItem doesn't work.
It looks like crashing events.
How should I do??







 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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: Webservices and .NET

2005-12-20 Thread Weyert de Boer
Hi Dave,
 The issue is that Flex has serious problems with web services that use
 Document/Literal encoding (as yours does) and pass a ComplexType (as
 yours does) as a parameter or return type.
   
Aha, I didn't know that...
 If you can rewrite the service to use RPC/Encoded style instead it
 will work fine. 
   
Well, I have been a bit busy and changed to output to the following 
format, only somehow Flash still doesn't like it.
I am currently using Flash 8 instead of Flex, though. Flashcoders has 
been down since this weekend.

?xml version=1.0 encoding=utf-8?
EmployeesList xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xmlns=http://www.innerfuse.biz/2005/seventyfive/;
  Records
Item
  id1/id
  firstNameWeyert/firstName
  lastNamede Boer/lastName
  addressde Scheifelaar 115/address

  postalCode5463 HV/postalCode
  cityVEGHEL/city
  countryTHE NETHERLANDS/country
  GUID1/GUID
/Item
  /Records
/EmployeesList






 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
Stateful objects shiver... cringe...

You can destroy a J2EE session using

session.invalidate();

In say your own servlet or JSP page.  This will destroy the session
and unbind any objects bound to it.

It will also however destroy your J2EE authentication session
effectively logging you out.

You could also iterate over all the objects in the session (also in a
servlet or jsp) and remove a specific object

session.removeAttribute(String name);

Assuming you could identify it by name.

Personaly, I would just avoid designs that require stateful servants.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY 


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

 If you have a stateful object on the server that means it is stored in
 the server's Session object.  The connection to RemoteObject is made
 over HTTP so there's no real reference to it other than what the Session
 has.  When the session times out the object will go away.  If you want
 to kill the session earlier you'll need to do that in an app-server
 specific manner (I believe Tomcat does have a way to kill the session
 somehow but it's not immediately obvious).  I'm pretty sure there's no
 generic J2EE way to do it.
 
 You sure you need the RemoteObject to be stateful?
 
 Matt
  
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of ping2peng
 Sent: Monday, December 19, 2005 1:14 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How can I unload or delete a remoteObject
 reference manually
 
 Scenario is
   my flex app used a java bean with a remoteobject id foo, 
   if my judgement is correct, calling unloadMovie() will destroy 
   the flashmovie and its reference.
 
 
 
 1. how can i release the remoteobject reference manually,
 
 2. releasing a reference or destroying on declared stateful-class
 javabean.
 
 
 
 
 
   FLEX 1.5
   System Spec.
   jboss4.0.3sp1 EJB3-Clustered
   with tomcat 5.5 container on 
   bea-jrockit jdk1.5 under 
   GNU/linux system kernel 2.6.12-10-686-smp
 
 
 
 
 
 
 
 
 --
 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 ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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] Bar Chart with Dates

2005-12-20 Thread Sreejith Unnikrishnan






Hi, Can someone help me with a way
to display a bar chart with floating bars depicting say the start date
and end date (similar to a project planner) such that the length of the
bar is the duration!
The startDate and endDate are available as Date objects.

The question is related to using Date values. I can do it with numbers.
The question is more related to what is the best practice.

Regards
Sree







--
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]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Manish Jethani
On 12/20/05, Nithya R [EMAIL PROTECTED] wrote:

  i have a title window with header height=0 and instead of the header
  I have a control bar in the top of the title window even  when i set
  modal window property to false, i am not able to move the pop up around..

A TitleWindow can only be dragged by clicking on the header.  So, yes,
it's because your headerHeight is 0.

Manish


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] [Flex2] creationComplete throw several times...

2005-12-20 Thread Manish Jethani
On 12/20/05, Flapflap [EMAIL PROTECTED] wrote:

 I create a simple mxml component based on canvas.
 I got a little script that will set the y and height depends on some
 data injected and of the height of the parent of my component.
 So I create a function in as and call my function on the
 creationComplete event.

 But the event is fire 4 times for each instance !
 And the first event can have the parentDocument.height property, after
 that its a null so the app crash...

I'm not sure I understand the scenario, but creationComplete is
triggerred once and exactly once for every UIComponent instance. 
Could it be that you're getting events from child objects as well?  If
that's the case, you could check for the event object's 'target'
property to make sure it refers to the object you're listening for.

 function creationCompleteHandler(event)
 {
   if (event.target == myCanvas) {
...
   }
 }

Manish


 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] datagrid header borders

2005-12-20 Thread Douglas Knudsen
I have a datagrid, I set all the borders to a colour of say pink for
example.  But the borders between the headers stay a default colour of
white.  How to change this?  Do I need a headerRenderer to do
something as simple as this?

--
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/KIlPFB/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: PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread sn197412
Thank you for replay.

I could switch window z-index.
My problem is that MenuBar event doesn't work.
So ...

Thanks, Manish.

--Shigeru

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

 On 12/20/05, sn197412 [EMAIL PROTECTED] wrote:
 
  1. There two or more PopupWindow with a MenuBar.
  2. I want to change PopupWindow's z-index on mouseDown event.
  3. ActionScript3.0 for Changing PopupWindow's z-index is below.
  this.parent.setChildIndex(this,this.parent.numChildren);
 
  Then MenuItem doesn't work.
  It looks like crashing events.
 
 If you want to change the z-index (depth) of one window to be lower or
 higher than another, here's how I'd do it:
 
  var p:DisplayObjectContainer = window1.parent;
  p.setChildIndex(window1, p.getChildIndex(window2));
 
 Manish








 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] How do I know if a password is secure or not

2005-12-20 Thread Nick Weekes





hmm...like the previous 
poster stated, its secure if your client to server communications are done over 
https. unless you mean the storage of the data, which depends upon your 
storage format. An Oracle DB is likely to be slightly more secure than a 
text file sitting in the root dir of your web server, called 
'get_your_credit_card_numbers_here.txt'...



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
[EMAIL PROTECTED]Sent: 20 December 2005 15:58To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] How do I know if 
a password is secure or not
I mean secure meaning protecting the information, credit card 
numbers, addresses etc 






--
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] FireFox.exe has been shuted down abnormarlly when ...

2005-12-20 Thread sn197412
Hi.

FireFox.exe has been shuted down abnormarlly when flash call
window.close via flash.external.ExternalInterface.call.

Any advice??





 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] How do I know if a password is secure or not

2005-12-20 Thread Nick Weekes





Storage format i.e. how 
you are storing this information server side (cookies, database etc). A 
SharedObject is a cookie, so not an ideal location for storing sensitive 
data. Credit card/address data should go in to a database. Is it 
user friendliness that is driving the requirement to store this 
information?


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
[EMAIL PROTECTED]Sent: 20 December 2005 16:08To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] How do I know if 
a password is secure or not
Can you elaborate on what you mean by storage format? If I use 
sharedObjects is that a secure way to go about it? This is something I am very 
new to, I mean security I would love to see some applications using flex that 
have developed secure password systems if you know any? 





--
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 do I know if a password is secure or not

2005-12-20 Thread nostra72



I suppose user friendliness yes. I just figured that lets say I stored a password with a shared object, ok how could someone steal your password if they can not cut and paste it?





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Scott Langeberg



You can open the shared object as a text file and simply read it. i.e.: not secure!For example, in WinXP, my user name is 'slangeberg'. I can view shared objects here:C:\Documents and Settings\slangeberg\Application Data\Macromedia\Flash Player
Open the files with the .sol extension using any text editor, to see the data.ScottOn 12/20/05, [EMAIL PROTECTED]
 [EMAIL PROTECTED] wrote:




I suppose user friendliness yes. I just figured that lets say I stored a password with a shared object, ok how could someone steal your password if they can not cut and paste it?





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  















--
Flexcoders 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] Adobe: impressing again

2005-12-20 Thread Tariq Ahmed
Nice!

The acquisition of Macromedia looks to have been a winner. In October, 
Macromedia's last quarterly results announcement as an independent 
company showed it was still growing strongly after the announcement of 
its acquisition: sales came in at $127.9 million, up 18%, and net income 
came to $20.3 million. It put that success down to demand for Flex and 
Breeze.

http://www.cbronline.com/article_feature.asp?guid=BA5BF7B4-C68A-4B9E-89F5-3000E337C016






 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] How do I know if a password is secure or not

2005-12-20 Thread nostra72




I guess I would figure it would be secure because how can you read a password if its writen as a password with the little *'s. WHat your saying though is I need to store the passwords on to a secure database right?






--
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: html link in text

2005-12-20 Thread rgwilson26
I have a similar issue. I have a Tab navigator with HTML links as 
shown below. I want the user to be able to click on the text link, 
and navigate through each tab in the tab navigator depending on what 
link is clicked. 

I am calling a funtion in the main application from my component, it 
doesn't change tabs.

Any suggetions would be greatly appreciated.

**component definitions*
mx:Canvas

mx:TextArea
   mx:htmlText
![CDATA[
 font face=Verdanaa 
href=mx.core.Application.application.tabNavigation font color 
=#00529CClick here/font/ato navigate through tab bar.br
 /font
 ]]
/mx:htmlText
/mx:TextArea

mx:Canvas/


*Main app**
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
mx:Script
![CDATA[

public function tabNavigation():Void{
navigator.selectedChild=definitions;
}
]]
/mx:Script

mx:TabNavigator id=navigator

   comp:definitions id=definitions/

/mx:TabNavigator
mx:Application/

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

 Nithya,
  
 You can still use this approach, you can write a generic-function in
 your main application file. Invoke that function from link...
  
 So no matter textfield is located, you can invoke that function 
using
 mx.core.Application.application.functionName...
  
 Sounds good?
  
 -abdul
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of Nithya R
 Sent: Friday, December 16, 2005 8:13 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] html link in text
 
 
 thanks abdul... i have one more issue with this... say i have the
 openLink() function in another mxml file and the text is not in the 
main
 application..its in a panel (a custom component)...then how should i
 call it by using a href? see the link should not open a new browser 
it
 shuold instead call a function which would show a popup window(a 
title
 window- which a local component) please help me in this issue...
  
 thanks in advance
 nithya
 
 
 Abdul Qabiz [EMAIL PROTECTED] wrote:
 
   Please see the code below:

   mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
 creationComplete=initApp()
mx:Script
 ![CDATA[
  import mx.controls.Alert;
  function openLink()
  {
   Alert.show(Link Clicked);
  }
  function initApp()
  {

   txt.htmlText = Click a
 href='asfunction:mx.core.Application.application.openLink'font
 color='#FF'uhere/u/font/a for more details.;
  }
 ]]
/mx:Script
mx:TextArea id=txt /

   /mx:Application



   You can also use javascript: in a / tag or you can put a url
 there...

   -abdul
   
   
 
 
   From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of Nithya R
   Sent: Wednesday, December 14, 2005 4:08 PM
   To: flexcoders
   Subject: [flexcoders] html link in text
   
   
   hi,

 i want to have a text with a html link in between.. like

   click HERE for more details .. in this sentence HERE alone
 should be a link... how to do this

   thanks,
   nithya
   Send instant messages to your online friends
 http://uk.messenger.yahoo.com 
 
 
 Send instant messages to your online friends
 http://uk.messenger.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 
 
 
 
 
 
 SPONSORED LINKS 
 Web site design development
 http://groups.yahoo.com/gads?
t=msk=Web+site+design+developmentw1=Web+
 
site+design+developmentw2=Computer+software+developmentw3=Software+d
es
 
ign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
ac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ   Computer software
 development
 http://groups.yahoo.com/gads?
t=msk=Computer+software+developmentw1=We
 
b+site+design+developmentw2=Computer+software+developmentw3=Software
+d
 
esign+and+developmentw4=Macromedia+flexw5=Software+development+best+
pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw Software 
design and
 development
 http://groups.yahoo.com/gads?
t=msk=Software+design+and+developmentw1=
 
Web+site+design+developmentw2=Computer+software+developmentw3=Softwa
re
 
+design+and+developmentw4=Macromedia+flexw5=Software+development+bes
t+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ   
 Macromedia flex
 http://groups.yahoo.com/gads?
t=msk=Macromedia+flexw1=Web+site+design+
 
developmentw2=Computer+software+developmentw3=Software+design+and+de
ve
 
lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s
=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw   Software development best
 practice
 

[flexcoders] Re: How do I know if a password is secure or not

2005-12-20 Thread Dave Wolf

If you use standard J2EE security you won't have any of these problems.

1) the password isnt persisted anywhere
2) All that is persisted is an opaque value used by the server to tie
you to its authentic session
3) No need to have a *single* line of security code in your flex app
4) Flex transparantly integrates with j2EE security.  Its a dream.
5) On the server side you can persist passwords in hashed format

Do not go around storing passwords in you app, or in shared objects or
cookies or whatever.  J2EE solved this problem 5 years ago, and MM was
brilliant enough to make sure Flex integrated right into it.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY

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

 I guess I would figure it would be secure because how can you read a
password 
 if its writen as a password with the little *'s. WHat your saying
though is I 
 need to store the passwords on to a secure database right?







 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread ping2peng
It is a little confusing about how i described the problem.

the scenario is a java-bean named Foo.java is a simple bean that
consume a Facade EJB-SLSB, this Foo.java is registered on the
flex-config as a named=FooSrv, remote-object with stateful-class.

We all basically know that when there are no references on an object
it is directly thrown into a trash-bin for GC to collect but when i
tried to call unloadMovie() where basically destroys the flex-app
together with the reference to the FooSrv-remoteObject, and calling
the controller-javabean to invalidate session using
flashgateway.getSession,

It do log-me out remove some initialized stuff for session-and-jaas
handling but the problem is that the reference of the flex-app to the
FooSrv isn't garbage collected,



this is not a problem when I make the FooSrv flex-config into a
stateless-class, it naturally release-references lock but having like
13 instances on a method-invocation giving a lot processing and eating
too much traffic on the network isn't good.

I also tried using a local-server-state-session-type bean with a bunch
of ThreadLocals for this, and it worked, but there is a larger
problem, coz re-coding and redesigning would eat too much time,
developing only the cool-flex-presentation over presentation layer.

is there something like 
fooSrvInstance = null;
to release the reference from the flex-app and unloadMovie() this
would kill it?

I'm using one stage where i load and unload flash-movies and flex-app
at the same time, the application is quite cool but on the
backend-it-hurts.





 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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: PopupWindow's MenuBar can't handle event if ...

2005-12-20 Thread Manish Jethani
On 12/20/05, sn197412 [EMAIL PROTECTED] wrote:

 I could switch window z-index.
 My problem is that MenuBar event doesn't work.

If you could provide a standalone test case (something I can compile
and run on my machine), that'll help us track and eliminate the
problem.

Manish


 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] datagrid header borders

2005-12-20 Thread Manish Jethani
On 12/20/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 I have a datagrid, I set all the borders to a colour of say pink for
 example.  But the borders between the headers stay a default colour of
 white.  How to change this?  Do I need a headerRenderer to do
 something as simple as this?

Wild guess (I'm not actually trying this out): try setting the
backgroundColor style.

Manish


 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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: REPOST: [flexcoders] PrintJob cutting text on datagrid

2005-12-20 Thread Manish Jethani
On 12/20/05, Mika Kiljunen [EMAIL PROTECTED] wrote:

 Can someone explain why PrintJob is cutting the bottom of letters like g, y,q 
 etc?? See pic to explain. In the pic (a printed datagrid)  the numbers should 
 have text mg after them, but it has mg and the g has no bottom on it!

I asked Nihit (the printing guy), and he thinks he has seen this
problem before.  Can you provide a sample that I can run on my
machine?

Manish


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
My suggestion is this.  Write a very simple JSP page called say
cleanupsession.jsp.  Inside that do something like this:

% @page language=java %

String[]keys = session.getValueNames();

for(int i=0; ikeys.length; i++)
{
session.removeAttribute(keys[i]);
}

session.invalidate();

Now, when you call that JSP it will empty the session object of all
objects in its Map then destroy the session itself.  Call this JSP
page from the Flex UI.  That will remove all references to stateful
classes, then invalidate the session.  

What you were seeing was effectively a memory leak where the session
couldnt actually be garbage collected because it held a reference to
the remote class.  You might also have to add a method to the remote
class to release any references to objects it might have.  Please keep
in mind that for the Java GC to do its job, it must create an
object-map and make sure *every* class in the map has a reference
count of zero before it can get collected.

Let me know how that goes.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY





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

 It is a little confusing about how i described the problem.
 
 the scenario is a java-bean named Foo.java is a simple bean that
 consume a Facade EJB-SLSB, this Foo.java is registered on the
 flex-config as a named=FooSrv, remote-object with stateful-class.
 
 We all basically know that when there are no references on an object
 it is directly thrown into a trash-bin for GC to collect but when i
 tried to call unloadMovie() where basically destroys the flex-app
 together with the reference to the FooSrv-remoteObject, and calling
 the controller-javabean to invalidate session using
 flashgateway.getSession,
 
 It do log-me out remove some initialized stuff for session-and-jaas
 handling but the problem is that the reference of the flex-app to the
 FooSrv isn't garbage collected,
 
 
 
 this is not a problem when I make the FooSrv flex-config into a
 stateless-class, it naturally release-references lock but having like
 13 instances on a method-invocation giving a lot processing and eating
 too much traffic on the network isn't good.
 
 I also tried using a local-server-state-session-type bean with a bunch
 of ThreadLocals for this, and it worked, but there is a larger
 problem, coz re-coding and redesigning would eat too much time,
 developing only the cool-flex-presentation over presentation layer.
 
 is there something like 
 fooSrvInstance = null;
 to release the reference from the flex-app and unloadMovie() this
 would kill it?
 
 I'm using one stage where i load and unload flash-movies and flex-app
 at the same time, the application is quite cool but on the
 backend-it-hurts.







 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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: How do I know if a password is secure or not

2005-12-20 Thread ping2peng
if you are a hacker you definitely know if it is secure or not,,,

i was just kiddin' 

1.) JAAS, Crypto and SSL, with secure storage are basics of Security,
Tear up and read more on these stuff, 

2.) Browse on insecure.org it would be a good pit-stop over there,

3.) learn basic hacking like eavesdropping, motm, session hijacking
between web-servers and some other cools stuff from senior-hackers on
TCP over IP, 

4.) compare and contrast on what you learned and what you apply,
reading on printed and published stuff isn't that reliable unless you
try and break stuff, 

5.) BTW avoid custom crypto that is what i learned the hardway.


peaceoutbye. :)

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

 I guess I would figure it would be secure because how can you read a
password 
 if its writen as a password with the little *'s. WHat your saying
though is I 
 need to store the passwords on to a secure database right?







 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] Array declaration problem

2005-12-20 Thread rhoska

Newbie question of the week here but...

I'm working with iteration two's ComboBoxCellRender from
http://www.richinternetapps.com/archives/72.html.  

I want to replace the array declaration of the
ComboBoxCellRenderer.dataProvider = [foo, more foo] with a string
I am pulling from a cfc by JobList.getJobs() and for the life of me I
can't get it to populate.

If anyone could help me out with the syntax I would be greatly
appreciative. 

~RH






 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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] Array declaration problem

2005-12-20 Thread Tracy Spratt
What does the string look like?  You can use split() to create an array
from a delimited string.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of rhoska
Sent: Tuesday, December 20, 2005 2:04 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Array declaration problem


Newbie question of the week here but...

I'm working with iteration two's ComboBoxCellRender from
http://www.richinternetapps.com/archives/72.html.  

I want to replace the array declaration of the
ComboBoxCellRenderer.dataProvider = [foo, more foo] with a string
I am pulling from a cfc by JobList.getJobs() and for the life of me I
can't get it to populate.

If anyone could help me out with the syntax I would be greatly
appreciative. 

~RH







--
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 ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
Really?
I just checked my application
 editable=false clicking gets no action
 editable=true  clicking performs as required

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

 Its not required for editable=true to get cellPress events.
 
  
 
 - Joan
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of yaagcur
 Sent: Sunday, December 18, 2005 2:47 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Why is editable=true necessary to allow
 cellPress events (2.0)
 
  
 
 Or am I mistaken?
 
 No big deal but what is the common functionality
 
 
 
 
 
 
 
 --
 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
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+
 site+design+developmentw2=Computer+software+developmentw3=Software+des
 ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 
 Computer software development
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We
 b+site+design+developmentw2=Computer+software+developmentw3=Software+d
 esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 
 Software design and development
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=
 Web+site+design+developmentw2=Computer+software+developmentw3=Software
 +design+and+developmentw4=Macromedia+flexw5=Software+development+best+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ  
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+
 developmentw2=Computer+software+developmentw3=Software+design+and+deve
 lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;
 w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw
 are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 YAHOO! GROUPS LINKS 
 
  
 
 *  Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
 *  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service http://docs.yahoo.com/info/terms/ . 
 
  
 
 







 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/2jUsvC/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] Array of objects and CFC

2005-12-20 Thread Hamad Amaral
Hi,

I would like to pass a model to a CFC but an error occurs. If I pass only
name and age I can catch the values as a struct, if I pass only ar I
have success too. But I don't have success with all together.

Please, can anyone help me?

Thanks in advance.

MXML
mx:WebService id=ws wsdl=http://localhost:8500/ro.cfc?wsdl;   
showBusyCursor=true
mx:operation name=t1
mx:request
data{model}/data
/mx:request
/mx:operation
/mx:WebService

mx:Model id=model
nameHamad/name
age29/age
ar{ar}/ar
/mx:Model

mx:Script
![CDATA[
var ar = [{value:1, label:cirilo},{value:2, label:pet},{value:3,
label:rico}];
]]
/mx:Script

CFC
cffunction name=t1 access=remote returntype=any
cfargument name=data required=Yes type=struct
cfsavecontent variable=out
cfdump var=#data#
/cfsavecontent
cffile action=write file=c:\test.htm output=#out#
cfset t = ok
cfreturn t/
/cffunction

[]s
Hamad Amaral
[EMAIL PROTECTED]



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan
Open the livedocs ..
http://livedocs.macromedia.com/flex/15/asdocs_en/

Click on DataGrid
Scroll Down to the end of the page
Look at the second sample ...

I bet you didnt bother to check the docs first!


yaagcur wrote:

 Really?
 I just checked my application
 editable=false clicking gets no action
 editable=true  clicking performs as required

 --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote:
 
  Its not required for editable=true to get cellPress events.
 
  
 
  - Joan
 




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

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

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

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

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





[flexcoders] Re: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread ping2peng
OMG, thank you for this, if you didn't suggest this jsp i haven't
noticed that I'm the most stupid person on the planet, the root cause
of the problem was just not restarting the other appserv on the
cluster. i was actually accessing the old copies.


Thank You very much... it was my mistake.


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

 My suggestion is this.  Write a very simple JSP page called say
 cleanupsession.jsp.  Inside that do something like this:
 
 % @page language=java %
 
 String[]keys = session.getValueNames();
 
 for(int i=0; ikeys.length; i++)
 {
 session.removeAttribute(keys[i]);
 }
 
 session.invalidate();
 
 Now, when you call that JSP it will empty the session object of all
 objects in its Map then destroy the session itself.  Call this JSP
 page from the Flex UI.  That will remove all references to stateful
 classes, then invalidate the session.  
 
 What you were seeing was effectively a memory leak where the session
 couldnt actually be garbage collected because it held a reference to
 the remote class.  You might also have to add a method to the remote
 class to release any references to objects it might have.  Please keep
 in mind that for the Java GC to do its job, it must create an
 object-map and make sure *every* class in the map has a reference
 count of zero before it can get collected.
 
 Let me know how that goes.
 
 -- 
 Dave Wolf
 Cynergy Systems, Inc.
 Macromedia Flex Alliance Partner
 http://www.cynergysystems.com
 
 Email: [EMAIL PROTECTED]
 Office: 866-CYNERGY
 
 
 
 
 
 --- In flexcoders@yahoogroups.com, ping2peng [EMAIL PROTECTED] wrote:
 
  It is a little confusing about how i described the problem.
  
  the scenario is a java-bean named Foo.java is a simple bean that
  consume a Facade EJB-SLSB, this Foo.java is registered on the
  flex-config as a named=FooSrv, remote-object with stateful-class.
  
  We all basically know that when there are no references on an object
  it is directly thrown into a trash-bin for GC to collect but when i
  tried to call unloadMovie() where basically destroys the flex-app
  together with the reference to the FooSrv-remoteObject, and calling
  the controller-javabean to invalidate session using
  flashgateway.getSession,
  
  It do log-me out remove some initialized stuff for session-and-jaas
  handling but the problem is that the reference of the flex-app to the
  FooSrv isn't garbage collected,
  
  
  
  this is not a problem when I make the FooSrv flex-config into a
  stateless-class, it naturally release-references lock but having like
  13 instances on a method-invocation giving a lot processing and eating
  too much traffic on the network isn't good.
  
  I also tried using a local-server-state-session-type bean with a bunch
  of ThreadLocals for this, and it worked, but there is a larger
  problem, coz re-coding and redesigning would eat too much time,
  developing only the cool-flex-presentation over presentation layer.
  
  is there something like 
  fooSrvInstance = null;
  to release the reference from the flex-app and unloadMovie() this
  would kill it?
  
  I'm using one stage where i load and unload flash-movies and flex-app
  at the same time, the application is quite cool but on the
  backend-it-hurts.
 






 Yahoo! Groups Sponsor ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




Re: [flexcoders] datagrid header borders

2005-12-20 Thread Douglas Knudsen
a wild nope  ;)  looks like I have to create a headerRenderer for
this.  Somethings in Flex are kind of not so simple, eh?

DK
On 12/20/05, Manish Jethani [EMAIL PROTECTED] wrote:
 On 12/20/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
  I have a datagrid, I set all the borders to a colour of say pink for
  example.  But the borders between the headers stay a default colour of
  white.  How to change this?  Do I need a headerRenderer to do
  something as simple as this?

 Wild guess (I'm not actually trying this out): try setting the
 backgroundColor style.

 Manish



 --
 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 ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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: How can I unload or delete a remoteObject reference manually

2005-12-20 Thread Dave Wolf
Glad to help!

Clusters turn something complex to understand like multi-threaded
programming into something so mind boggling as to make your head spin.
 The J2EE/server/deployment side of Flex is something that will be
very new to a lot of folks from the Flash world too.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY


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

 OMG, thank you for this, if you didn't suggest this jsp i haven't
 noticed that I'm the most stupid person on the planet, the root cause
 of the problem was just not restarting the other appserv on the
 cluster. i was actually accessing the old copies.
 
 
 Thank You very much... it was my mistake.
 
 
 --- In flexcoders@yahoogroups.com, Dave Wolf [EMAIL PROTECTED] wrote:
 
  My suggestion is this.  Write a very simple JSP page called say
  cleanupsession.jsp.  Inside that do something like this:
  
  % @page language=java %
  
  String[]keys = session.getValueNames();
  
  for(int i=0; ikeys.length; i++)
  {
  session.removeAttribute(keys[i]);
  }
  
  session.invalidate();
  
  Now, when you call that JSP it will empty the session object of all
  objects in its Map then destroy the session itself.  Call this JSP
  page from the Flex UI.  That will remove all references to stateful
  classes, then invalidate the session.  
  
  What you were seeing was effectively a memory leak where the session
  couldnt actually be garbage collected because it held a reference to
  the remote class.  You might also have to add a method to the remote
  class to release any references to objects it might have.  Please keep
  in mind that for the Java GC to do its job, it must create an
  object-map and make sure *every* class in the map has a reference
  count of zero before it can get collected.
  
  Let me know how that goes.
  
  -- 
  Dave Wolf
  Cynergy Systems, Inc.
  Macromedia Flex Alliance Partner
  http://www.cynergysystems.com
  
  Email: [EMAIL PROTECTED]
  Office: 866-CYNERGY
  
  
  
  
  
  --- In flexcoders@yahoogroups.com, ping2peng [EMAIL PROTECTED] wrote:
  
   It is a little confusing about how i described the problem.
   
   the scenario is a java-bean named Foo.java is a simple bean that
   consume a Facade EJB-SLSB, this Foo.java is registered on the
   flex-config as a named=FooSrv, remote-object with stateful-class.
   
   We all basically know that when there are no references on an object
   it is directly thrown into a trash-bin for GC to collect but when i
   tried to call unloadMovie() where basically destroys the flex-app
   together with the reference to the FooSrv-remoteObject, and calling
   the controller-javabean to invalidate session using
   flashgateway.getSession,
   
   It do log-me out remove some initialized stuff for session-and-jaas
   handling but the problem is that the reference of the flex-app
to the
   FooSrv isn't garbage collected,
   
   
   
   this is not a problem when I make the FooSrv flex-config into a
   stateless-class, it naturally release-references lock but having
like
   13 instances on a method-invocation giving a lot processing and
eating
   too much traffic on the network isn't good.
   
   I also tried using a local-server-state-session-type bean with a
bunch
   of ThreadLocals for this, and it worked, but there is a larger
   problem, coz re-coding and redesigning would eat too much time,
   developing only the cool-flex-presentation over presentation layer.
   
   is there something like 
   fooSrvInstance = null;
   to release the reference from the flex-app and unloadMovie() this
   would kill it?
   
   I'm using one stage where i load and unload flash-movies and
flex-app
   at the same time, the application is quite cool but on the
   backend-it-hurts.
  
 








 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
I'm having trouble getting compc to work.  I'm not very good at Command 
line, so maybe that's the problem.  How do you escape spaces on Windows XP?

Like:

C:\Documents and settings

It keeps bitching there isnt' a C:\Documents , and I think I have to escape 
the space.  How do you do that?  Is there an easier way to make SWC files 
from AS files (without using Flash since it won't get the right classes)? 



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o Signature.swc 
c:\Documents and Se
ttings\Syle\My Documents\_Work 
Projects\Signature\flex\com\mfgquote\utils\Signature.as), but now getting a 
the class doesn't match the imported class.  I used to get those types of 
errors in Flash and knew they were full of it, but trust Flex more... bleh.

- Original Message - 
From: JesterXL [EMAIL PROTECTED]
To: Flexcoders flexcoders@yahoogroups.com
Sent: Tuesday, December 20, 2005 5:51 PM
Subject: [flexcoders] Using compc to make SWC from AS


I'm having trouble getting compc to work.  I'm not very good at Command
line, so maybe that's the problem.  How do you escape spaces on Windows XP?

Like:

C:\Documents and settings

It keeps bitching there isnt' a C:\Documents , and I think I have to escape
the space.  How do you do that?  Is there an easier way to make SWC files
from AS files (without using Flash since it won't get the right classes)?




--
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 ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
...dude, I'm stumped...

- Original Message - 
From: JesterXL [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, December 20, 2005 5:57 PM
Subject: Re: [flexcoders] Using compc to make SWC from AS


Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o Signature.swc
c:\Documents and Se
ttings\Syle\My Documents\_Work
Projects\Signature\flex\com\mfgquote\utils\Signature.as), but now getting a
the class doesn't match the imported class.  I used to get those types of
errors in Flash and knew they were full of it, but trust Flex more... bleh.

- Original Message - 
From: JesterXL [EMAIL PROTECTED]
To: Flexcoders flexcoders@yahoogroups.com
Sent: Tuesday, December 20, 2005 5:51 PM
Subject: [flexcoders] Using compc to make SWC from AS


I'm having trouble getting compc to work.  I'm not very good at Command
line, so maybe that's the problem.  How do you escape spaces on Windows XP?

Like:

C:\Documents and settings

It keeps bitching there isnt' a C:\Documents , and I think I have to escape
the space.  How do you do that?  Is there an easier way to make SWC files
from AS files (without using Flash since it won't get the right classes)?




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







 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/KIlPFB/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] Using compc to make SWC from AS

2005-12-20 Thread JesterXL
Got it, I just had to point -root to the com folder.

- Original Message - 
From: JesterXL [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, December 20, 2005 5:57 PM
Subject: Re: [flexcoders] Using compc to make SWC from AS


Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o Signature.swc
c:\Documents and Se
ttings\Syle\My Documents\_Work
Projects\Signature\flex\com\mfgquote\utils\Signature.as), but now getting a
the class doesn't match the imported class.  I used to get those types of
errors in Flash and knew they were full of it, but trust Flex more... bleh.

- Original Message - 
From: JesterXL [EMAIL PROTECTED]
To: Flexcoders flexcoders@yahoogroups.com
Sent: Tuesday, December 20, 2005 5:51 PM
Subject: [flexcoders] Using compc to make SWC from AS


I'm having trouble getting compc to work.  I'm not very good at Command
line, so maybe that's the problem.  How do you escape spaces on Windows XP?

Like:

C:\Documents and settings

It keeps bitching there isnt' a C:\Documents , and I think I have to escape
the space.  How do you do that?  Is there an easier way to make SWC files
from AS files (without using Flash since it won't get the right classes)?




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







 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
Well not those docs certainly as I'm talking flex 2 (see title)

This appears more relevant
http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/js/html/wwhelp.htm?href=1531.html


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

 Open the livedocs ..
 http://livedocs.macromedia.com/flex/15/asdocs_en/
 
 Click on DataGrid
 Scroll Down to the end of the page
 Look at the second sample ...
 
 I bet you didnt bother to check the docs first!
 
 
 yaagcur wrote:
 
  Really?
  I just checked my application
  editable=false clicking gets no action
  editable=true  clicking performs as required
 
  --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote:
  
   Its not required for editable=true to get cellPress events.
  
   
  
   - Joan
  






 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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] How do I know if a password is secure or not

2005-12-20 Thread Brian Deitte





This articlehas an 
example of using passwords in an application, assuming you also have data you 
want to protect:

http://www.macromedia.com/devnet/flex/articles/security_framework.html

I'd suggest using the 
standard Flex security model shown above along withHTTPS. 
-Brian


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  [EMAIL PROTECTED]Sent: Tuesday, December 20, 2005 11:08 
  AMTo: flexcoders@yahoogroups.comSubject: Re: 
  [flexcoders] How do I know if a password is secure or not
  Can you elaborate on what you mean by storage format? If I use 
  sharedObjects is that a secure way to go about it? This is something I am very 
  new to, I mean security I would love to see some applications using flex that 
  have developed secure password systems if you know any? 





--
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] FireFox.exe has been shuted down abnormarlly when ...

2005-12-20 Thread Brian Deitte
Not sure.  I'd suggest trying different versions of Firefox to see if
this always occurs.  My guess is that it doesn't.  You could also check
out Firefox's bugzilla:

https://bugzilla.mozilla.org/buglist.cgi?query_format=specificorder=rel
evance+descbug_status=__open__product=Firefoxcontent=window.close+cra
sh

-Brian

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of sn197412
 Sent: Tuesday, December 20, 2005 11:10 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] FireFox.exe has been shuted down 
 abnormarlly when ...
 
 Hi.
 
 FireFox.exe has been shuted down abnormarlly when flash call
 window.close via flash.external.ExternalInterface.call.
 
 Any advice??
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 Most low income homes are not online. Make a difference this 
 holiday season!
 http://us.click.yahoo.com/5UeCyC/BWHMAA/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 ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/9QUssC/lzNLAA/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] How do I know if a password is secure or not

2005-12-20 Thread Brian Deitte





This articlehas an 
example of using passwords in an application, assuming you also have data you 
want to protect:

http://www.macromedia.com/devnet/flex/articles/security_framework.html

I'd suggest using the 
standard Flex security model shown above along withHTTPS. 
-Brian


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  [EMAIL PROTECTED]Sent: Tuesday, December 20, 2005 11:08 
  AMTo: flexcoders@yahoogroups.comSubject: Re: 
  [flexcoders] How do I know if a password is secure or not
  Can you elaborate on what you mean by storage format? If I use 
  sharedObjects is that a secure way to go about it? This is something I am very 
  new to, I mean security I would love to see some applications using flex that 
  have developed secure password systems if you know any? 





--
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] Using compc to make SWC from AS

2005-12-20 Thread Brian Deitte
I tried to answer this, but my message slowly bounced.  Apparently I
needed to tell Yahoo about the shiny new email address.  

My stale advice: Try specifying a root that points to the directory
that you would normally specify as the actionscript classpath.  As a
side note, this parameter disappears in 2.0.

-Brian

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
 Sent: Tuesday, December 20, 2005 6:18 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Using compc to make SWC from AS
 
 Got it, I just had to point -root to the com folder.
 
 - Original Message - 
 From: JesterXL [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Tuesday, December 20, 2005 5:57 PM
 Subject: Re: [flexcoders] Using compc to make SWC from AS
 
 
 Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o 
 Signature.swc
 c:\Documents and Se
 ttings\Syle\My Documents\_Work
 Projects\Signature\flex\com\mfgquote\utils\Signature.as), 
 but now getting a
 the class doesn't match the imported class.  I used to get 
 those types of
 errors in Flash and knew they were full of it, but trust Flex 
 more... bleh.
 
 - Original Message - 
 From: JesterXL [EMAIL PROTECTED]
 To: Flexcoders flexcoders@yahoogroups.com
 Sent: Tuesday, December 20, 2005 5:51 PM
 Subject: [flexcoders] Using compc to make SWC from AS
 
 
 I'm having trouble getting compc to work.  I'm not very good 
 at Command
 line, so maybe that's the problem.  How do you escape spaces 
 on Windows XP?
 
 Like:
 
 C:\Documents and settings
 
 It keeps bitching there isnt' a C:\Documents , and I think I 
 have to escape
 the space.  How do you do that?  Is there an easier way to 
 make SWC files
 from AS files (without using Flash since it won't get the 
 right classes)?
 
 
 
 
 --
 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
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 1.2 million kids a year are victims of human trafficking. 
 Stop slavery.
 http://us.click.yahoo.com/.QUssC/izNLAA/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 ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Joan Tan
I tried the following simple dataGrid that is not editable and the
cellPress event is triggered. Are you seeing something different? If so,
please send the code along.

?xml version=1.0 encoding=iso-8859-1?
mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml;
creationComplete=initDG()

mx:Script
![CDATA[
function initDG()
{
myDataGrid1.dataProvider =
 [
   { Artist:'Pavement', Album:'Slanted and Enchanted' },
   { Artist:'Pavement', Album:'Crooked Rain, Crooked Rain'},
   { Artist:'Pavement', Album:'Wowee Zowee' },
   { Artist:'Pavement', Album:'Brighten the Corners' },
   { Artist:'Pavement', Album:'Terror Twilight'},
   { Artist:'Other', Album:'Other'}
 ];
 ti1.text = ;
}

private function doTest(event):void
{
ti1.text= event.type +  event Triggered;
}

]]
/mx:Script

mx:DataGrid id=myDataGrid1 cellPress=doTest(event)/
mx:TextInput id=ti1 /
/mx:Application

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of yaagcur
Sent: Tuesday, December 20, 2005 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Why is editable=true necessary to allow
cellPress events (2.0)

Well not those docs certainly as I'm talking flex 2 (see title)

This appears more relevant
http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/js/html/wwhelp
.htm?href=1531.html


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

 Open the livedocs ..
 http://livedocs.macromedia.com/flex/15/asdocs_en/
 
 Click on DataGrid
 Scroll Down to the end of the page
 Look at the second sample ...
 
 I bet you didnt bother to check the docs first!
 
 
 yaagcur wrote:
 
  Really?
  I just checked my application
  editable=false clicking gets no action
  editable=true  clicking performs as required
 
  --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote:
  
   Its not required for editable=true to get cellPress events.
  
   
  
   - Joan
  







--
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 ~-- 
AIDS in India: A lurking bomb. Click and help stop AIDS now.
http://us.click.yahoo.com/9QUssC/lzNLAA/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] Question about webservice tags

2005-12-20 Thread nostra72



What exactly are they used for and what is there purpose?





--
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] Cellspan-type headers possible in datagrid? [v1.5]

2005-12-20 Thread victor chan



Is it possible to create something along the lines of the following in a DataGrid: population growth | some other label | % | 000,000s | mortality | birth |
Sorry for the crude layout but in the above figure I would like to have a data label above my % and 000,000s headers. Is it it possible to achieve that and have it also scale (its column width) in tune to the headers below it if I drag the right side of the 000,000s?
I guess the question that should preface all of this is... is it possible to have two rows of cell headers?thanks,Victor






--
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] Using compc to make SWC from AS

2005-12-20 Thread Brian Deitte
So using root didn't work for you?  If your class is
com.mfgquote.utils.Signature, then you will  want to point it to the
flex directory:

compc -o Signature.swc -root c:\Documents and Settings\Syle\My
Documents\_Work Projects\Signature\flex c:\Documents and
Settings\Syle\My Documents\_Work
Projects\Signature\flex\com\mfgquote\utils\Signature.as 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
 Sent: Tuesday, December 20, 2005 6:10 PM
 To: flexcoders@yahoogroups.com
 Subject: Re: [flexcoders] Using compc to make SWC from AS
 
 ...dude, I'm stumped...
 
 - Original Message - 
 From: JesterXL [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Tuesday, December 20, 2005 5:57 PM
 Subject: Re: [flexcoders] Using compc to make SWC from AS
 
 
 Ok, this works (C:\Program Files\Macromedia\Flex\bincompc -o 
 Signature.swc
 c:\Documents and Se
 ttings\Syle\My Documents\_Work
 Projects\Signature\flex\com\mfgquote\utils\Signature.as), 
 but now getting a
 the class doesn't match the imported class.  I used to get 
 those types of
 errors in Flash and knew they were full of it, but trust Flex 
 more... bleh.
 
 - Original Message - 
 From: JesterXL [EMAIL PROTECTED]
 To: Flexcoders flexcoders@yahoogroups.com
 Sent: Tuesday, December 20, 2005 5:51 PM
 Subject: [flexcoders] Using compc to make SWC from AS
 
 
 I'm having trouble getting compc to work.  I'm not very good 
 at Command
 line, so maybe that's the problem.  How do you escape spaces 
 on Windows XP?
 
 Like:
 
 C:\Documents and settings
 
 It keeps bitching there isnt' a C:\Documents , and I think I 
 have to escape
 the space.  How do you do that?  Is there an easier way to 
 make SWC files
 from AS files (without using Flash since it won't get the 
 right classes)?
 
 
 
 
 --
 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
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 Get Bzzzy! (real tools to help you find a job). Welcome to 
 the Sweet Life.
 http://us.click.yahoo.com/KIlPFB/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
 
 
 
  
 
 
 


 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




Re: [flexcoders]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Nithya R



but how do i make the titlewindow draggable when header height is 0? i want to drag the titleWindow with the help of the controlbar instead which i have placed on top...Manish Jethani [EMAIL PROTECTED] wrote:  On 12/20/05, Nithya R [EMAIL PROTECTED] wrote: i have a title window with header height=0 and instead of the header I have a control bar in the top of the title window even when i set modal window property to false, i am not able to move the pop up around..A TitleWindow can only be dragged by clicking on the header. So, yes,it's because your "headerHeight" is 0.ManishSend instant messages to your online friends http://uk.messenger.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








  
  
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: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread Sreejith Unnikrishnan






Yaagcur, sorry I
missed the '2.0'.

Joan, I dont think the code works for us. I tried the code that u sent.

Even after correcting some fatal errors that the builder throws up, the
cellPress event does not work. And it does work with 'editable' enabled.

It is possible that you are testing against a later build that we do
not have the luxury of.

Regards
Sree

Joan Tan wrote:

I tried the following simple dataGrid that is not editable and the
cellPress event is triggered. Are you seeing something different? If so,
please send the code along.
  
?xml version="1.0" encoding="iso-8859-1"?
mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml"
creationComplete="initDG()"
  
mx:Script
![CDATA[
 function initDG()
 {
 myDataGrid1.dataProvider =
 [
 { Artist:'Pavement', Album:'Slanted and Enchanted' },
 { Artist:'Pavement', Album:'Crooked Rain, Crooked Rain'},
 { Artist:'Pavement', Album:'Wowee Zowee' },
 { Artist:'Pavement', Album:'Brighten the Corners' },
 { Artist:'Pavement', Album:'Terror Twilight'},
 { Artist:'Other', Album:'Other'}
 ];
 ti1.text = "";
 }
  
 private function doTest(event):void
 {
 ti1.text= event.type + " event Triggered";
 }
  
]]
/mx:Script
  
mx:DataGrid id="myDataGrid1" cellPress="doTest(event)"/
mx:TextInput id="ti1" /
/mx:Application
  
-Original Message-
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of yaagcur
Sent: Tuesday, December 20, 2005 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Why is editable="true" necessary to allow
cellPress events (2.0)
  
Well not those docs certainly as I'm talking flex 2 (see title)
  
This appears more relevant
  http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/js/html/wwhelp
.htm?href="">
  
  
--- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan
[EMAIL PROTECTED]
wrote:

 Open the livedocs ..
 http://livedocs.macromedia.com/flex/15/asdocs_en/
 
 Click on DataGrid
 Scroll Down to the end of the page
 Look at the second sample ...
 
 I bet you didnt bother to check the docs first!
 
 
 yaagcur wrote:
 
  Really?
  I just checked my application
  editable="false" clicking gets no action
  editable="true" clicking performs as required
 
  --- In flexcoders@yahoogroups.com, "Joan Tan"
[EMAIL PROTECTED] wrote:
  
   Its not required for editable="true" to get cellPress
events.
  
   
  
   - Joan
  

  
  
  
  
  
  
--
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]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread Manish Jethani
On 12/21/05, Nithya R [EMAIL PROTECTED] wrote:

 but how do i make the titlewindow draggable when header height is 0? i want 
 to drag the titleWindow with the help of the controlbar instead which i have 
 placed on top...

You'll have to add your own code to implement dragging.  Listen for
the mouseDown/mouseUp/mouseOver events and move the object
accordingly.

Manish


 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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





Re: [flexcoders] Cellspan-type headers possible in datagrid? [v1.5]

2005-12-20 Thread Manish Jethani
On 12/21/05, victor chan [EMAIL PROTECTED] wrote:
  Is it possible to create something along the lines of the following in a
 DataGrid:

   population growth   |  some other label  |
 
 %|   000,000s  |  mortality |  birth|
 


To make it like colspan=2, I would actually use a single
DataGridColumn with a custom cell renderer (say an HBox) that displays
data from two fields (% and 000,000s above).

Manish


 Yahoo! Groups Sponsor ~-- 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/.QUssC/izNLAA/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] datagrid header borders

2005-12-20 Thread Manish Jethani
On 12/21/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 a wild nope  ;)  looks like I have to create a headerRenderer for
 this.  Somethings in Flex are kind of not so simple, eh?

Hopefully things are better in Flex 2.

Manish


 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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]dragable Popup issue!!!!!!!?????????

2005-12-20 Thread sn197412
Hi.

Accidentally I could drag TitleWindow with HeaderHeight=0 but I don't
know why.

Here is a sample source of a component (name is DraggableCanvas).

?xml version=1.0 encoding=utf-8?
mx:TitleWindow xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=*
 headerHeight=0
 marginBottom=0 marginLeft=0 marginRight=0 marginTop=0
 horizontalGap=0 verticalGap=0
 height=70 width=100

  mx:VBox width=100% height=100%
   marginTop=10 marginBottom=10
   verticalAlign=center horizontalAlign=center
mx:Button label=I Can Drag? /
  /mx:VBox
/mx:TitleWindow

Here is a sample source of application.

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=*
   creationComplete=this.initApp()

mx:Script
  ![CDATA[

import mx.managers.PopUpManager;

private function initApp():Void
{
  var obj:Object = new DraggableCanvas();
  var popupSample:Object = PopUpManager.popUpWindow(obj, this,
false,false);
}

  ]]
/mx:Script

  mx:Canvas width=100% height=100%
  /mx:Canvas
/mx:Application

--Shigeru

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

 On 12/21/05, Nithya R [EMAIL PROTECTED] wrote:
 
  but how do i make the titlewindow draggable when header height is
0? i want to drag the titleWindow with the help of the controlbar
instead which i have placed on top...
 
 You'll have to add your own code to implement dragging.  Listen for
 the mouseDown/mouseUp/mouseOver events and move the object
 accordingly.
 
 Manish








 Yahoo! Groups Sponsor ~-- 
Most low income homes are not online. Make a difference this holiday season!
http://us.click.yahoo.com/5UeCyC/BWHMAA/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/