RE: [flexcoders] Best online resources to learn Flex

2005-12-08 Thread Abdul Qabiz
Hi,

L at Macromedia Flex Dev Center 

Also Check out http://www.cflex.net, it contains the links for different
resources...


=abdul


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: Thursday, December 08, 2005 11:08 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Best online resources to learn Flex

Has anyone by chance compiled a list of the best online resources for 
learning Flex? Something to jumpstart the process essentially.

I have Flex Builder 1.0 and Flex 1.5 Developer license and would 
appreciate any help in getting started.

Rey...



--
Flexcoders Mailing 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 households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Flex2: PanelAlpha and BorderStyle would not work together

2005-12-08 Thread Sreejith Unnikrishnan






I noticed that the Panel background
color changes to opaque white if you specify a borderStyle.
The transparency is maintained if you specify any other attribute. As
soon as you specify the borderStyle, it could be solid, inset or
outset, the transparency seems to go awry!

A bug? OR am I missing something here ...
I loved the way the Panel looked in F1.5 :-(

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.



  













[flexcoders] Issue with States and Component creation (Flex 2.0 Alpha)

2005-12-08 Thread Ralf Rottmann










Suppose you use States to display a system message which you
have in a separate MXML component like this:

 

 name="systemMessageVisible">

 target="{this}" position="firstChild">

     id="TheSystemMessageDialog" okay="onSystemMessageOk(event)"/>





 

SystemMessageDialog.mxml contains a simple Label control with an
id of “TheMessage”.

 

Anywhere in the application you have the following lines of code:

 

this.currentState = “systemMessageVisible”;

this.TheSystemMessageDialog.TheMessage.text = “This is the
message text.”;

 

 

The problem I am running into is, that when the code executes the
*first* time, I get a null pointer
exception. I guess the reason is, that once you switch to a new state the *first* time, the component – in this
case TheSystemMessageDialog – must first be created/instantiated. So once
the main execution path reaches the statement which tries to change the text of
the label included inside the component, it cannot do so, because the component
does not yet exist. Subsequent state changes work perfect. I guess once created
the instance of the component is kept, even if you restore an older state.

 

However: How would I design my requirements into the application
then? From the docs I have understood that states have been introduced as a
convenient way to easily show/hide GUI components. But how can I use this great
feature if the properties and methods to configure components in a state are
not accessible prior to switching to it?

 

Your advice is much appreciated!

 

Ralf Rottmann 

 









--
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] Part 2: Issues with State and Component creation (Flex 2.0 Alpha)

2005-12-08 Thread Ralf Rottmann










Here is some code which illustrates the issue:

 

1. The Component (File SystemMessage.mxml):

 



 xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*">

   id="TheMessage"/>



 

 

2. The main application (File StatePlayground.mxml):

 



 xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns:local="*">

  

    

  

   width="100%" height="100%">

    

   label="Add label"
click="addLabel()"/>

   label="Remove label"
click="removeLabel()"/>   

      

  

  

     name="LabelAdded">

   position="firstChild">

     id="TheSystemMessage"/>

      

    

  



 

 

è Issue:
First click on “Add label” Buttonf fails with Erorr #1009: Null has
no properties. If you dismiss the error subsequent clicks work.

 

Ralf 

 









--
Flexcoders Mailing 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] Part 2: Issues with State and Component creation (Flex 2.0 Alpha)

2005-12-08 Thread Dirk Eismann
Hi,
 
try to expose the text that should be displayed in the SystemMessage component 
as a public member and let the Label bind to this member, i.e.
 

http://www.macromedia.com/2005/mxml"; xmlns="*">
  

  
  


Later you do

  private function addLabel():Void 
  {
currentState="LabelAdded";
TheSystemMessage.message = "I have been added";
  }

Dirk.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Ralf Rottmann
Sent: Thursday, December 08, 2005 2:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Part 2: Issues with State and Component creation 
(Flex 2.0 Alpha)



Here is some code which illustrates the issue:

 

1. The Component (File SystemMessage.mxml):

 



http://www.macromedia.com/2005/mxml"; xmlns="*">

  



 

 

2. The main application (File StatePlayground.mxml):

 



http://www.macromedia.com/2005/mxml"; 
xmlns:local="*">

  



  

  



  

 

  

  

  



  



  



  



 

 

è Issue: First click on "Add label" Buttonf fails with Erorr #1009: 
Null has no properties. If you dismiss the error subsequent clicks work.

 

Ralf 

 



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







 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: Newbie Flex/Media Server problem

2005-12-08 Thread Mike Wall

Thanks for the link Matt. I tried to build it in my env but I've got 
a problem in that the LiveMediaDisplay class extends the 
mx.controls.MediaDisplay class which I can't access in my flex 
installation (I'm using Flex 2.0 a1). I'm assuming that the code in 
this is written for Flex 1.5?



--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> Have you read this article by Christophe?
> http://coenraets.com/viewarticle.jsp?articleId=90
> 
>  
> 
> In the source code for that app is a LiveMediaDisplay class that we 
used
> to work around some issues that we had with playing a Flashcom 
streams.
> It might help you out...
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Mike Wall
> Sent: Wednesday, December 07, 2005 5:50 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Newbie Flex/Media Server problem
> 
>  
> 
> 
> Hello all,
> 
> I'd like to ask for some help on streaming FLV's from Media Server 
to 
> a Flex app.
> 
> I've configured a basic app in Media Server based on the component 
> framework. Then tried using the mx:VideoDisplay control in Flex to 
> conect to a named instance of the app by supplying 
> url="rtmp://localhost/video_app/video_app1/myvideo" but in media 
> server console I see a conection to the default instance of the app 
> not the named one.
> 
> I've also tried creating a NetConnection and NetStream then 
> connecting the NetStream to a flash.net.Video with the 
attachNetStream
> () method. The connection to Media Server works ok and I can see a 
> live stream having been create in the Media Server console but I 
> can't get Flex to draw the Video object. 
> 
> Which of these ways is best and could someone please help me to get 
> one method working.
> 
> Hopefully,
> 
> Mike
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing 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  . 
> 
>  
> 
> 
>






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

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

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

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

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





RE: [flexcoders] Variable Initialization Bug? Data Binding Issues in Flex 1.5

2005-12-08 Thread Rajni Choudhary










Can anybody tell how to disable refresh
button of browser in flex

 









From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Ben Lucyk
Sent: Thursday, December 08, 2005
6:04 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Variable
Initialization Bug? Data Binding Issues in Flex 1.5



 



Well, your post made a little more sense after reading your
article!  :)  It sure does go in depth, but it's definitely an
interesting read.  





 





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





 





Thanks a bunch Roger...    ~thumbs up~





 





-Ben

 





On 12/7/05, Roger
Gonzalez <[EMAIL PROTECTED]>
wrote: 

In 1.5, we tracked the dependencies of static
initializers for inclusion in the SWF, but because the statics are actually
initialized while the movie is streaming in, we would also have needed to have
tracked things to ensure that all classes referenced in
the dependency tree of the right hand side of the static
initializer are all earlier in the stream.  This was an
overconstrained problem with few useful solutions.  What I added as a
workaround was to at least track the LHS of static initializers for
ordering.  This lets you resolve stuff with a bit of manual pain.  I
wrote a devnet article that goes into more detail, if you feel like digging it
up. 

 

The solution for 2.0 was to reduce the need for
strict ordering for statics by not initializing stuff until the end of the
frame.  This way we just have the requirement that your references must be
on the same frame (or earlier), but don't need to have strict ordering within
the frame.  Much more solvable! 

 

-Roger

Roger Gonzalez
[EMAIL PROTECTED]




 





 







From: flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On Behalf Of Ben
Lucyk
Sent: Wednesday, December 07, 2005
2:15 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Variable
Initialization Bug? Data Binding Issues in Flex 1.5

 





Thanks for the tip Matt.  





 





Do you have any more details (or a good reference to point me towards)
as to why this is the case though?  There doesn't seem to be any problem
initializing an instance variable this way at the "component"
level.  Has this behavior changed at all in Flex 2.0 that you know of? 






 





Ben

 





On 12/6/05, Matt
Chotin <[EMAIL PROTECTED]
> wrote: 



Instance variable assignment in the declaration is always
dangerous because dependencies are generally not tracked for initialization
purposes.  Assigning the variable in a function that's called later (like
creationComplete or even initialize) is considered the best-practice. 

 

Matt

 









From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Ben Lucyk
Sent: Tuesday, December 06, 2005
1:03 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Variable
Initialization Bug? Data Binding Issues in Flex 1.5





 



OK, help
me out here, 'cause I've been scratchin' my head a little too hard on this
one...





 





What I'm
trying to do is setup a simple static class to use as a pointer to my main, global
model, from within my MXML components.  I've been running into some
"interesting" behavior that I can't explain, and I'm wondering if
anyone can help shed some light.   (Couldn't find much help in the
docs or forums) 





 





I'm
seeing that when I'm at the  level and I try to bind to a
"global" variable that is initialized from the static class I
mentioned above, no binding takes place unless I initialize the var after
creationComplete().  This is NOT required however, when I'm trying to use
the same type of binding in a component.  (The var seems to initialize
fine) 





 





I should
mention that I've also tested this using a "normal" class ( var
resource:String = new com.StaticResource().test;), and also a singleton class
( var resource = com.StaticResource.getInstance().test;).  No
difference. 





 





Any
thoughts?





 





 






Sample Code 





 














class com.StaticResource {
    public static var test:String = "Bliggidy!";
}  





 











 





 







 











 






 http://www.macromedia.com/2003/mxml"
 creationComplete="doCreated()"> 
 
 
 
 
  
   
 
 






 











 





 













 






 http://www.macromedia.com/2003/mxml">
     
    
     
    
    
 





 











 







 





Also, how
are ModelLocators typically implemented using the Cairngorm framework?

Thanks in advance,
-Ben Lucyk
  








--
Flexcoders Mailing 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 su

[flexcoders] checkCellRender Validation

2005-12-08 Thread jagabcdeff
Hi ,

I am working on "cellRenderer" which looks like below code.


  





 
  

The above code is showing Checkbox in DataGrid.
I have no.of checkboxes with same no.of "Item Name"s.

Now i want to validate on checkboxs means that when i check any one 
check box the remaining checkboxes should be disabled and again 
unchecked same checked box remaining checkeboxes should be enabled.

can anyone provide code for above validation?

Any help is greatly appreciate..

Jagadeesh











 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/
 




RE: [flexcoders] Part 2: Issues with State and Component creation (Flex 2.0 Alpha)

2005-12-08 Thread Ralf Rottmann
Dirk,

Works perfectly well - thank you.
The last step to making this completely work is: How about the text color. 
Binding the color property to a public bindable String variable did not do the 
trick:

 

and later

this.TheSystemMessageDialog.textColor="#33";

does not work.




Ralf 

---
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk 
Eismann
Sent: Donnerstag, 8. Dezember 2005 14:42
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Part 2: Issues with State and Component creation 
(Flex 2.0 Alpha)

Hi,
 
try to expose the text that should be displayed in the SystemMessage component 
as a public member and let the Label bind to this member, i.e.
 

http://www.macromedia.com/2005/mxml"; xmlns="*">
  

  
  


Later you do

  private function addLabel():Void 
  {
currentState="LabelAdded";
TheSystemMessage.message = "I have been added";
  }

Dirk.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Ralf Rottmann
Sent: Thursday, December 08, 2005 2:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Part 2: Issues with State and Component creation 
(Flex 2.0 Alpha)



Here is some code which illustrates the issue:

 

1. The Component (File SystemMessage.mxml):

 



http://www.macromedia.com/2005/mxml"; xmlns="*">

  



 

 

2. The main application (File StatePlayground.mxml):

 



http://www.macromedia.com/2005/mxml"; 
xmlns:local="*">

  



  

  



  

 

  

  

  



  



  



  



 

 

è Issue: First click on "Add label" Buttonf fails with Erorr #1009: 
Null has no properties. If you dismiss the error subsequent clicks work.

 

Ralf 

 



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





YAHOO! GROUPS LINKS 


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








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



 




 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] Part 2: Issues with State and Component creation (Flex 2.0 Alpha)

2005-12-08 Thread Dirk Eismann
Unfortunately, styles don't work with binding. Here's another approach:

// inside SystemMessage.mxml

  


Then, from the outside you do:

  this.TheSystemMessageDialog.textColor = 0x33;

The implicit setter function inside SystemMessage.mxml looks like a public 
member to the outside world but allows you to encapsulate functionality. Note, 
the color value is typed as Number. 

Dirk.


> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Rottmann
> Sent: Thursday, December 08, 2005 2:56 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Part 2: Issues with State and 
> Component creation (Flex 2.0 Alpha)
> 
> Dirk,
> 
> Works perfectly well - thank you.
> The last step to making this completely work is: How about 
> the text color. Binding the color property to a public 
> bindable String variable did not do the trick:
> 
>  color="{textColor}"/> 
> 
> and later
> 
> this.TheSystemMessageDialog.textColor="#33";
> 
> does not work.
> 
> 
> 
> 
> Ralf 
> 
> ---
> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann
> Sent: Donnerstag, 8. Dezember 2005 14:42
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Part 2: Issues with State and 
> Component creation (Flex 2.0 Alpha)
> 
> Hi,
>  
> try to expose the text that should be displayed in the 
> SystemMessage component as a public member and let the Label 
> bind to this member, i.e.
>  
> 
> http://www.macromedia.com/2005/mxml"; xmlns="*">
>   
> 
>   
>
> 
> Later you do
> 
>   private function addLabel():Void
>   {
> currentState="LabelAdded";
> TheSystemMessage.message = "I have been added";
>   }
> 
> Dirk.
> 
> 
> 
>   From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Rottmann
>   Sent: Thursday, December 08, 2005 2:34 PM
>   To: flexcoders@yahoogroups.com
>   Subject: [flexcoders] Part 2: Issues with State and 
> Component creation (Flex 2.0 Alpha)
>   
>   
> 
>   Here is some code which illustrates the issue:
> 
>
> 
>   1. The Component (File SystemMessage.mxml):
> 
>
> 
>   
> 
>xmlns:mx="http://www.macromedia.com/2005/mxml"; xmlns="*">
> 
> 
> 
>   
> 
>
> 
>
> 
>   2. The main application (File StatePlayground.mxml):
> 
>
> 
>   
> 
>xmlns:mx="http://www.macromedia.com/2005/mxml"; xmlns:local="*">
> 
> 
> 
>   
> 
> 
> 
> 
> 
>   
> 
>  click="addLabel()"/>
> 
>  click="removeLabel()"/>   
> 
> 
> 
> 
> 
> 
> 
>   
> 
> 
> 
>id="TheSystemMessage"/>
> 
> 
> 
>   
> 
> 
> 
>   
> 
>
> 
>
> 
>   è Issue: First click on "Add label" Buttonf fails with 
> Erorr #1009: Null has no properties. If you dismiss the error 
> subsequent clicks work.
> 
>
> 
>   Ralf 
> 
>
> 
> 
> 
>   --
>   Flexcoders Mailing List
>   FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>   Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
>   
>   
>   
> 
> 
>   YAHOO! GROUPS LINKS 
> 
> 
>   *Visit your group "flexcoders 
>  " on the web.
> 
>   *To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED] 
>  
> 
>   *Your use of Yahoo! Groups is subject to the 
> Yahoo! Terms of Service  . 
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
>  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
> 
> 
> 
>  
> 
> 
> 


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.c

RE: [flexcoders] Re: Newbie Flex/Media Server problem

2005-12-08 Thread Abdul Qabiz
 Hi Mike,

There is no MediaDisplay class in Flex 2.0. VideoDisplay is a face-less
component which you can wrap into any UI to do things.


Can you please tell me the directory structure of flashcomm application?
What does "video_app1" corresponds in this url:
rtmp://localhost/video_app/video_app1/myvideo?



I give you an example:


video_app
streams
_definst_
video.flv

scripts
main.asc



http://www.macromedia.com/2005/mxml";>



Also you need main.asc on server-side to stream flv to VideoDisplay. I
need to check docs, if it is not documented there. Also we need to
provide proper setup instructions in docs also. I am sorry if it is
missing.

This is the same file which Peldi's provided with his FLVPlayer. This
file does bandwidth detection and returns the stream length etc.

I think, alpha documentations are missing it. So please find the
attached main.asc and place it under "scripts" directory inside your
flashcomm application directory, as shown above.


Let me know, if you still see problem.


-abdul







-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Wall
Sent: Thursday, December 08, 2005 2:59 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Newbie Flex/Media Server problem


Thanks for the link Matt. I tried to build it in my env but I've got 
a problem in that the LiveMediaDisplay class extends the 
mx.controls.MediaDisplay class which I can't access in my flex 
installation (I'm using Flex 2.0 a1). I'm assuming that the code in 
this is written for Flex 1.5?



--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> Have you read this article by Christophe?
> http://coenraets.com/viewarticle.jsp?articleId=90
> 
>  
> 
> In the source code for that app is a LiveMediaDisplay class that we 
used
> to work around some issues that we had with playing a Flashcom 
streams.
> It might help you out...
> 
>  
> 
> Matt
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Mike Wall
> Sent: Wednesday, December 07, 2005 5:50 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Newbie Flex/Media Server problem
> 
>  
> 
> 
> Hello all,
> 
> I'd like to ask for some help on streaming FLV's from Media Server 
to 
> a Flex app.
> 
> I've configured a basic app in Media Server based on the component 
> framework. Then tried using the mx:VideoDisplay control in Flex to 
> conect to a named instance of the app by supplying 
> url="rtmp://localhost/video_app/video_app1/myvideo" but in media 
> server console I see a conection to the default instance of the app 
> not the named one.
> 
> I've also tried creating a NetConnection and NetStream then 
> connecting the NetStream to a flash.net.Video with the 
attachNetStream
> () method. The connection to Media Server works ok and I can see a 
> live stream having been create in the Media Server console but I 
> can't get Flex to draw the Video object. 
> 
> Which of these ways is best and could someone please help me to get 
> one method working.
> 
> Hopefully,
> 
> Mike
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> 
> 
> 
> 
> 
> 
> YAHOO! GROUPS LINKS 
> 
>  
> 
> *  Visit your group "flexcoders
>  " on the web.
> 
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>  
> 
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service  . 
> 
>  
> 
> 
>







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



 





 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/
 


main.asc
Description: main.asc


[flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread colinblackmore
--- In flexcoders@yahoogroups.com, "John Larson" <[EMAIL PROTECTED]> wrote:
>
> --- In flexcoders@yahoogroups.com, "colinblackmore" 
> <[EMAIL PROTECTED]> wrote:
> >
> > I have a flex application that works perfectly when deployed under
> > http.  However, when I attempt to connect via https none of the
> > HTTPService calls return successfully.
> > 
> > The odd thing is that this only occurs when using https on Internet
> > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine 
> under
> > both http and https.
> > 
> > Some additional information:
> > 
> > - The fault code from the HTTPService is:
> >  fault: (Object)
> >   faultcode: Client.Disconnected (String)
> >   faultstring: Could not retrieve data. (String)
> > - I am *not* using the flex proxy.
> > - Calling the HTTPService URL directly from the browser works 
> fine. 
> > It's only when flex attempts to call it from the client.
> > - Tomcat 5.5 is the web-server.
> > - I added the following crossdomain.xml to both the server root and
> > the context root (to no avail).
> > 
> > 
> > 
> > 
> > 
> > Again, this is only an issue with IE.  Anyone out there 
> successfully
> > serving a flex app to IE over https?
> > 
> > Thanks in advance
> > 
> > ...Col
> >
> 
> 
> In our flex-config.xml file we've had to change this line in the 
> HTTP-service-Proxy area:
> 
> {context.root}/flashproxy
> 
> to:
> HTTPS://(fully qualified domain)/(context root 
> directory)/flashproxy
> 
> 
> For some reason, our system doesn't like {context-root} for https 
> calls. 
> 
> 
> 
> John
>

John...

I gave it a go, but it did not affect the behaviour.  I assume this
only has an effect when you are using the flashproxy (which I'm not).

Thanks anyway.

...Col





 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] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread colinblackmore
Carson...

OK, now I'm confused! :-D

I disabled the security constraints and it now works!  

So I guess my questions now are:

a) Why do the browsers (Firefox/IE) behave differently in this respect?
b) How can I configure things to have both authentication AND https
within IE?

Again to restate, I am using Tomcat, but not using the flashproxy
(since I'm using form based authentication which the proxy doesn't
handle).

Many thanks for your help.

...Col

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> Are you possibly operating within an authenticated session?
> 
> 
> Carson
> 
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
>  
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of colinblackmore
> Sent: Tuesday, December 06, 2005 1:15 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Unable to retrieve data via HTTPService over https
> in *IE*.
> 
> I have a flex application that works perfectly when deployed under http.
> However, when I attempt to connect via https none of the HTTPService
> calls return successfully.
> 
> The odd thing is that this only occurs when using https on Internet
> Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine under
> both http and https.
> 
> Some additional information:
> 
> - The fault code from the HTTPService is:
>  fault: (Object)
>   faultcode: Client.Disconnected (String)
>   faultstring: Could not retrieve data. (String)
> - I am *not* using the flex proxy.
> - Calling the HTTPService URL directly from the browser works fine. 
> It's only when flex attempts to call it from the client.
> - Tomcat 5.5 is the web-server.
> - I added the following crossdomain.xml to both the server root and the
> context root (to no avail).
> 
> 
>   
> 
> 
> Again, this is only an issue with IE.  Anyone out there successfully
> serving a flex app to IE over https?
> 
> Thanks in advance
> 
> ...Col
> 
> 
> 
> 
> 
>  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 ~--> 
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] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Carson Hager
That's correct. This suggestion won't help you.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of colinblackmore
Sent: Thursday, December 08, 2005 7:12 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
https in *IE*.

--- In flexcoders@yahoogroups.com, "John Larson" <[EMAIL PROTECTED]> wrote:
>
> --- In flexcoders@yahoogroups.com, "colinblackmore" 
> <[EMAIL PROTECTED]> wrote:
> >
> > I have a flex application that works perfectly when deployed under
> > http.  However, when I attempt to connect via https none of the
> > HTTPService calls return successfully.
> > 
> > The odd thing is that this only occurs when using https on Internet
> > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine 
> under
> > both http and https.
> > 
> > Some additional information:
> > 
> > - The fault code from the HTTPService is:
> >  fault: (Object)
> >   faultcode: Client.Disconnected (String)
> >   faultstring: Could not retrieve data. (String)
> > - I am *not* using the flex proxy.
> > - Calling the HTTPService URL directly from the browser works 
> fine. 
> > It's only when flex attempts to call it from the client.
> > - Tomcat 5.5 is the web-server.
> > - I added the following crossdomain.xml to both the server root and
> > the context root (to no avail).
> > 
> > 
> > 
> > 
> > 
> > Again, this is only an issue with IE.  Anyone out there 
> successfully
> > serving a flex app to IE over https?
> > 
> > Thanks in advance
> > 
> > ...Col
> >
> 
> 
> In our flex-config.xml file we've had to change this line in the 
> HTTP-service-Proxy area:
> 
> {context.root}/flashproxy
> 
> to:
> HTTPS://(fully qualified domain)/(context root 
> directory)/flashproxy
> 
> 
> For some reason, our system doesn't like {context-root} for https 
> calls. 
> 
> 
> 
> John
>

John...

I gave it a go, but it did not affect the behaviour.  I assume this
only has an effect when you are using the flashproxy (which I'm not).

Thanks anyway.

...Col






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





RE: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Carson Hager
You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth. The
good news is that there is an easy fix. Are you using Form or Basic
auth?


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of colinblackmore
Sent: Thursday, December 08, 2005 7:21 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
https in *IE*.

Carson...

OK, now I'm confused! :-D

I disabled the security constraints and it now works!  

So I guess my questions now are:

a) Why do the browsers (Firefox/IE) behave differently in this respect?
b) How can I configure things to have both authentication AND https
within IE?

Again to restate, I am using Tomcat, but not using the flashproxy
(since I'm using form based authentication which the proxy doesn't
handle).

Many thanks for your help.

...Col

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> Are you possibly operating within an authenticated session?
> 
> 
> Carson
> 
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
>  
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On
> Behalf Of colinblackmore
> Sent: Tuesday, December 06, 2005 1:15 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Unable to retrieve data via HTTPService over
https
> in *IE*.
> 
> I have a flex application that works perfectly when deployed under
http.
> However, when I attempt to connect via https none of the HTTPService
> calls return successfully.
> 
> The odd thing is that this only occurs when using https on Internet
> Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine under
> both http and https.
> 
> Some additional information:
> 
> - The fault code from the HTTPService is:
>  fault: (Object)
>   faultcode: Client.Disconnected (String)
>   faultstring: Could not retrieve data. (String)
> - I am *not* using the flex proxy.
> - Calling the HTTPService URL directly from the browser works fine. 
> It's only when flex attempts to call it from the client.
> - Tomcat 5.5 is the web-server.
> - I added the following crossdomain.xml to both the server root and
the
> context root (to no avail).
> 
> 
>   
> 
> 
> Again, this is only an issue with IE.  Anyone out there successfully
> serving a flex app to IE over https?
> 
> Thanks in advance
> 
> ...Col
> 
> 
> 
> 
> 
>  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
>








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





[flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread colinblackmore
Form based authentication.

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth. The
> good news is that there is an easy fix. Are you using Form or Basic
> auth?
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 7:21 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Carson...
> 
> OK, now I'm confused! :-D
> 
> I disabled the security constraints and it now works!  
> 
> So I guess my questions now are:
> 
> a) Why do the browsers (Firefox/IE) behave differently in this respect?
> b) How can I configure things to have both authentication AND https
> within IE?
> 
> Again to restate, I am using Tomcat, but not using the flashproxy
> (since I'm using form based authentication which the proxy doesn't
> handle).
> 
> Many thanks for your help.
> 
> ...Col
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> >
> > Are you possibly operating within an authenticated session?
> > 
> > 
> > Carson
> > 
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> >  
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of colinblackmore
> > Sent: Tuesday, December 06, 2005 1:15 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Unable to retrieve data via HTTPService over
> https
> > in *IE*.
> > 
> > I have a flex application that works perfectly when deployed under
> http.
> > However, when I attempt to connect via https none of the HTTPService
> > calls return successfully.
> > 
> > The odd thing is that this only occurs when using https on Internet
> > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine under
> > both http and https.
> > 
> > Some additional information:
> > 
> > - The fault code from the HTTPService is:
> >  fault: (Object)
> >   faultcode: Client.Disconnected (String)
> >   faultstring: Could not retrieve data. (String)
> > - I am *not* using the flex proxy.
> > - Calling the HTTPService URL directly from the browser works fine. 
> > It's only when flex attempts to call it from the client.
> > - Tomcat 5.5 is the web-server.
> > - I added the following crossdomain.xml to both the server root and
> the
> > context root (to no avail).
> > 
> > 
> > 
> > 
> > 
> > Again, this is only an issue with IE.  Anyone out there successfully
> > serving a flex app to IE over https?
> > 
> > Thanks in advance
> > 
> > ...Col
> > 
> > 
> > 
> > 
> > 
> >  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
> >
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>







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




RE: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Carson Hager
Excellent.  In META-INF, you will need a context.xml file that looks
like this.  This instructs Tomcat to use the FormAuthenticator value and
turns off proxy caching. This will fix the problem of the header being
sent to IE which it cannot handle. If you don't have a META-INF
directory, just create it in the root of your web app right next to
WEB-INF.  You will need to reload your web application or restart
Tomcat.






WEB-INF/web.xml
META-INF/context.xml
WEB-INF/web.xml
META-INF/context.xml
WEB-INF/web.xml
META-INF/context.xml




Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of colinblackmore
Sent: Thursday, December 08, 2005 7:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
https in *IE*.

Form based authentication.

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth. The
> good news is that there is an easy fix. Are you using Form or Basic
> auth?
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 7:21 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Carson...
> 
> OK, now I'm confused! :-D
> 
> I disabled the security constraints and it now works!  
> 
> So I guess my questions now are:
> 
> a) Why do the browsers (Firefox/IE) behave differently in this
respect?
> b) How can I configure things to have both authentication AND https
> within IE?
> 
> Again to restate, I am using Tomcat, but not using the flashproxy
> (since I'm using form based authentication which the proxy doesn't
> handle).
> 
> Many thanks for your help.
> 
> ...Col
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> >
> > Are you possibly operating within an authenticated session?
> > 
> > 
> > Carson
> > 
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> >  
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of colinblackmore
> > Sent: Tuesday, December 06, 2005 1:15 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Unable to retrieve data via HTTPService over
> https
> > in *IE*.
> > 
> > I have a flex application that works perfectly when deployed under
> http.
> > However, when I attempt to connect via https none of the HTTPService
> > calls return successfully.
> > 
> > The odd thing is that this only occurs when using https on Internet
> > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine under
> > both http and https.
> > 
> > Some additional information:
> > 
> > - The fault code from the HTTPService is:
> >  fault: (Object)
> >   faultcode: Client.Disconnected (String)
> >   faultstring: Could not retrieve data. (String)
> > - I am *not* using the flex proxy.
> > - Calling the HTTPService URL directly from the browser works fine. 
> > It's only when flex attempts to call it from the client.
> > - Tomcat 5.5 is the web-server.
> > - I added the following crossdomain.xml to both the server root and
> the
> > context root (to no avail).
> > 
> > 
> > 
> > 
> > 
> > Again, this is only an issue with IE.  Anyone out there successfully
> > serving a flex app to IE over https?
> > 
> > Thanks in advance
> > 
> > ...Col
> > 
> > 
> > 
> > 
> > 
> >  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
> >
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing 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: h

[flexcoders] Menu Bar Killing me. Can someone help.

2005-12-08 Thread Jeremy Rottman
I have a menu bar that I have written in flex 2.0, that I would like
to use to control a view stack. I have tried using the 1.5 method that
is posted on cflex.net, but it does not work with flex 2.0. 

Does anyone have a clue on how I can do this, I have been fighting
with this for almost a week.





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

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

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

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

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




[flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread colinblackmore
Fantastic!  That worked.  You saved me a 'lot' of time and effort!!

Thank you for taking the time.  I really appreciate it.

...Col

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> Excellent.  In META-INF, you will need a context.xml file that looks
> like this.  This instructs Tomcat to use the FormAuthenticator value and
> turns off proxy caching. This will fix the problem of the header being
> sent to IE which it cannot handle. If you don't have a META-INF
> directory, just create it in the root of your web app right next to
> WEB-INF.  You will need to reload your web application or restart
> Tomcat.
> 
> 
> 
> 
>   
> className="org.apache.catalina.authenticator.FormAuthenticator"
>   disableProxyCaching="false" />
>   
>   WEB-INF/web.xml
>   META-INF/context.xml
>   WEB-INF/web.xml
>   META-INF/context.xml
>   WEB-INF/web.xml
>   META-INF/context.xml
> 
> 
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 7:54 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Form based authentication.
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> >
> > You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth. The
> > good news is that there is an easy fix. Are you using Form or Basic
> > auth?
> > 
> > 
> > Carson
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of colinblackmore
> > Sent: Thursday, December 08, 2005 7:21 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> > https in *IE*.
> > 
> > Carson...
> > 
> > OK, now I'm confused! :-D
> > 
> > I disabled the security constraints and it now works!  
> > 
> > So I guess my questions now are:
> > 
> > a) Why do the browsers (Firefox/IE) behave differently in this
> respect?
> > b) How can I configure things to have both authentication AND https
> > within IE?
> > 
> > Again to restate, I am using Tomcat, but not using the flashproxy
> > (since I'm using form based authentication which the proxy doesn't
> > handle).
> > 
> > Many thanks for your help.
> > 
> > ...Col
> > 
> > --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> > wrote:
> > >
> > > Are you possibly operating within an authenticated session?
> > > 
> > > 
> > > Carson
> > > 
> > > 
> > > 
> > >  
> > > Carson Hager
> > > Cynergy Systems, Inc.
> > > http://www.cynergysystems.com
> > >  
> > > Email:  [EMAIL PROTECTED]
> > > Office:  866-CYNERGY
> > > Mobile: 1.703.489.6466
> > >  
> > >  
> > > 
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> > On
> > > Behalf Of colinblackmore
> > > Sent: Tuesday, December 06, 2005 1:15 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Unable to retrieve data via HTTPService over
> > https
> > > in *IE*.
> > > 
> > > I have a flex application that works perfectly when deployed under
> > http.
> > > However, when I attempt to connect via https none of the HTTPService
> > > calls return successfully.
> > > 
> > > The odd thing is that this only occurs when using https on Internet
> > > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine under
> > > both http and https.
> > > 
> > > Some additional information:
> > > 
> > > - The fault code from the HTTPService is:
> > >  fault: (Object)
> > >   faultcode: Client.Disconnected (String)
> > >   faultstring: Could not retrieve data. (String)
> > > - I am *not* using the flex proxy.
> > > - Calling the HTTPService URL directly from the browser works fine. 
> > > It's only when flex attempts to call it from the client.
> > > - Tomcat 5.5 is the web-server.
> > > - I added the following crossdomain.xml to both the server root and
> > the
> > > context root (to no avail).
> > > 
> > > 
> > >   
> > > 
> > > 
> > > Again, this is only an issue with IE.  Anyone out there successfully
> > > serving a flex app to IE over https?
> > > 
> > > Thanks in advance
> > > 
> > > ...Col
> > > 
> > > 
> > > 
> > > 
> > > 
> > >  Yahoo! Groups Sponsor
> > ~-->
> > > Get Bzzzy! (real tools to help you find a job). Welcome to t

RE: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Carson Hager
My pleasure. I know that's a tricky one.  We confronted it about a year
ago and most thought we had lost our minds. Turns out few people had
used that combination at that point which seemed fairly odd to us.
Anyway, I'm glad you found it useful.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of colinblackmore
Sent: Thursday, December 08, 2005 8:38 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
https in *IE*.

Fantastic!  That worked.  You saved me a 'lot' of time and effort!!

Thank you for taking the time.  I really appreciate it.

...Col

--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> Excellent.  In META-INF, you will need a context.xml file that looks
> like this.  This instructs Tomcat to use the FormAuthenticator value
and
> turns off proxy caching. This will fix the problem of the header being
> sent to IE which it cannot handle. If you don't have a META-INF
> directory, just create it in the root of your web app right next to
> WEB-INF.  You will need to reload your web application or restart
> Tomcat.
> 
> 
> 
> 
>   
> className="org.apache.catalina.authenticator.FormAuthenticator"
>   disableProxyCaching="false" />
>   
>   WEB-INF/web.xml
>   META-INF/context.xml
>   WEB-INF/web.xml
>   META-INF/context.xml
>   WEB-INF/web.xml
>   META-INF/context.xml
> 
> 
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 7:54 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Form based authentication.
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> >
> > You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth.
The
> > good news is that there is an easy fix. Are you using Form or Basic
> > auth?
> > 
> > 
> > Carson
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of colinblackmore
> > Sent: Thursday, December 08, 2005 7:21 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Unable to retrieve data via HTTPService
over
> > https in *IE*.
> > 
> > Carson...
> > 
> > OK, now I'm confused! :-D
> > 
> > I disabled the security constraints and it now works!  
> > 
> > So I guess my questions now are:
> > 
> > a) Why do the browsers (Firefox/IE) behave differently in this
> respect?
> > b) How can I configure things to have both authentication AND https
> > within IE?
> > 
> > Again to restate, I am using Tomcat, but not using the flashproxy
> > (since I'm using form based authentication which the proxy doesn't
> > handle).
> > 
> > Many thanks for your help.
> > 
> > ...Col
> > 
> > --- In flexcoders@yahoogroups.com, "Carson Hager"
<[EMAIL PROTECTED]>
> > wrote:
> > >
> > > Are you possibly operating within an authenticated session?
> > > 
> > > 
> > > Carson
> > > 
> > > 
> > > 
> > >  
> > > Carson Hager
> > > Cynergy Systems, Inc.
> > > http://www.cynergysystems.com
> > >  
> > > Email:  [EMAIL PROTECTED]
> > > Office:  866-CYNERGY
> > > Mobile: 1.703.489.6466
> > >  
> > >  
> > > 
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED]
> > On
> > > Behalf Of colinblackmore
> > > Sent: Tuesday, December 06, 2005 1:15 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Unable to retrieve data via HTTPService over
> > https
> > > in *IE*.
> > > 
> > > I have a flex application that works perfectly when deployed under
> > http.
> > > However, when I attempt to connect via https none of the
HTTPService
> > > calls return successfully.
> > > 
> > > The odd thing is that this only occurs when using https on
Internet
> > > Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine
under
> > > both http and https.
> > > 
> > > Some additional information:
> > > 
> > > - The fault code from the HTTPService is:
> > >  fault: (Object)
> > >   faultcode: Client.Disconnected (String)
> > >   faultstring: Could not retrieve data. (String)
> > 

[flexcoders] Flex 2: Adding Result Set Column

2005-12-08 Thread Dave Carabetta
This is likely a very basic one, but I can't quite sort it out. I have
a ColdFusion query that is returning a column of sub-totals. I'd like
to use AS to calculate a grand total based on the sub-total column
(named "total"). I'm using the code below, but I keep getting an
"Unknown Property total" error:

function getGrandTotal(event:ResultEvent) {
  var totalResp:int;

  for ( var i:int = 0; i 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] 2 Easy questions - fields that begin with '_' and location of javadoc

2005-12-08 Thread Libby

2 Easy Questions for you experts that have been nagging at me:

1. Is it safe to refer to fields that begin with a '_', or are these
names subject to arbitrary change at some point by MM/Adobe?

2. Is the "javadoc" for built-in classes such as Array and String
contained somewhere in the javadoc that is loaded on our hard drive,
or do you always have to go out to FlexDocs to see it? If it is on the
HD, what is the path to it? I can't find it in the ActionScript 2.0 /
MXML Tag doc.

Thanks,
Libby





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

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

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

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

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





Re: [flexcoders] Odd error showing up in logs

2005-12-08 Thread Raymond Camden



I -am- doing image loading like that. Seems like an odd error though for that. I'll check into the images though. Thanks!On 12/7/05, Matt Chotin <
[EMAIL PROTECTED]> wrote:
















Probably you're requesting an image or
Loader and the url to the image is a string concatentation of some values, but
you either have the wrong second value (like forgetting to put parentheses on a
function call) or maybe the value is not what you think it should be.

 

Or if it's not a concatenation
(maybe imo is your app directory) just try to find other Image tags or whatever
and see how they're set up?  Are you using your own custom HTML wrapper
by chance?  Maybe the history manager got messed up or something if so?

 

Matt

 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Raymond Camden
Sent: Wednesday, December 07, 2005
6:52 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Odd error
showing up in logs



 

Anyone seen an error like
this before:

11/16 11:01:43 error Requested resource
'/imo/[type Function]'
(%2fimo%2f%5btype%20Function%5d) not found

We see a bunch of them and can't seem to tell what
is causing them.

--
===
Raymond Camden, Director of Development for
Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)


Email    : [EMAIL PROTECTED]
Blog :
ray.camdenfamily.com
Yahoo IM : cfjedimaster

"My ally is the Force, and a powerful ally it
is." - Yoda










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



  










-- ===Raymond Camden, Director of Development for Mindseye, Inc (
www.mindseye.com)Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.comYahoo IM : cfjedimaster"My ally is the Force, and a powerful ally it is." - Yoda  






--
Flexcoders Mailing 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] How to deselect a RadioButtonGroup?

2005-12-08 Thread huhgawz
How to deselect a RadioButtonGroup?

I try it using the next code but fails.

After the application is loaded, I click the "getValue" button and the
label displays "Value: undefined" (this behaviour is ok). Then I click
the "Female" RadioButton and click the "getValue" button and the label
displays "Value: F" (this behaviour is ok too). Finally, I click the
"setUndefined" button to make the RadioButtonGroup selection undefined.

In fact, the RadioButtonGroup has nothing selected visually but
when I click the "getValue" button the label displays "Value: F". I
wish the label displays again "Value: undefined"



http://www.macromedia.com/2003/mxml";>





















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

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

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

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

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




RE: [flexcoders] FocusInHandler Issue Part III

2005-12-08 Thread Matt Chotin
Title: Re: [flexcoders] FocusInHandler Issue Part III










Not announced yet, some time after the new
year I think.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann
Sent: Wednesday, December 07, 2005
11:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
FocusInHandler Issue Part III



 

Thanks Matt,

Any idea when that build will come out?

Best regards
RR
--
mobile: +49-(0)170-914-5495
email:   [EMAIL PROTECTED]




-Original Message-
From: flexcoders@yahoogroups.com

To: flexcoders@yahoogroups.com 
Sent: Thu Dec 08 06:43:12 2005
Subject: RE: [flexcoders] FocusInHandler Issue Part III

I don’t know what the problem is but I ran it on a current build and
it’s working.  So find a way to avoid it in the short-term and it
will hopefully work with the next build we drop.



Matt





From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Ralf Rottmann
Sent: Wednesday, December 07, 2005 2:26 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FocusInHandler Issue Part III



As the FocusInHandler issue is really starting to become critical for us prior
to moving forward with our application, I have posted the downloadable source
code along with a running version of the sample application at my blog http://www.rottmann.net/blog/?p=5
. I desperately hope somebody knows at least a workaround to avoid the behavior.



Thanks for all your patience and help so far.



Ralf






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




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



YAHOO! GROUPS LINKS


   
*    Visit your group "flexcoders

" on the web.
     
*    To unsubscribe from this group,
send an email to:

[EMAIL PROTECTED] 
     
*    Your use of Yahoo! Groups is
subject to the Yahoo! Terms of Service 
.












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Datagrid Row Color

2005-12-08 Thread Shahnavaz Alware










Hi,

I am trying to change the color of the entire
single row of a datagrid using cellRenderer. I don’t have much experience
using CellRenderer or RowRenderer and have not seen any example where a
cellRenderer changes the property or backgroundColor of entire row. The CellRenderer
 setValue() below gives me “[Fault] recursion_limit”. If
anybody has working example to achieve this would be really helpful.

 

    function
setValue(str:String, item:Object, sel:Boolean) : Void

   
{   

   
text = String(item.Price);

   
var price:Number = Number(text);

   
if(price > 100)

   
{

      
listOwner.dataProvider.editField(getCellIndex().itemIndex,
"backgroundColor", "0x00");

   
}

   
} else ……

 

 

Thanks,









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Tuesday, December 06, 2005
8:48 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Datagrid
Issue



 

listOwner.dataProvider.editField(getCellIndex().itemIndex,
“backgroundColor”, 0x00)

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of shahnavaz Alware
Sent: Tuesday, December 06, 2005
4:11 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Datagrid
Issue



 

Thanks Matt,

 

I was under the impression that when
datagrid sort, will clean itself off. Using the same example how I can make the
cellRenderer change the color of entire row where Price > 100? I did tried
using listOwner[getCellIndex().itemIndex].setStyle("backgroundColor",
0x00) with no luck.

 

Thanks,

 

Shahn

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Monday, December 05, 2005
6:16 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Datagrid
Issue



 

Well you still need an else so that you
call setBackgroundColor even when price is less than 100.  The cell is
re-used, you need to cover all cases in your setValue function.  So your
else statement here can be to setCellBackgroundColor(0xff, 0)

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Shahnavaz Alware
Sent: Monday, December 05, 2005
5:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Datagrid
Issue



 

Hi Matt,

 

The code is not the problem here. I am not
sure if I have to reassign the dataprovider after I click on Price header. I
replaced the script so now I am just checking for Price > 100 and when you
sort by price after it renders the result is still the same.

 



 

    

   


    

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Monday, December 05, 2005
5:04 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Datagrid
Issue



 

Don’t you need a check for < 1000
in your if (price > 100) test?

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Shahnavaz Alware
Sent: Monday, December 05, 2005
4:59 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Datagrid
Issue



 

Hi,

 

I am using a cellRenderer in my datagrid. Now when I sort by
clicking on header the DatagridColumns on which I have cellRenderer never
cleans up the cell which was rendered by cellRenderer. How can I solve this
issue? Files and screen Image below. 

à





   


   


   


   


   


   


   


 


   

   


   


   


   


   


 

   




 

à



borderStyle="none"
backgroundAlpha="0">

    

    function
setValue(str, item, sel)

   
{   

   
text = String(item.Price);

   
var price:Number = Number(text);

   
if(price > 100)

   
{

  
setCellBackgroundColor(0x00FF00, 100);

   
}

   
else if(price > 1000)

   
{

   
setCellBackgroundColor(0x00FF00, 100);

   
}

    }

    

    function
setCellBackgroundColor(newColor, newAlpha)

    {





setStyle("backgroundAlpha", newAlpha==undefined ? 0 :newAlpha);


setStyle("backgroundColor", newColor); 

    }

    



 



 

After Sorting on Price



 

 

Thanks,

 

Shahn

 

 














--
Flexcoders Mailing 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] FocusInHandler Issue Part III

2005-12-08 Thread Ralf Rottmann
Title: Re: [flexcoders] FocusInHandler Issue Part III








Good. Meanwhile I've published a workaround on my blog along with the code examples. (www.rottmann.net).

Thanks for helping.

R



-Original Message-
From: flexcoders@yahoogroups.com 
To: flexcoders@yahoogroups.com 
Sent: Thu Dec 08 19:17:07 2005
Subject: RE: [flexcoders] FocusInHandler Issue Part III

Not announced yet, some time after the new year I think.



Matt





From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann
Sent: Wednesday, December 07, 2005 11:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] FocusInHandler Issue Part III



Thanks Matt,

Any idea when that build will come out?

Best regards
RR
--
mobile: +49-(0)170-914-5495
email:   [EMAIL PROTECTED]




-Original Message-
From: flexcoders@yahoogroups.com 
To: flexcoders@yahoogroups.com 
Sent: Thu Dec 08 06:43:12 2005
Subject: RE: [flexcoders] FocusInHandler Issue Part III

I don’t know what the problem is but I ran it on a current build and it’s working.  So find a way to avoid it in the short-term and it will hopefully work with the next build we drop.



Matt





From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann
Sent: Wednesday, December 07, 2005 2:26 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FocusInHandler Issue Part III



As the FocusInHandler issue is really starting to become critical for us prior to moving forward with our application, I have posted the downloadable source code along with a running version of the sample application at my blog http://www.rottmann.net/blog/?p=5 . I desperately hope somebody knows at least a workaround to avoid the behavior.



Thanks for all your patience and help so far.



Ralf






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




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



YAHOO! GROUPS LINKS


    *    Visit your group "flexcoders  " on the web.

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

*    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  .







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




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



YAHOO! GROUPS LINKS


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













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Best online resources to learn Flex

2005-12-08 Thread Tracy Spratt
Here is a partial list.
Tracy

Flex sites/blogs:
http://www.cflex.net/showfaq.cfm?Object=faq&channelID=1&faqtype=&default
fields=&defaultValues=
http://www.cflex.net/
http://www.flexauthority.com/
http://weblogs.macromedia.com/mxna/
http://www.flexdaddy.info/
http://www.clinttredway.com/blog/
http://www.richinternet.de/blog/
http://www.everythingflex.com


Documentation:
http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
http://www.macromedia.com/go/flex15_java_livedocs
http://www.macromedia.com/cfusion/knowledgebase/index.cfm

Lists:
http://www.macromedia.com/cfusion/webforums/forum/categories.cfm?catid=3
46
http://groups.yahoo.com/group/flexcoders/

Bugs/enhancement requests:
http://www.macromedia.com/support/email/wishform/


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Abdul Qabiz
Sent: Thursday, December 08, 2005 3:05 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Best online resources to learn Flex

Hi,

L at Macromedia Flex Dev Center 

Also Check out http://www.cflex.net, it contains the links for different
resources...


=abdul


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: Thursday, December 08, 2005 11:08 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Best online resources to learn Flex

Has anyone by chance compiled a list of the best online resources for 
learning Flex? Something to jumpstart the process essentially.

I have Flex Builder 1.0 and Flex 1.5 Developer license and would 
appreciate any help in getting started.

Rey...



--
Flexcoders Mailing 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 ~--> 
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] Flex with activex control is possible

2005-12-08 Thread Tracy Spratt










You should be able to include an activeX
control in a custom wrapper and use script to effect interaction between the
two.  Be aware of cross-domain security issues.

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bart Harrison
Sent: Wednesday, December 07, 2005
10:17 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex
with activex control is possible



 

We use MDM
Zinc with Flash.  It should work with Flex.

Bart

- - - - - - - - - - - - - - -
Bart Harrison 
MPA - The HD Suite 

HD Editing Systems, Consulting, Production & Post, Exhibition &
Distribution 
www.hdsuite.com 
954-894-1221


At 04:51 AM 12/7/2005, you wrote:



Hi

    how to use activex control in
flex application,  This is the
application overview. I will insert a smart card
in to a our device 
where my activex component reside in that device
which will fetch
those employee user name and password from that
smartcard, then i need
to pass those login information in to flex login
page (login.mxml) .
how to do... I have no idea about flex integration
with activex
controls...







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




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







YAHOO! GROUPS LINKS



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


 















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] XMLSocket

2005-12-08 Thread Tracy Spratt










Are you using asynchronous read and
write?  I couldn’t get my “blocking” setup to work
reasonably.

 

Tracy 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andre Ehlert
Sent: Monday, December 05, 2005
8:29 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] XMLSocket



 


Hi all, 

in
most cases my SocketServer-class is sending and receiving messages without any
problems. 
But
espacially if the Socket is receiving messages (onXML) and has to send outgoing
messages "at the same time"  this will fail from time to time...


Does
anybody have an idea? 

a++

André


###

The
class: 
###

import
mx.events.EventDispatcher; 
import
mx.utils.Delegate; 

[Event("connectionSucceeded")]

[Event("connectionFailed")]

[Event("connectionClosed")]

[Event("messageReceived")]

[Event("debugMessage")]


class
SocketServer 
{

 
  public var addEventListener:Function; 
 
  public var removeEventListener:Function; 
 
  private var dispatchEvent:Function; 

 
      private var _socket:XMLSocket = null; 
 
      private var _server:String; 
 
      private var _port:Number; 
 
      
 
      public function SocketServer() 
 
      { 
 
              _socket = new XMLSocket();

 
              
 
             
EventDispatcher.initialize(this); 
 
      _socket. OnConnect);

 
      _socket. OnClose);

 
      _socket. OnXML);

 
      } 
 
      
 
      public function connectToServer(IPAddress:String,
Port:Number) :Void 
 
      { 
 
              _server = IPAddress;

 
              _port = Port; 
 
              _socket.connect(_server,
_port); 
 
      } 
 
      
 
      public function close() :Void 
 
      { 
 
              _socket.close();

 
      } 
 
      
 
      private function OnConnect(success :Boolean) :Void 
 
      { 
 
      if (success) 
 
                     
dispatchEvent({type: "connectionSucceeded"}); 
 
              else 
 
                       dispatchEvent({type:
"connectionFailed"}); 
 
  } 
 
      
 
      private function OnXML(message :XML) :Void 
 
      { 
 
              dispatchEvent({type:
"messageReceived", message: message}); 
 
             
dispatchEvent({type:"debugMessage", message:message,
direction:"receive"}); 
 
  } 

 
      public function send(message:String):Void 
 
      { 
 
             
dispatchEvent({type:"debugMessage", message:message,
direction:"send"}); 
 
              _socket.send(message);

 
  } 

 
      private function OnClose() :Void 
 
      { 
 
              dispatchEvent({type:
"connectionClosed"}); 
 
      } 
}










--
Flexcoders Mailing 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] URGENT Problem on Flex installed on BEA WebLogic

2005-12-08 Thread Jaime Bermudez



Hey Carson,
 
I'm trying out your technique, but I'm still getting LocatorParser errors... here's a snippet of my weblogic.xml:
 
   ... 
    ... true
  
 
This solution worked for you guys? 
On 9/16/05, Carson Hager <[EMAIL PROTECTED]> wrote:

My pleasure.  The only impact will be a small increase in memory utilization by the server at startup. Basically, appservers like WLS like to use hierarchical classloaders so that classes which are shared by multiple web applications are not loaded for each web app.  By using a shared classloader, there is savings in memory and ( to a small degree ) runtime performance due to the need to only load/verify the class a single time. The reality is that these things are basically negligible. The kicker with hierarchical classloaders is exactly what you're seeing here...the need to override at a child level.  I'm sure you'll find this to be a good solution.

 
 
Carson
 
   
Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com
   Email:  
[EMAIL PROTECTED]Office:  866-CYNERGY ext. 89Mobile: 1.703.489.6466
   Take PowerBuilder to the Web with EAF 4.0
http://www.cynergysystems.com/public/products/eaf     
 


From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Kevin Towes (New Toronto Group)Sent: Friday, September 16, 2005 1:22 PMTo: 
flexcoders@yahoogroups.com; flexcoders@yahoogroups.com 
Subject: RE: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic 

Thanks, Carson - We're looking into the impact of this.   It might be the best solution.  I'll let you (and the list) know.kev.Kevin Towes, Sr. Consultant
New Toronto Group, [EMAIL PROTECTED]Office: 905-897-7790 x4018 Mobile: 416-882-4445[onRemote]


From: "Carson Hager" <[EMAIL PROTECTED]>Sent: Friday, September 16, 2005 12:42 PM
To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

Kevin,
 
This is a classloader issue.  Check out prefer-web-inf-classes in the following URL to turn off the default behavior of the WLS classloader to allow for classes in web apps to be loaded in preference of the server level classloader.

 

http://e-docs.bea.com/wls/docs81/programming/classloading.html
 
 
Carson
   Carson Hager
Cynergy Systems, Inc.http://www.cynergysystems.com 
  Email:  
[EMAIL PROTECTED]Office:  866-CYNERGY ext. 89Mobile: 1.703.489.6466 
  Take PowerBuilder to the Web with EAF 4.0
http://www.cynergysystems.com/public/products/eaf     
 


From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Kevin Towes (New Toronto Group)Sent: Friday, September 16, 2005 12:29 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic 
Hey Gang - We're having a bit of an urgent issue with a Flex installation on BEA Weblogic Portal Server.   I know there were some threads a while back on this issue, so I'll explain it below.   
The issue relates to the fop.jar file that is used in the BEA Portal Server
 (WebLogic).   The BEA jar file overrides the FLEX package that parses css .  The manifest file included in the fop.jar defines "batik.jar" in the class path. The Batik.jar
 file installed with BEA is an older version then is required by FLEX to parse CSS.  (css.locater.parser)We've found information on FlexCoders to remove the fop.jar file from BEA, which works, but is not a solution that our customer is comfortable with.
Does anyone know anything about this, or better, how to get around the issue?I've tried going through "official" Macromedia Support on this, and they're timing for support doesn't fit our customer, so here's a chance for the FlexCoders list to shine.
Who ever helps me solve it gets a couple drinks on me at MAX in a couple weeks.Kevin Towes.Kevin Towes, Sr. ConsultantNew Toronto Group, 
[EMAIL PROTECTED]Office: 905-897-7790 x4018 Mobile: 416-882-4445[onRemote] --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 

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










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

RE: [flexcoders] XMLSocket

2005-12-08 Thread Ralf Rottmann










I am using the Socket
class and never experienced any difficulties. The asynchronous setup works
perfect for me.

 



Ralf Rottmann | Director Sales & Marketing | VoicInt
Telecommunications GmbH
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: [EMAIL PROTECTED]
---











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt
Sent: Donnerstag, 8. Dezember 2005
20:19
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
XMLSocket



 

Are you using asynchronous read and
write?  I couldn’t get my “blocking” setup to work
reasonably.

 

Tracy 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andre Ehlert
Sent: Monday, December 05, 2005
8:29 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] XMLSocket



 


Hi all, 

in
most cases my SocketServer-class is sending and receiving messages without any
problems. 
But
espacially if the Socket is receiving messages (onXML) and has to send outgoing
messages "at the same time"  this will fail from time to time...


Does
anybody have an idea? 

a++ 
André


###

The
class: 
###

import
mx.events.EventDispatcher; 
import
mx.utils.Delegate; 

[Event("connectionSucceeded")]

[Event("connectionFailed")]

[Event("connectionClosed")]

[Event("messageReceived")]

[Event("debugMessage")]


class
SocketServer 
{

 
  public var addEventListener:Function; 
 
  public var removeEventListener:Function; 
 
  private var dispatchEvent:Function; 

 
      private var _socket:XMLSocket = null; 
 
      private var _server:String; 
 
      private var _port:Number; 
 
      
 
      public function SocketServer() 
 
      { 
 
              _socket = new XMLSocket();

 
              
 
              EventDispatcher.initialize(this);

 
      _socket. OnConnect);

 
      _socket. OnClose);

 
      _socket. OnXML);

 
      } 
 
      
 
      public function connectToServer(IPAddress:String,
Port:Number) :Void 
 
      { 
 
              _server = IPAddress;

 
              _port = Port; 
 
              _socket.connect(_server,
_port); 
 
      } 
 
      
 
      public function close() :Void 
 
      { 
 
              _socket.close();

 
      } 
 
      
 
      private function OnConnect(success :Boolean) :Void 
 
      { 
 
      if (success) 
 
                     
dispatchEvent({type: "connectionSucceeded"}); 
 
              else 
 
                     
 dispatchEvent({type: "connectionFailed"}); 
 
  } 
 
      
 
      private function OnXML(message :XML) :Void 
 
      { 
 
              dispatchEvent({type:
"messageReceived", message: message}); 
 
              dispatchEvent({type:"debugMessage",
message:message, direction:"receive"}); 
 
  } 

 
      public function send(message:String):Void 
 
      { 
 
             
dispatchEvent({type:"debugMessage", message:message,
direction:"send"}); 
 
              _socket.send(message);

 
  } 

 
      private function OnClose() :Void 
 
      { 
 
              dispatchEvent({type:
"connectionClosed"}); 
 
      } 
}











--
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] Applying "transition" effects to Flex state transitions (Flex 2 Alpha 1)

2005-12-08 Thread Ralf Rottmann










Has anybody managed to apply effects to state transitions so
does a currentState=”xyz” causes the new state to be effected
in/out?

 

Ralf Rottmann | Director Sales &
Marketing
VoicInt Telecommunications GmbH | Lindemannstrasse 78 | 44137 Dortmund
| Germany
p: +49-(0)231-557402-11 | f: +49-(0)231-557402-99 | m:+49-(0)170-914-5495 | e: [EMAIL PROTECTED]
-

Besuchen Sie uns auf der CallCenterWorld
2006, 13.-16. Februar 2006, Estrel Convention Center, Berlin

Sie finden uns am Stand 1C18.
Erleben Sie unsere Produkte live und ganz ohne PowerPoint!

 









--
Flexcoders Mailing 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] Limiting text input (ComboBox) to numbers

2005-12-08 Thread Ralf Rottmann










Hi there,

 

How can I limit the possible characters which a user can
enter into a TextInput or ComboBox control to let’s say just numbers etc.

 

R









--
Flexcoders Mailing 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: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Dave Wolf
Colin,

In answer to your question of why the browsers worked different, as
best our research into the HTTP specs un-veiled, this appears to be a
bug in IE6.  The issue is related to a specific cache-control header
being set by Tomcat when both HTTP auth and SSL are used with a binary
file.  This isn't Flex/Flash related.  The same thing would happen
with any binary file transfer (and we proved that to be true).  This
specific combination of headers sends IE into la-la land.  That valve
setting slightly changes the headers to avoid this apparant browser
"bug".  

As Carson mentioned, I've always been extremely surprised no one else
ever brings this little quark up.  We likely have had much more
"real-world" deployments which is why we found this so long ago.  To
me I can't picture many serious business applications that don't need
both SSL and Authentication together!  Then again it could be that it
does seem specfic to Tomcat.  (Its worth noting we believe Tomcat was
setting a quite appropriate header)

Glad we helped out.  This one had us scratching our heads for a couple
nights.  

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

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY




--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
wrote:
>
> My pleasure. I know that's a tricky one.  We confronted it about a year
> ago and most thought we had lost our minds. Turns out few people had
> used that combination at that point which seemed fairly odd to us.
> Anyway, I'm glad you found it useful.
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 8:38 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Fantastic!  That worked.  You saved me a 'lot' of time and effort!!
> 
> Thank you for taking the time.  I really appreciate it.
> 
> ...Col
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> >
> > Excellent.  In META-INF, you will need a context.xml file that looks
> > like this.  This instructs Tomcat to use the FormAuthenticator value
> and
> > turns off proxy caching. This will fix the problem of the header being
> > sent to IE which it cannot handle. If you don't have a META-INF
> > directory, just create it in the root of your web app right next to
> > WEB-INF.  You will need to reload your web application or restart
> > Tomcat.
> > 
> > 
> > 
> > 
> >  >  
> > className="org.apache.catalina.authenticator.FormAuthenticator"
> > disableProxyCaching="false" />
> > 
> > WEB-INF/web.xml
> > META-INF/context.xml
> > WEB-INF/web.xml
> > META-INF/context.xml
> > WEB-INF/web.xml
> > META-INF/context.xml
> > 
> > 
> > 
> > 
> > Carson
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of colinblackmore
> > Sent: Thursday, December 08, 2005 7:54 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> > https in *IE*.
> > 
> > Form based authentication.
> > 
> > --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> > wrote:
> > >
> > > You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth.
> The
> > > good news is that there is an easy fix. Are you using Form or Basic
> > > auth?
> > > 
> > > 
> > > Carson
> > > 
> > > 
> > >  
> > > Carson Hager
> > > Cynergy Systems, Inc.
> > > http://www.cynergysystems.com
> > >  
> > > Email:  [EMAIL PROTECTED]
> > > Office:  866-CYNERGY
> > > Mobile: 1.703.489.6466
> > >  
> > > 
> > > 
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> > On
> > > Behalf Of colinblackmore
> > > Sent: Thursday, December 08, 2005 7:21 AM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Re: Unable to retrieve data via HTTPService
> over
> > > https in *IE*.
> > > 
> > > Carson...
> > > 
> > > OK, now I'm confused! :-D
> > > 
> > > I disabled the security constraints and it now works!  
> > > 
> > > So I guess my questions now are:
> > > 
> > > a) Why do the browsers (Firefox/IE) behave differently in this
> > respect?
> > > b) How can I configure things to have both authentication AND https
> > > within IE?
> > > 
> > > Again to restate, I am using T

Re: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Rey Bango
Carson's the man. ;)

Rey...

Carson Hager wrote:
> My pleasure. I know that's a tricky one.  We confronted it about a year
> ago and most thought we had lost our minds. Turns out few people had
> used that combination at that point which seemed fairly odd to us.
> Anyway, I'm glad you found it useful.
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 8:38 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Fantastic!  That worked.  You saved me a 'lot' of time and effort!!
> 
> Thank you for taking the time.  I really appreciate it.
> 
> ...Col
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> 
>>Excellent.  In META-INF, you will need a context.xml file that looks
>>like this.  This instructs Tomcat to use the FormAuthenticator value
> 
> and
> 
>>turns off proxy caching. This will fix the problem of the header being
>>sent to IE which it cannot handle. If you don't have a META-INF
>>directory, just create it in the root of your web app right next to
>>WEB-INF.  You will need to reload your web application or restart
>>Tomcat.
>>
>>
>>
>>
>>> 
>>className="org.apache.catalina.authenticator.FormAuthenticator"
>>  disableProxyCaching="false" />
>>  
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>
>>
>>
>>
>>Carson
>>
>>
>> 
>>Carson Hager
>>Cynergy Systems, Inc.
>>http://www.cynergysystems.com
>> 
>>Email:  [EMAIL PROTECTED]
>>Office:  866-CYNERGY
>>Mobile: 1.703.489.6466
>> 
>>
>>
>>-Original Message-
>>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> 
> On
> 
>>Behalf Of colinblackmore
>>Sent: Thursday, December 08, 2005 7:54 AM
>>To: flexcoders@yahoogroups.com
>>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
>>https in *IE*.
>>
>>Form based authentication.
>>
>>--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
>>wrote:
>>
>>>You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth.
> 
> The
> 
>>>good news is that there is an easy fix. Are you using Form or Basic
>>>auth?
>>>
>>>
>>>Carson
>>>
>>>
>>> 
>>>Carson Hager
>>>Cynergy Systems, Inc.
>>>http://www.cynergysystems.com
>>> 
>>>Email:  [EMAIL PROTECTED]
>>>Office:  866-CYNERGY
>>>Mobile: 1.703.489.6466
>>> 
>>>
>>>
>>>-Original Message-
>>>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>>
>>On
>>
>>>Behalf Of colinblackmore
>>>Sent: Thursday, December 08, 2005 7:21 AM
>>>To: flexcoders@yahoogroups.com
>>>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService
> 
> over
> 
>>>https in *IE*.
>>>
>>>Carson...
>>>
>>>OK, now I'm confused! :-D
>>>
>>>I disabled the security constraints and it now works!  
>>>
>>>So I guess my questions now are:
>>>
>>>a) Why do the browsers (Firefox/IE) behave differently in this
>>
>>respect?
>>
>>>b) How can I configure things to have both authentication AND https
>>>within IE?
>>>
>>>Again to restate, I am using Tomcat, but not using the flashproxy
>>>(since I'm using form based authentication which the proxy doesn't
>>>handle).
>>>
>>>Many thanks for your help.
>>>
>>>...Col
>>>
>>>--- In flexcoders@yahoogroups.com, "Carson Hager"
> 
> <[EMAIL PROTECTED]>
> 
>>>wrote:
>>>
Are you possibly operating within an authenticated session?


Carson



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 
 

-Original Message-
From: flexcoders@yahoogroups.com
> 
> [mailto:[EMAIL PROTECTED]
> 
>>>On
>>>
Behalf Of colinblackmore
Sent: Tuesday, December 06, 2005 1:15 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Unable to retrieve data via HTTPService over
>>>
>>>https
>>>
in *IE*.

I have a flex application that works perfectly when deployed under
>>>
>>>http.
>>>
However, when I attempt to connect via https none of the
> 
> HTTPService
> 
calls return successfully.

The odd thing is that this only occurs when using https on
> 
> Internet
> 
Explorer (6.0).  Both Firefox (1.5) and Opera (8.51) work fine
> 
> under
> 
both http and https.

Some additional information:

- The fault code from the HTTPService is:
 fault: (Object)
  faultcode: Cl

Re: [flexcoders] Best online resources to learn Flex

2005-12-08 Thread Rey Bango
Thanks to Abdul and Tracy for the great links. Much appreciated guys. 
I'm retooling and thinking hard about Flex vs. the .Net route.

Rey...


 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] Limiting text input (ComboBox) to numbers

2005-12-08 Thread Darron J. Schall






Ralf Rottmann wrote:

  
  
  
  
  Hi there,
   
  How can I limit the
possible characters which a user can
enter into a TextInput or ComboBox control to let’s say just numbers
etc.
   
  R
  


Set the "restrict" property to "0-9"




-d







--
Flexcoders Mailing 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: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Dave Wolf
Sheesh-- Always living in Carson's shadow 

'Course the fact that is about 3 feet taller then me doesn't help.

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

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY

--- In flexcoders@yahoogroups.com, Rey Bango <[EMAIL PROTECTED]> wrote:
>
> Carson's the man. ;)
> 
> Rey...
> 
> Carson Hager wrote:
> > My pleasure. I know that's a tricky one.  We confronted it about a
year
> > ago and most thought we had lost our minds. Turns out few people had
> > used that combination at that point which seemed fairly odd to us.
> > Anyway, I'm glad you found it useful.
> > 
> > 
> > Carson
> > 
> > 
> >  
> > Carson Hager
> > Cynergy Systems, Inc.
> > http://www.cynergysystems.com
> >  
> > Email:  [EMAIL PROTECTED]
> > Office:  866-CYNERGY
> > Mobile: 1.703.489.6466
> >  
> > 
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
> > Behalf Of colinblackmore
> > Sent: Thursday, December 08, 2005 8:38 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> > https in *IE*.
> > 
> > Fantastic!  That worked.  You saved me a 'lot' of time and effort!!
> > 
> > Thank you for taking the time.  I really appreciate it.
> > 
> > ...Col
> > 
> > --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> > wrote:
> > 
> >>Excellent.  In META-INF, you will need a context.xml file that looks
> >>like this.  This instructs Tomcat to use the FormAuthenticator value
> > 
> > and
> > 
> >>turns off proxy caching. This will fix the problem of the header being
> >>sent to IE which it cannot handle. If you don't have a META-INF
> >>directory, just create it in the root of your web app right next to
> >>WEB-INF.  You will need to reload your web application or restart
> >>Tomcat.
> >>
> >>
> >>
> >>
> >> >> 
> >>className="org.apache.catalina.authenticator.FormAuthenticator"
> >>disableProxyCaching="false" />
> >>
> >>WEB-INF/web.xml
> >>META-INF/context.xml
> >>WEB-INF/web.xml
> >>META-INF/context.xml
> >>WEB-INF/web.xml
> >>META-INF/context.xml
> >>
> >>
> >>
> >>
> >>Carson
> >>
> >>
> >> 
> >>Carson Hager
> >>Cynergy Systems, Inc.
> >>http://www.cynergysystems.com
> >> 
> >>Email:  [EMAIL PROTECTED]
> >>Office:  866-CYNERGY
> >>Mobile: 1.703.489.6466
> >> 
> >>
> >>
> >>-Original Message-
> >>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> > 
> > On
> > 
> >>Behalf Of colinblackmore
> >>Sent: Thursday, December 08, 2005 7:54 AM
> >>To: flexcoders@yahoogroups.com
> >>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> >>https in *IE*.
> >>
> >>Form based authentication.
> >>
> >>--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> >>wrote:
> >>
> >>>You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth.
> > 
> > The
> > 
> >>>good news is that there is an easy fix. Are you using Form or Basic
> >>>auth?
> >>>
> >>>
> >>>Carson
> >>>
> >>>
> >>> 
> >>>Carson Hager
> >>>Cynergy Systems, Inc.
> >>>http://www.cynergysystems.com
> >>> 
> >>>Email:  [EMAIL PROTECTED]
> >>>Office:  866-CYNERGY
> >>>Mobile: 1.703.489.6466
> >>> 
> >>>
> >>>
> >>>-Original Message-
> >>>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> >>
> >>On
> >>
> >>>Behalf Of colinblackmore
> >>>Sent: Thursday, December 08, 2005 7:21 AM
> >>>To: flexcoders@yahoogroups.com
> >>>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService
> > 
> > over
> > 
> >>>https in *IE*.
> >>>
> >>>Carson...
> >>>
> >>>OK, now I'm confused! :-D
> >>>
> >>>I disabled the security constraints and it now works!  
> >>>
> >>>So I guess my questions now are:
> >>>
> >>>a) Why do the browsers (Firefox/IE) behave differently in this
> >>
> >>respect?
> >>
> >>>b) How can I configure things to have both authentication AND https
> >>>within IE?
> >>>
> >>>Again to restate, I am using Tomcat, but not using the flashproxy
> >>>(since I'm using form based authentication which the proxy doesn't
> >>>handle).
> >>>
> >>>Many thanks for your help.
> >>>
> >>>...Col
> >>>
> >>>--- In flexcoders@yahoogroups.com, "Carson Hager"
> > 
> > <[EMAIL PROTECTED]>
> > 
> >>>wrote:
> >>>
> Are you possibly operating within an authenticated session?
> 
> 
> Carson
> 
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
>  
> 
> -Original Message-
> From: flexcoders@yahoogroups.com
> > 
> > [mailto:[EMAIL PROTECTED]
> > 
> >>>On
> >>>
> Behalf Of colinblackmore
> Sent: Tuesday, D

[flexcoders] Re: 2 Easy questions - fields that begin with '_' and location of javadoc

2005-12-08 Thread Libby
Wow! no wonder I couldn't find the answer. My friends are all stumped too.

--- In flexcoders@yahoogroups.com, "Libby" <[EMAIL PROTECTED]> wrote:
>
> 
> 2 Easy Questions for you experts that have been nagging at me:
> 
> 1. Is it safe to refer to fields that begin with a '_', or are these
> names subject to arbitrary change at some point by MM/Adobe?
> 
> 2. Is the "javadoc" for built-in classes such as Array and String
> contained somewhere in the javadoc that is loaded on our hard drive,
> or do you always have to go out to FlexDocs to see it? If it is on the
> HD, what is the path to it? I can't find it in the ActionScript 2.0 /
> MXML Tag doc.
> 
> Thanks,
> Libby
>







 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] TemplateMonster.com

2005-12-08 Thread Mehdi, Agha
Title: TemplateMonster.com







Does anyone know about www.templatemonster.com and if the templates can be integrated with Flex applications?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell  : 209.275.0482

Fax  :  408.284.2766









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





  




  
  
  YAHOO! GROUPS LINKS



   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] TemplateMonster.com

2005-12-08 Thread JesterXL
Title: TemplateMonster.com





To answer your question, yes, they will 
work.
 
About 3 months ago, I had a Flash site I helped a 
company with on the coding side.  Additionally, I helped 
changed the template they had utilized; I think it 
was from that site.
 
I suggest, however, you instead hire a designer who 
has work that you like, and get a production designer with knowledge of Flex and 
Flash to integrate the design into workable View's for your 
application.
 
Otherwise, you'll be paying serious money to 
someone who has both Flex development & Flash production art skills.  
There is additional time factored into "cleaning up" those designs as 
well.  The template I worked on, while created by a talented designer, 
suffered from horrible technical practices, resulting in more time to change the 
interface to the client's whims, and add the necessarey code.
 
If I had to do it again, I would of hired the 
designer myself after confirming the technical requirements for the FLA, and 
then integrated the code in.
 
 
- Original Message - 
From: Mehdi, Agha 
To: flexcoders@yahoogroups.com 
Sent: Thursday, December 08, 2005 5:21 PM
Subject: [flexcoders] TemplateMonster.com

Does anyone know 
about www.templatemonster.com 
and if the templates can be integrated 
with Flex applications?
Thanks
Agha 
Mehdi
IDT - eBusiness Program 
Manager
Work: 
408.284.8239
Cell  : 
209.275.0482
Fax  :  
408.284.2766






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








  
  
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] TemplateMonster.com

2005-12-08 Thread Tariq Ahmed
Title: TemplateMonster.com






I've bought templates from them before. It's essentially a zip file
with all the raw assets so that you can apply to your own situation
(sample HTML code that put all the graphics together, Photoshop files,
FLAs,  etc...). As far as I know they don't have anything that would be
immediately plug and playable. But if you spend the time you can make
your own skins / styles / etc... based on the package.

But it'll be great in the future when people start publishing full
fledged Flex themes that can be easily applied.



Mehdi, Agha wrote:

  
  
  
  Does
anyone know about www.templatemonster.com and if the templates can be
integrated with Flex applications?
  Thanks
  Agha Mehdi
  IDT -
eBusiness Program Manager
  Work:
408.284.8239
  Cell  :
209.275.0482
  Fax  : 
408.284.2766









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





  




  
  
  YAHOO! GROUPS LINKS



   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] TemplateMonster.com

2005-12-08 Thread Ralf Rottmann
Title: TemplateMonster.com










One remark from my side: I have used
templates from Templatemonster because my customers liked them. I have to say
that most of them totally lacked basic coding and implementation best
practices. For example the classes and styles in the style sheets that came
along with the files were pretty quick and dirty (with enumerated styles like
style1, style2, style3) and none of the templates was nearly done in clean html.
When it came to cross-browser capabilities, I had to manually go through the
html source code of each page and fine tune stuff.

 

Some templates used images (like spacers,
backgrounds, lines, etc.) where CSS would have done a beautiful job, too.

 

I’d say if you need something the
quick and dirty way or just want to reuse the multimedia assets, go for the
templates, they are not too expensive. However if maintainability and
cross-browser experience is important for you, I’d second what others on
the list have already said: Chances are it might be cheaper to just hire a
professional web designer.

 

Regards

 



Ralf Rottmann | Director
Sales & Marketing | VoicInt Telecommunications GmbH
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: [EMAIL PROTECTED]
---











From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of Tariq Ahmed
Sent: Donnerstag, 8. Dezember 2005
23:43
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
TemplateMonster.com



 

I've bought templates from them before. It's
essentially a zip file with all the raw assets so that you can apply to your
own situation (sample HTML code that put all the graphics together, Photoshop
files, FLAs,  etc...). As far as I know they don't have anything that
would be immediately plug and playable. But if you spend the time you can make
your own skins / styles / etc... based on the package.

But it'll be great in the future when people start publishing full fledged Flex
themes that can be easily applied.



Mehdi, Agha wrote: 

Does anyone know about www.templatemonster.com
and if the templates can be integrated with Flex
applications?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell  : 209.275.0482

Fax  :  408.284.2766









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





  




  
  
  YAHOO! GROUPS LINKS



   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] changing background color of a cell in datagrid

2005-12-08 Thread Parekh, Shweta - BLS CTR
Title: changing background color of a cell in datagrid








Hi,


Can anyone send me some sample code / point to some sample code to change the background color of a cell in a datagrid when the cell is clicked. 

I have tried writing a custom cellRenderer for this but with no luck.


class MyCellRenderer extends UIComponent

{   

    var listOwner : MovieClip; // the reference we receive to the list

    var text_c:MovieClip;   

    var getCellIndex : Function; // the function we receive from the list

    var celltext : mx.controls.Text;

    


  function MyCellRenderer()

  {

        text_c = createClassObject(Text, "celltext", 1, { styleName:this, owner:this });  

  }

  

  function setValue(theValue:String, theItem:Object, selected:String):Void

  {

      trace("in setValue, theValue:" + "selected: "+selected );

      text_c.text = theValue;

      text_c.visible = true;


      listOwner.dataProvider.editField(getCellIndex().columnIndex, "backgroundColor", 0xCC66FF);

  } 


Thanks in advance,

Shweta








--
Flexcoders Mailing 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] TemplateMonster.com

2005-12-08 Thread Ben Lucyk



Quick agreement from me as well.  I used a template from there for a site I did and the code seemed like it was thrown together in a darn hurry.  It didn't look bad, but left untouched it was a maintenance pain waiting to happen.

 
-Ben 
On 12/8/05, Ralf Rottmann <[EMAIL PROTECTED]> wrote:


One remark from my side: I have used templates from Templatemonster because my customers liked them. I have to say that most of them totally lacked basic coding and implementation best practices. For example the classes and styles in the style sheets that came along with the files were pretty quick and dirty (with enumerated styles like style1, style2, style3) and none of the templates was nearly done in clean html. When it came to cross-browser capabilities, I had to manually go through the html source code of each page and fine tune stuff.

 
Some templates used images (like spacers, backgrounds, lines, etc.) where CSS would have done a beautiful job, too.

 
I'd say if you need something the quick and dirty way or just want to reuse the multimedia assets, go for the templates, they are not too expensive. However if maintainability and cross-browser experience is important for you, I'd second what others on the list have already said: Chances are it might be cheaper to just hire a professional web designer.

 
Regards
 

Ralf Rottmann | Director Sales & Marketing | VoicInt Telecommunications GmbH
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: 
[EMAIL PROTECTED]---





From:
 flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Tariq AhmedSent: Donnerstag, 8. Dezember 2005 23:43
To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] 
TemplateMonster.com

 
I've bought templates from them before. It's essentially a zip file with all the raw assets so that you can apply to your own situation (sample HTML code that put all the graphics together, Photoshop files, FLAs,  etc...). As far as I know they don't have anything that would be immediately plug and playable. But if you spend the time you can make your own skins / styles / etc... based on the package.
But it'll be great in the future when people start publishing full fledged Flex themes that can be easily applied.Mehdi, Agha wrote: 
Does anyone know about 
www.templatemonster.com 
and if the templates can be integrated with Flex applications?
Thanks
Agha Mehdi
IDT - eBusiness Program Manager
Work: 408.284.8239
Cell  : 209.275.0482
Fax  :  408.284.2766
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 


YAHOO! GROUPS LINKS 

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




-- Ben Lucyk(403) 809-3514[EMAIL PROTECTED] 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-08 Thread Carson Hager
Hey Rey,

It's good to see you out here.  Drop me a line and I'll get you account
to our internal training materials.

As for that issue, I'm pretty sure it was Dave that figured this one
out. I just like stealing his thunder. ;)

Catch up next time I'm in Miami...


C


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rey Bango
Sent: Thursday, December 08, 2005 1:36 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Unable to retrieve data via HTTPService
over https in *IE*.

Carson's the man. ;)

Rey...

Carson Hager wrote:
> My pleasure. I know that's a tricky one.  We confronted it about a
year
> ago and most thought we had lost our minds. Turns out few people had
> used that combination at that point which seemed fairly odd to us.
> Anyway, I'm glad you found it useful.
> 
> 
> Carson
> 
> 
>  
> Carson Hager
> Cynergy Systems, Inc.
> http://www.cynergysystems.com
>  
> Email:  [EMAIL PROTECTED]
> Office:  866-CYNERGY
> Mobile: 1.703.489.6466
>  
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On
> Behalf Of colinblackmore
> Sent: Thursday, December 08, 2005 8:38 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
> https in *IE*.
> 
> Fantastic!  That worked.  You saved me a 'lot' of time and effort!!
> 
> Thank you for taking the time.  I really appreciate it.
> 
> ...Col
> 
> --- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
> wrote:
> 
>>Excellent.  In META-INF, you will need a context.xml file that looks
>>like this.  This instructs Tomcat to use the FormAuthenticator value
> 
> and
> 
>>turns off proxy caching. This will fix the problem of the header being
>>sent to IE which it cannot handle. If you don't have a META-INF
>>directory, just create it in the root of your web app right next to
>>WEB-INF.  You will need to reload your web application or restart
>>Tomcat.
>>
>>
>>
>>
>>> 
>>className="org.apache.catalina.authenticator.FormAuthenticator"
>>  disableProxyCaching="false" />
>>  
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>  WEB-INF/web.xml
>>  META-INF/context.xml
>>
>>
>>
>>
>>Carson
>>
>>
>> 
>>Carson Hager
>>Cynergy Systems, Inc.
>>http://www.cynergysystems.com
>> 
>>Email:  [EMAIL PROTECTED]
>>Office:  866-CYNERGY
>>Mobile: 1.703.489.6466
>> 
>>
>>
>>-Original Message-
>>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> 
> On
> 
>>Behalf Of colinblackmore
>>Sent: Thursday, December 08, 2005 7:54 AM
>>To: flexcoders@yahoogroups.com
>>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService over
>>https in *IE*.
>>
>>Form based authentication.
>>
>>--- In flexcoders@yahoogroups.com, "Carson Hager" <[EMAIL PROTECTED]>
>>wrote:
>>
>>>You've run into a fun little nuance with Tomcat/IE/HTTPS and Auth.
> 
> The
> 
>>>good news is that there is an easy fix. Are you using Form or Basic
>>>auth?
>>>
>>>
>>>Carson
>>>
>>>
>>> 
>>>Carson Hager
>>>Cynergy Systems, Inc.
>>>http://www.cynergysystems.com
>>> 
>>>Email:  [EMAIL PROTECTED]
>>>Office:  866-CYNERGY
>>>Mobile: 1.703.489.6466
>>> 
>>>
>>>
>>>-Original Message-
>>>From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>>
>>On
>>
>>>Behalf Of colinblackmore
>>>Sent: Thursday, December 08, 2005 7:21 AM
>>>To: flexcoders@yahoogroups.com
>>>Subject: [flexcoders] Re: Unable to retrieve data via HTTPService
> 
> over
> 
>>>https in *IE*.
>>>
>>>Carson...
>>>
>>>OK, now I'm confused! :-D
>>>
>>>I disabled the security constraints and it now works!  
>>>
>>>So I guess my questions now are:
>>>
>>>a) Why do the browsers (Firefox/IE) behave differently in this
>>
>>respect?
>>
>>>b) How can I configure things to have both authentication AND https
>>>within IE?
>>>
>>>Again to restate, I am using Tomcat, but not using the flashproxy
>>>(since I'm using form based authentication which the proxy doesn't
>>>handle).
>>>
>>>Many thanks for your help.
>>>
>>>...Col
>>>
>>>--- In flexcoders@yahoogroups.com, "Carson Hager"
> 
> <[EMAIL PROTECTED]>
> 
>>>wrote:
>>>
Are you possibly operating within an authenticated session?


Carson



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 
 

-Original Message-
From: flexcoders@yahoogroups.com
> 
> [mailto:[EMAIL PROTECTED]
> 
>>>On
>>>
Behalf Of colin

Re: [flexcoders] TemplateMonster.com

2005-12-08 Thread John C. Bland II



To pile on the agreements, I haven't purchased any templates (100% against them) but have edited them for clients. My experience is similar to Jesse. The code was so horrible in this file I DID hire someone else to do it. If I worked on it I would've been too compelled to rewrite it properly.
IMO, a custom design is worth a million times more than a design a million people could have by downloading a template. (subliminal message from Bobby Boucher's Mom: "Templates are the devil!") It seems to be a touchy topic though (to use or not use templates) so I'm not trying to hijack this thread. Just wanted to give my opinion on site/app designs.
On 12/8/05, Ben Lucyk <[EMAIL PROTECTED]> wrote:



Quick agreement from me as well.  I used a template from there for a site I did and the code seemed like it was thrown together in a darn hurry.  It didn't look bad, but left untouched it was a maintenance pain waiting to happen.

 
-Ben 
On 12/8/05, Ralf Rottmann <[EMAIL PROTECTED]
> wrote:


One remark from my side: I have used templates from Templatemonster because my customers liked them. I have to say that most of them totally lacked basic coding and implementation best practices. For example the classes and styles in the style sheets that came along with the files were pretty quick and dirty (with enumerated styles like style1, style2, style3) and none of the templates was nearly done in clean html. When it came to cross-browser capabilities, I had to manually go through the html source code of each page and fine tune stuff.

 
Some templates used images (like spacers, backgrounds, lines, etc.) where CSS would have done a beautiful job, too.

 
I'd say if you need something the quick and dirty way or just want to reuse the multimedia assets, go for the templates, they are not too expensive. However if maintainability and cross-browser experience is important for you, I'd second what others on the list have already said: Chances are it might be cheaper to just hire a professional web designer.

 
Regards
 

Ralf Rottmann | Director Sales & Marketing | VoicInt Telecommunications GmbH
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: 

[EMAIL PROTECTED]---






From:

 flexcoders@yahoogroups.com [mailto:

flexcoders@yahoogroups.com] On Behalf Of Tariq AhmedSent: Donnerstag, 8. Dezember 2005 23:43

To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] 
TemplateMonster.com

 
I've bought templates from them before. It's essentially a zip file with all the raw assets so that you can apply to your own situation (sample HTML code that put all the graphics together, Photoshop files, FLAs,  etc...). As far as I know they don't have anything that would be immediately plug and playable. But if you spend the time you can make your own skins / styles / etc... based on the package.
But it'll be great in the future when people start publishing full fledged Flex themes that can be easily applied.Mehdi, Agha wrote: 
Does anyone know about 

www.templatemonster.com 

and if the templates can be integrated with Flex applications?
Thanks
Agha Mehdi
IDT - eBusiness Program Manager
Work: 408.284.8239
Cell  : 209.275.0482
Fax  :  408.284.2766
--Flexcoders Mailing ListFAQ: 

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 

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


YAHOO! GROUPS LINKS 

 Visit your group "flexcoders" on the web. 
 
 To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED]  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 




-- Ben Lucyk(403) 809-3514[EMAIL PROTECTED]
 






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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

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



  








-- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org
 - Home of FMUG.az






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

[flexcoders] Best Practices: determining if a key is in an Object?

2005-12-08 Thread sbyrne_dorado
I'd like to find out what the best (most efficient) way to determine
if a given key is present in an object.

obj[key] will answer "undefined" if either there is no key in object,
OR if it's value is in fact undefined.  

I can of course to the potentially expensive for..in and break out if
I find the given key I am looking for, but that's not a good solution
in general.

Any hints?  Surely this has to be something AS supports...(?)

Steve






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

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

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

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

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





[flexcoders] getting Flex pages to work in Firefox

2005-12-08 Thread nostra72




http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true
 
Ok I am able to get the above url to work in Internet Explorer but for some reason when I try to get it to work in Firefox all I get is a white screen can someone offer a suggestion?
 





--
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] getting Flex pages to work in Firefox

2005-12-08 Thread Jeff Tapper
it loads fine for me with Firefox 1.0.7 on WinXP

At 07:50 PM 12/8/2005, you wrote:
>http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true
> 
>





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

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

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

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

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




[flexcoders] Re: getting Flex pages to work in Firefox

2005-12-08 Thread Renaun Erickson
I have to ask, is Flash installed?  what version etc...

--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
>
>
http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=tr
> ue
> 
> Ok I am able to get the above url to work in Internet Explorer but
for some 
> reason when I try to get it to work in Firefox all I get is a white
screen can 
> someone offer a suggestion?
>






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

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

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

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

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




Re: [flexcoders] getting Flex pages to work in Firefox

2005-12-08 Thread nostra72





In a message dated 12/8/2005 7:59:02 PM Eastern Standard Time, [EMAIL PROTECTED] writes:
http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true 
 
Does anyone else get a white screen on firefox with this url





--
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] getting Flex pages to work in Firefox

2005-12-08 Thread Shahnavaz Alware










Nothing wrong with Flex Explorer when I
open it using FireFox 1.7.10

 

Thanks,

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Thursday, December 08, 2005
5:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] getting
Flex pages to work in Firefox



 





In a message dated 12/8/2005 7:59:02 PM Eastern Standard
Time, [EMAIL PROTECTED] writes:





http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true








 





Does anyone else get a white screen on firefox with this url











--
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] TemplateMonster.com

2005-12-08 Thread Mehdi, Agha










Great arguments guys. Thanks a bunch for
your inputs on this subject. I’ll wait for the time like Tariq when
quality themes are available for Flex.

 



Agha Mehdi 
IDT - eBusiness Program Manager 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John C. Bland II
Sent: Thursday, December 08, 2005
3:55 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
TemplateMonster.com



 

To pile on the
agreements, I haven't purchased any templates (100% against them) but have
edited them for clients. My experience is similar to Jesse. The code was so
horrible in this file I DID hire someone else to do it. If I worked on it I
would've been too compelled to rewrite it properly. 

IMO, a custom design is worth a million times more than a design a million
people could have by downloading a template. (subliminal message from Bobby
Boucher's Mom: "Templates are the devil!") It seems to be a touchy
topic though (to use or not use templates) so I'm not trying to hijack this
thread. Just wanted to give my opinion on site/app designs. 



On 12/8/05, Ben
Lucyk <[EMAIL PROTECTED]>
wrote:



Quick agreement from me as well.  I used a template from there for
a site I did and the code seemed like it was thrown together in a darn
hurry.  It didn't look bad,
but left untouched it was a maintenance pain waiting to happen. 





 





-Ben

 







On 12/8/05, Ralf
Rottmann <[EMAIL PROTECTED] > wrote: 



One remark from my side: I have used templates from
Templatemonster because my customers liked them. I have to say that most of
them totally lacked basic coding and implementation best practices. For example
the classes and styles in the style sheets that came along with the files were
pretty quick and dirty (with enumerated styles like style1, style2, style3) and
none of the templates was nearly done in clean html. When it came to
cross-browser capabilities, I had to manually go through the html source code
of each page and fine tune stuff. 

 

Some templates used images (like spacers, backgrounds, lines,
etc.) where CSS would have done a beautiful job, too. 

 

I'd say if you need something the quick and dirty way or just
want to reuse the multimedia assets, go for the templates, they are not too
expensive. However if maintainability and cross-browser experience is important
for you, I'd second what others on the list have already said: Chances are it
might be cheaper to just hire a professional web designer. 

 

Regards

 



Ralf Rottmann | Director
Sales & Marketing | VoicInt Telecommunications GmbH 
m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: [EMAIL PROTECTED]
--- 











From: flexcoders@yahoogroups.com
[mailto:
flexcoders@yahoogroups.com] On Behalf Of Tariq
Ahmed
Sent: Donnerstag, 8. Dezember 2005
23:43
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
TemplateMonster.com





 

I've bought templates from them before. It's essentially a zip
file with all the raw assets so that you can apply to your own situation
(sample HTML code that put all the graphics together, Photoshop files,
FLAs,  etc...). As far as I know they don't have anything that would be
immediately plug and playable. But if you spend the time you can make your own
skins / styles / etc... based on the package. 

But it'll be great in the future when people start publishing full fledged Flex
themes that can be easily applied.



Mehdi, Agha wrote: 

Does anyone know about www.templatemonster.com
and if the templates can be integrated with Flex
applications?

Thanks

Agha Mehdi

IDT - eBusiness Program Manager

Work: 408.284.8239

Cell  : 209.275.0482

Fax  :  408.284.2766




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









YAHOO!
GROUPS LINKS


 


  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. 


 























-- 
Ben Lucyk
(403) 809-3514
[EMAIL PROTECTED] 

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






SPONSORED
LINKS 




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


 







YAHOO!
GROUPS LINKS




 


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


 














-- 
John C. Bland II
"I 

[flexcoders] Cell Renderers: How to put 2 images in datagrid cell

2005-12-08 Thread Mohanraj Jayaraman
Hi All,

In my datagrid column I want to display 2 images in a
datagrid  cell and sometimes only one.

I have an image Renderer which works fine if I am
using only one image.

But when I have my second image 'image2' the first
image is not getting displayed at all. I beleive the
second image is overwriting the first one.

function createChildren(Void) : Void{
image = createClassObject( Image, "image", 1,
{owner:this});
image2 = createClassObject( Image, "image2", 1,
{owner:this});
}

I want to attach 'click' events to these buttons as
well.


Can someone explain me what I doing wrong here and
gimme tips to code this renderer? Would be great if
you can provide sample code for the same.

Thanks in advance
Mohan







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


 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] Best Practices: determining if a key is in an Object?

2005-12-08 Thread JesterXL
Not sure about effecient (have some tests at bottom), but the "correct" way 
is to use:

// notice 3 equals
if ( o.prop === undefined)
{
// does not have prop
}
else
{
// DOES have prop
}

null is a valid value, whereas undefined means the property doesn't exist.

hasOwnProperty doesn't look up the prototype chain (aka inheritance chain), 
so it only checks the current object.

Testing in Flash 8, o.prop === undefined averages 2 milliseconds in a 
function (since local registers are optimized in 7) whereas 
o.hasOwnProperty("name") averages 4.

- Original Message - 
From: "sbyrne_dorado" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, December 08, 2005 7:44 PM
Subject: [flexcoders] Best Practices: determining if a key is in an Object?


I'd like to find out what the best (most efficient) way to determine
if a given key is present in an object.

obj[key] will answer "undefined" if either there is no key in object,
OR if it's value is in fact undefined.

I can of course to the potentially expensive for..in and break out if
I find the given key I am looking for, but that's not a good solution
in general.

Any hints?  Surely this has to be something AS supports...(?)

Steve







--
Flexcoders Mailing 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 households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/I258zB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] getting Flex pages to work in Firefox

2005-12-08 Thread Tariq Ahmed






1.7? I'm guessing you mean 1.0.7.  1.5 is the latest as far as I can
tell.

I tested with 1.5 and it works fine. I'm going to go with Renaun's
theory in that Flash may not be installed.

Any _javascript_ errors, or what do you see when you do a view source?
Maybe security settings are blocking it?

Shahnavaz Alware wrote:

  
  


  
  
  
  Nothing
wrong with Flex Explorer when I
open it using FireFox 1.7.10
   
  Thanks,
   
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
  Sent: Thursday,
December 08, 2005
5:05 PM
  To: flexcoders@yahoogroups.com
  Subject: Re:
[flexcoders] getting
Flex pages to work in Firefox
  
   
  
  
  In a message dated
12/8/2005 7:59:02 PM Eastern Standard
Time, [EMAIL PROTECTED] writes:
  
  
http://flexapps.macromedia.com/flex15/explorer/explorer.mxml?versionChecked=true

  
  
  
   
  
  
  Does anyone else get a
white screen on firefox with this url
  
  

  
  








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





  




  
  
  YAHOO! GROUPS LINKS



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



  














Re: [flexcoders] Re: getting Flex pages to work in Firefox

2005-12-08 Thread nostra72




I am not sure if Flash is installed how do I check





--
Flexcoders Mailing 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] Increasing the size of an.swf file

2005-12-08 Thread nostra72




I have heard that to increase the size of a .swf file as far as the way it appears on a page you have to do something with the html. Now what I want to know is what do you change I mean what tag do you change to make the .swf file bigger? Also why does the .swf file appear bigger in some cases when I run it and smaller in others?
 
 





--
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: getting Flex pages to work in Firefox

2005-12-08 Thread Leif Wells
Just go to the Macromedia site. If you see a notice towards the top of
the page saying you don't have it, then...


Better yet:

http://www.macromedia.com/software/flash/about/

Leif



On 12/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I am not sure if Flash is installed how do I check
>
>
>  --
>  Flexcoders Mailing 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.
>
>  
>


 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] Re: getting Flex pages to work in Firefox

2005-12-08 Thread nostra72





In a message dated 12/8/2005 11:08:52 PM Eastern Standard Time, [EMAIL PROTECTED] writes:
http://www.macromedia.com/software/flash/about/
 
I went there and did not see any notice that I did not have it . I mean at least nothing specificily saying the words I do not have it.
 





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: getting Flex pages to work in Firefox

2005-12-08 Thread Dave Wolf
Are you running the Ad Block plugin?  In some releases of Firefox it
will hide all Flash movies. 


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

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY 


--- In flexcoders@yahoogroups.com, Leif Wells <[EMAIL PROTECTED]> wrote:
>
> Just go to the Macromedia site. If you see a notice towards the top of
> the page saying you don't have it, then...
> 
> 
> Better yet:
> 
> http://www.macromedia.com/software/flash/about/
> 
> Leif
> 
> 
> 
> On 12/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> >
> > I am not sure if Flash is installed how do I check
> >
> >
> >  --
> >  Flexcoders Mailing 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.
> >
> >  
> >
>






 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/
 




RE: [flexcoders] checkCellRender Validation

2005-12-08 Thread Matt Chotin










In your CheckBoxCellRenderer class you
could add a static variable called “anySelected.”  Then you could
bind the enabled property of the CheckBox in your renderer to !anySelected || myCB.selected
and then in the click handler of your CheckBox set anySelected to myCB.selected.

 

So here’s a snippet:

 



  public static var anySelected:Boolean =
false;





 

Hope this helps,

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jagabcdeff
Sent: Thursday, December 08, 2005
1:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
checkCellRender Validation



 

Hi ,

I am working on "cellRenderer" which
looks like below code.


>
  
 
  
 
  
columnName="lstcheck"
editable="true" 
cellRenderer="CheckBoxCellRenderer"
/>
 
  
columnName="item_Name" />

  
 
  

The above code is showing Checkbox in DataGrid.
I have no.of checkboxes with same no.of "Item
Name"s.

Now i want to validate on checkboxs means that
when i check any one 
check box the remaining checkboxes should be
disabled and again 
unchecked same checked box remaining checkeboxes
should be enabled.

can anyone provide code for above validation?

Any help is greatly appreciate..

Jagadeesh

















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





  




  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: 2 Easy questions - fields that begin with '_' and location of javadoc

2005-12-08 Thread Matt Chotin










Underscore variables are not guaranteed to
remain.  In fact we’ve gotten rid of all public underscore variables in
Player 8.5 and Flex 2.

 

In 1.5 I don’t think we published
ASDoc for the built-in classes, that API is only in the ActionScript reference
in the docs which I believe is available in PDF and Livedocs format.

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Libby
Sent: Thursday, December 08, 2005
1:57 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: 2 Easy
questions - fields that begin with '_' and location of javadoc



 

Wow! no wonder I couldn't
find the answer. My friends are all stumped too.

--- In flexcoders@yahoogroups.com,
"Libby" 
wrote:
>
> 
> 2 Easy Questions for you experts that have
been nagging at me:
> 
> 1. Is it safe to refer to fields that begin
with a '_', or are these
> names subject to arbitrary change at some
point by MM/Adobe?
> 
> 2. Is the "javadoc" for built-in
classes such as Array and String
> contained somewhere in the javadoc that is
loaded on our hard drive,
> or do you always have to go out to FlexDocs
to see it? If it is on the
> HD, what is the path to it? I can't find it
in the ActionScript 2.0 /
> MXML Tag doc.
> 
> Thanks,
> Libby
>













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] How to deselect a RadioButtonGroup?

2005-12-08 Thread Matt Chotin










The only way to do this is undocumented
and therefore probably won’t work in Flex 2.0.  Set rgpSex.selectedRadio
= undefined;

 

Normally I don’t think a UI lets you
de-select a radio group though, instead you should have an option for “none”

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of huhgawz
Sent: Wednesday, December 07, 2005
6:11 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to
deselect a RadioButtonGroup?



 

How to deselect a
RadioButtonGroup?

I try it using the next code but fails.

After the application is loaded, I click the
"getValue" button and the
label displays "Value: undefined" (this
behaviour is ok). Then I click
the "Female" RadioButton and click the
"getValue" button and the label
displays "Value: F" (this behaviour is
ok too). Finally, I click the
"setUndefined" button to make the
RadioButtonGroup selection undefined.

In fact, the RadioButtonGroup has nothing selected
visually but
when I click the "getValue" button the
label displays "Value: F". I
wish the label displays again "Value:
undefined"



http://www.macromedia.com/2003/mxml">
  
  
  
  
 

  
  
  
  
  
  
  















--
Flexcoders Mailing 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 to deselect a RadioButtonGroup?

2005-12-08 Thread Matt Chotin










Though in looking at the name of your
radio button I’m guessing you’re resetting a form, in which case
the selectedRadio trick is the thing to try.

 









From: Matt Chotin 
Sent: Thursday, December 08, 2005
10:19 PM
To: 'flexcoders@yahoogroups.com'
Subject: RE: [flexcoders] How to
deselect a RadioButtonGroup?



 

The only way to do this is undocumented
and therefore probably won’t work in Flex 2.0.  Set
rgpSex.selectedRadio = undefined;

 

Normally I don’t think a UI lets you
de-select a radio group though, instead you should have an option for
“none”

 

Matt

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of huhgawz
Sent: Wednesday, December 07, 2005
6:11 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to
deselect a RadioButtonGroup?



 

How to deselect a
RadioButtonGroup?

I try it using the next code but fails.

After the application is loaded, I click the
"getValue" button and the
label displays "Value: undefined" (this
behaviour is ok). Then I click
the "Female" RadioButton and click the
"getValue" button and the label
displays "Value: F" (this behaviour is
ok too). Finally, I click the
"setUndefined" button to make the
RadioButtonGroup selection undefined.

In fact, the RadioButtonGroup has nothing selected
visually but
when I click the "getValue" button the
label displays "Value: F". I
wish the label displays again "Value:
undefined"



http://www.macromedia.com/2003/mxml">
  
  
  
  
 

  
  
  
  
  
  
  
















--
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] changing background color of a cell in datagrid

2005-12-08 Thread Matt Chotin
Title: changing background color of a cell in datagrid










colorRenderer.mxml

 

 

 

 

 

 

 



 

 

Note that the clicking only works over the
Label the first time but the whole cell once the color has changed once. 
I’ll let you debug it further…

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Parekh, Shweta - BLS CTR
Sent: Thursday, December 08, 2005
11:44 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] changing
background color of a cell in datagrid



 

Hi, 

Can anyone send me some sample code / point to some sample
code to change the background color of a cell in a datagrid when the cell is
clicked. 

I have tried writing a custom cellRenderer for this but with
no luck. 

class MyCellRenderer extends UIComponent 
{   
    var listOwner : MovieClip;
// the reference we receive to the list 
    var
text_c:MovieClip;   
    var getCellIndex :
Function; // the function we receive from the list 
    var celltext :
mx.controls.Text; 
    

  function MyCellRenderer() 
  { 
   
    text_c =
createClassObject(Text, "celltext", 1, { styleName:this, owner:this
});  
  } 
  
  function setValue(theValue:String, theItem:Object,
selected:String):Void 
  { 
      trace("in
setValue, theValue:" + "selected: "+selected ); 
      text_c.text =
theValue; 
      text_c.visible =
true; 

   
 
listOwner.dataProvider.editField(getCellIndex().columnIndex,
"backgroundColor", 0xCC66FF); 
  } 

Thanks in advance, 
Shweta 









--
Flexcoders Mailing 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] Best online resources to learn Flex

2005-12-08 Thread Tolulope Olonade










Me too Rey, and its hard decision to make.

Flex seems to be more friendly with Java
than .NET L

 

Tolu

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango
Sent: 08 December 2005 10:38
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Best
online resources to learn Flex



 

Thanks to Abdul and Tracy for
the great links. Much appreciated guys. 
I'm retooling and thinking hard about Flex vs. the
.Net route.

Rey...








--
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] passing Map in remote object

2005-12-08 Thread jgraham_us
I have a server side POJO that has a HashMap, my actionscript call 
makes a call to the server using remote objects.  When I get the 
object on the flex side the Map is represented as Object or an Array I 
guess.  The length is always zero, yet my items are in the object.

Why is the length always zero?  I need to iterate through these.

Thanks








 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] RadioButton in DataGrid

2005-12-08 Thread jagabcdeff
Hi,

Is there any possibility to put radio button in Datagrid Column as 
like "CheckBoxCellRenderer" in cellRender property.

Any help is greatly appreciated.

Jagadeesh








 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: Applying "transition" effects to Flex state transitions (Flex 2 Alpha 1)

2005-12-08 Thread Darin Kohles
check Here:

http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=584&threadid=1090772&enterthread=y

--- In flexcoders@yahoogroups.com, "Ralf Rottmann"
<[EMAIL PROTECTED]> wrote:
>
> Has anybody managed to apply effects to state transitions so does a
> currentState="xyz" causes the new state to be effected in/out?
> 
>  
> 
> Ralf Rottmann | Director Sales & Marketing
> VoicInt Telecommunications GmbH | Lindemannstrasse 78 | 44137 Dortmund |
> Germany
> p: +49-(0)231-557402-11 | f: +49-(0)231-557402-99 |
> m:+49-(0)170-914-5495 | e: [EMAIL PROTECTED]
>  
> 
> -
> 
> Besuchen Sie uns auf der CallCenterWorld 2006, 13.-16. Februar 2006,
> Estrel Convention Center, Berlin
> 
> Sie finden uns am Stand 1C18. Erleben Sie unsere Produkte live und ganz
> ohne PowerPoint!
>







 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] TemplateMonster.com

2005-12-08 Thread Robert Thompson



That's because these are primarily Macintosh developers from England.  "John C. Bland II" <[EMAIL PROTECTED]> wrote:  To pile on the agreements, I haven't purchased any templates (100% against them) but have edited them for clients. My experience is similar to Jesse. The code was so horrible in this file I DID hire someone else to do it. If I worked on it I would've been too compelled to rewrite it properly. IMO, a custom design is worth a million times more than a design a million people could have by downloading a template. (subliminal message from Bobby Boucher's Mom: "Templates are the devil!") It seems to be a touchy topic though (to use or not use templates) so I'm not trying to hijack this thread. Just wanted to give my opinion on site/app designs.   On 12/8/05, Ben Lucyk <[EMAIL PROTECTED]> wrote:Quick agreement from me as well.  I used a template from there for a site I did and the code seemed like it was thrown together in a darn hurry.  It didn't look bad, but left untouched it was a maintenance pain waiting to happen.      -Ben On 12/8/05, Ralf Rottmann <[EMAIL PROTECTED] > wrote:   One remark from my side: I have used templates from Templatemonster because my customers liked them. I have to say that most of them totally lacked basic coding and implementation best practices. For example the classes and styles in the style sheets that came along with the files were pretty quick and dirty (with enumerated styles like style1, style2, style3) and none of the templates was nearly done in clean html. When it came to cross-browser capabilities, I had to manually go through the html source code of each page and fine tune stuff.      Some templates used images (like spacers, backgrounds, lines, etc.) where CSS would have done a
 beautiful job, too.      I'd say if you need something the quick and dirty way or just want to reuse the multimedia assets, go for the templates, they are not too expensive. However if maintainability and cross-browser experience is important for you, I'd second what others on the list have already said: Chances are it might be cheaper to just hire a professional web designer.      Regards   Ralf Rottmann | Director Sales & Marketing | VoicInt Telecommunications GmbH m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: [EMAIL PROTECTED]---   From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Tariq AhmedSent: Donnerstag, 8. Dezember 2005 23:43To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] TemplateMonster.com   I've bought templates from them before. It's essentially a zip file with all the raw assets so that you can apply to your own situation (sample HTML code that put all the graphics together, Photoshop files, FLAs,  etc...). As far as I know they don't have anything that would be immediately plug and playable. But if you spend the time you can make your own skins / styles / etc... based on the package. But it'll be great in the future when people start publishing full fledged Flex themes that can be easily applied.Mehdi, Agha
 wrote:   Does anyone know about www.templatemonster.com and if the templates can be integrated with Flex applications?  Thanks  Agha Mehdi  IDT - eBusiness
 Program Manager  Work: 408.284.8239  Cell  : 209.275.0482  Fax  :  408.284.2766  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com   YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the web.    To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. -- Ben Lucyk(403) 809-3514[EMAIL PROTECTED] --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
   SPONSORED LINKS Web site design development   Computer software development   Software design and development Macromedia flex   Software development best practice   YAHOO! GROUPS LINKS
    Visit your group "flexcoders" on the web.     To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service . 
 -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az   
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at Yahoo! Shopping 
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at Yahoo! Shopping 





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

[flexcoders] Please Help :: Convert VOB to What for Best FLV?

2005-12-08 Thread Robert Thompson



I have a music store who is authorized to post excerpts of DVD content for purchase.     So I have all the VOB video files off the DVDs.     Nowwhich is best to use for FLV?  I'm assuming AVI since it appears to be the only Lossless format among the popular ones?     But FRAME RATE is very important to me also.     The Key, IMHO, to the new On2 whether in FLEX2 or in FL8, is to keep the standard of quality high.     I mean, I can't believe there are still peopel out there buying that SWISH video player that takes each frame of a video and does max jpeg compression on it, puts it in a SWF and wallagreat for a few years agobut we all know 2006 is going to be HUGE (or as Donald Gump would say 'uge) for Flash Video.     -r      
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at Yahoo! Shopping 





--
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] TemplateMonster.com

2005-12-08 Thread John C. Bland II



That's an interesting comment. Is that where the majority of templates are done, honestly?Guess it boils down to, you get what you pay for (regardless of who develops it). On 12/8/05, 
Robert Thompson <[EMAIL PROTECTED]> wrote:



That's because these are primarily Macintosh developers from England.  "John C. Bland II" <
[EMAIL PROTECTED]> wrote:  To pile on the agreements, I haven't purchased any templates (100% against them) but have edited them for clients. My experience is similar to Jesse. The code was so horrible in this file I DID hire someone else to do it. If I worked on it I would've been too compelled to rewrite it properly. 
IMO, a custom design is worth a million times more than a design a million people could have by downloading a template. (subliminal message from Bobby Boucher's Mom: "Templates are the devil!") It seems to be a touchy topic though (to use or not use templates) so I'm not trying to hijack this thread. Just wanted to give my opinion on site/app designs. 
  On 12/8/05, Ben Lucyk <[EMAIL PROTECTED]
> wrote:Quick agreement from me as well.  I used a template from there for a site I did and the code seemed like it was thrown together in a darn hurry.  It didn't 
look bad, but left untouched it was a maintenance pain waiting to happen.      -Ben On 12/8/05, Ralf Rottmann
 <[EMAIL PROTECTED] > wrote:   
One remark from my side: I have used templates from Templatemonster because my customers liked them. I have to say that most of them totally lacked basic coding and implementation best practices. For example the classes and styles in the style sheets that came along with the files were pretty quick and dirty (with enumerated styles like style1, style2, style3) and none of the templates was nearly done in clean html. When it came to cross-browser capabilities, I had to manually go through the html source code of each page and fine tune stuff. 
     
Some templates used images (like spacers, backgrounds, lines, etc.) where CSS would have done a
 beautiful job, too.      
I'd say if you need something the quick and dirty way or just want to reuse the multimedia assets, go for the templates, they are not too expensive. However if maintainability and cross-browser experience is important for you, I'd second what others on the list have already said: Chances are it might be cheaper to just hire a professional web designer. 
     
Regards   
Ralf Rottmann | Director Sales & Marketing | VoicInt Telecommunications GmbH m:+49-(0)170-914-5495 | f: +49-(0)231-557402-99 | e: 

[EMAIL PROTECTED]---
 
  From:
 
flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] 
On Behalf Of Tariq AhmedSent: Donnerstag, 8. Dezember 2005 23:43To: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] TemplateMonster.com  
     I've bought templates from them before. It's essentially a zip file with all the raw assets so that you can apply to your own situation (sample HTML code that put all the graphics together, Photoshop files, FLAs,  etc...). As far as I know they don't have anything that would be immediately plug and playable. But if you spend the time you can make your own skins / styles / etc... based on the package. 
But it'll be great in the future when people start publishing full fledged Flex themes that can be easily applied.Mehdi, Agha
 wrote:   Does anyone know about 
www.templatemonster.com 
and if the templates can be integrated with Flex applications?  Thanks
  Agha Mehdi  
IDT - eBusiness
 Program Manager  Work: 408.284.8239  
Cell  : 209.275.0482  
Fax  :  408.284.2766  --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  YAHOO! GROUPS LINKS  Visit your group "
flexcoders" on the web.    To unsubscribe from this group, send an email to: 
 [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the 
Yahoo! Terms of Service. 
-- Ben Lucyk(403) 809-3514[EMAIL PROTECTED] 
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

   SPONSORED LINKS   
  
Web site design development   
Computer software development   
Software design and development 
Macromedia flex   
Software development best practice 
  YAHOO! GROUPS LINKS
    Visit your group "flexcoders
" on the web.     To unsubscribe from this group, send an email to: 
 [EMAIL PROTECTED]    Your use of Yahoo! Groups is subject to the 
Yahoo! Terms of Service . 
 -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talks
http://www.gotoandstop.org - Home of FMUG.az   
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at 
Yahoo! Shopping 
	
		Yahoo! Shopping 
Find Great Deals on Holiday Gifts at 
Yahoo! Shopping 

Re: [flexcoders] How to deselect a RadioButtonGroup?

2005-12-08 Thread guo haifeng



private function btnSetUndefined_Click():Void    {     rgpSex.selection.selected=false;     rgpSex.selection.data="" face="Courier New">undefined;     lblValue.text="Value:"+rgpSex.selection.data.toString();
    }
On 12/9/05, Matt Chotin <[EMAIL PROTECTED]> wrote:



The only way to do this is undocumented and therefore probably won't work in Flex 2.0.  Set rgpSex.selectedRadio = undefined;

 
Normally I don't think a UI lets you de-select a radio group though, instead you should have an option for "none"

 
Matt
 




From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of huhgawzSent: Wednesday, December 07, 2005 6:11 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] How to deselect a RadioButtonGroup?
 

How to deselect a RadioButtonGroup?
I try it using the next code but fails.After the application is loaded, I click the "getValue" button and the
label displays "Value: undefined" (this behaviour is ok). Then I clickthe "Female" RadioButton and click the "getValue" button and the label
displays "Value: F" (this behaviour is ok too). Finally, I click the"setUndefined" button to make the RadioButtonGroup selection undefined.
In fact, the RadioButtonGroup has nothing selected visually butwhen I click the "getValue" button the label displays "Value: F". I
wish the label displays again "Value: undefined"
http://www.macromedia.com/2003/mxml
">    
      
    
    
      
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 


YAHOO! GROUPS LINKS 

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











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