Re: [flexcoders] Re: Why does this effect not work?

2005-12-09 Thread JesterXL
You port code?  I've found in the Flash world, it's just quicker and better 
to re-write.  Perhaps one day I'll get put on these famed "large, succesful" 
projects I keep hearing about.

BTW, what's DP?  I can talk about Flash for hours... days...weeks...years 
even... even longer with free beer.

- Original Message - 
From: "Darin Kohles" <[EMAIL PROTECTED]>
To: 
Sent: Friday, December 09, 2005 10:37 PM
Subject: [flexcoders] Re: Why does this effect not work?


Ralf,

Wie Gehts? (no I really don't remeber my german 5 years ~ 20 years ago)

Be careful of your use of 'this' as the target of your effect (Jesse
stop by DP some time, ask for Ben, and maybe we can meet - Flash issues).

I've had similar code that I've changed the effect type one several
times until I was satisfied with the effect. My take is - be explicit
on what your target is. Give your target an id, and use that as your
target. In this case I think that 'this' refers to ?? the newly
created instance of a Fade object that as yet is not tied to anything.

A sample:

var fadeIn:Fade = new Fade(lgImage);
fadeIn.alphaTo = 1;
fadeIn.playEffect();
fadeIn.addEventListener(EffectEvent.EFFECT_END,
function():Void{
detailText.visible=false;
});

The same can be appied in reverse (use a Bool in an if/else structure
that changes on each effect (alpha change). You'll notice that the
target is an id'ed component, not a 'this'. The event listener is just
a clean-up call (for a Wipe effect, that I've found to be buggy).

This code works for event.target as well - stay away from 'this'
unless you know what 'this' is.

On a side note, I've ntice that you tend to use a lot of _somethings
and __somethings in your code (as do others) - some of these are
prototype based and I would not count on having access to them in the
future.  The closer you can fit your code within the top level
structure, the better luck you'll have porting apps in the future.

Just some thoughts

--- In flexcoders@yahoogroups.com, "Ralf Rottmann"
<[EMAIL PROTECTED]> wrote:
>
> Hi there,
>
> Following up on the recent posting related to Flex effects, can
anybody comment on why the following very simple code excerpt does not
work? All I want to do is on click of the button fade the label from 0
to 1.
>
> private function FadeIn():Void {
>   var fx:Fade = new Fade(this.lbl);
>   fx.fromAlpha = 0;
>   fx.toAlpha = 1.0;
>   fx.duration = 2000;
>   fx.playEffect();
> }
>
> 
> 
>
> What it should do:
> Render the label.
> Render the button.
> Wait.
> User clicks.
> Label hides (alpha = 0).
> Label slowly fades alpha to 1.
>
> However: No fade at all happens.
>
> Why?
> Isn't this exactly how effects are supposed to work conceptually?
>
> (Talking about Flex 2 Alpha 1 here.)
>
> Best regards
> RR
> --
> mobile: +49-(0)170-914-5495
> email:   [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
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] Cell Renderers: TreeGrid Renderer issue

2005-12-09 Thread Matt Chotin










Are you sure the image renderer is setting
the image source to null when you’re closing the row?  Maybe set the image
visibility to false too?

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mohanraj Jayaraman
Sent: Friday, December 09, 2005
1:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cell
Renderers: TreeGrid Renderer issue



 

Hi All,

I am using a Tree Grid sample provided by James at

http://www.cayambe.com/plog/index.php?op=ViewArticle&articleId=6&blogId=1

It works fine as it is. But in my grid I had 2
more
columns and these columns have a simple
ImageRenderer
attached to it.

 
    
verticalAlign="middle"
width="700" height="500" 
 
     
   
  variableRowHeight="true" 
 
   
   
  rowHeight="50" 
 
   
   
  sortableColumns="false"
 
   
     
borderThickness="1"
 
   
     
borderColor="0x00"
 
   
     
selectable="true"
 
   
hGridLines="true"
 
   
   
  hGridLineColor="0xD2D2D2"
 
   
   
  headerHeight="40"
 
   
   
  headerStyle="headerText"
 
   
   
  >
 
   

 
     

 
   
  
headerText="Area"
  width="300" 
cellRenderer="TreeGridCellRenderer"/>
 
   
  
headerText="Stage"
   
  width="100"  
cellRenderer="ImageRenderer"/>
 
    
 
   
  
headerText="Stage2"
   
  width="100"  
cellRenderer="ImageRenderer"/>
 
     

 
   

 
    

When I open the TreeRow in the grid, Child rows
are
displayed and the images in Stage1 and Stage2 of
the
child rows are displayed correctly.

But when I close the TreeRow the child rows get
closed
but the images in the child rows still appear in
the
grid.

Can someone explain what I need to do in Renderers
to
make those images disappaer?

Thanks in advance
Mohan



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









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





  




  
  
  YAHOO! GROUPS LINKS



   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: Why does this effect not work?

2005-12-09 Thread Darin Kohles
Ralf,

Wie Gehts? (no I really don't remeber my german 5 years ~ 20 years ago)

Be careful of your use of 'this' as the target of your effect (Jesse
stop by DP some time, ask for Ben, and maybe we can meet - Flash issues).

I've had similar code that I've changed the effect type one several
times until I was satisfied with the effect. My take is - be explicit
on what your target is. Give your target an id, and use that as your
target. In this case I think that 'this' refers to ?? the newly
created instance of a Fade object that as yet is not tied to anything.

A sample:

var fadeIn:Fade = new Fade(lgImage);
fadeIn.alphaTo = 1;
fadeIn.playEffect();
fadeIn.addEventListener(EffectEvent.EFFECT_END,
function():Void{
detailText.visible=false;
});

The same can be appied in reverse (use a Bool in an if/else structure
that changes on each effect (alpha change). You'll notice that the
target is an id'ed component, not a 'this'. The event listener is just
a clean-up call (for a Wipe effect, that I've found to be buggy).

This code works for event.target as well - stay away from 'this'
unless you know what 'this' is.

On a side note, I've ntice that you tend to use a lot of _somethings
and __somethings in your code (as do others) - some of these are
prototype based and I would not count on having access to them in the
future.  The closer you can fit your code within the top level
structure, the better luck you'll have porting apps in the future.

Just some thoughts

--- In flexcoders@yahoogroups.com, "Ralf Rottmann"
<[EMAIL PROTECTED]> wrote:
>
> Hi there,
> 
> Following up on the recent posting related to Flex effects, can
anybody comment on why the following very simple code excerpt does not
work? All I want to do is on click of the button fade the label from 0
to 1.
> 
> private function FadeIn():Void {
>   var fx:Fade = new Fade(this.lbl);
>   fx.fromAlpha = 0;
>   fx.toAlpha = 1.0;
>   fx.duration = 2000;
>   fx.playEffect();
> } 
> 
> 
> 
> 
> What it should do:
> Render the label.
> Render the button.
> Wait.
> User clicks.
> Label hides (alpha = 0).
> Label slowly fades alpha to 1.
> 
> However: No fade at all happens.
> 
> Why?
> Isn't this exactly how effects are supposed to work conceptually?
> 
> (Talking about Flex 2 Alpha 1 here.)
> 
> Best regards
> RR
> --
> mobile: +49-(0)170-914-5495
> email:   [EMAIL PROTECTED]
>






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

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

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

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

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




[flexcoders] Re: Comparing complex objects

2005-12-09 Thread Darin Kohles
If you're familiar with the concept of a "deep copy", then you can
apply the same to a compare function (of course you'll have to write
it yourself ;). Anytime you are dealing with a complex and/or custom
type it's a good idea to plan on comparison and choose what is, in
fact, 'equal'.

This can be usefull if you decide that sometimes 'equal' is equal
enough, and other time equal has-to-mean equal.

Pick what you think you need to include, and do an item by item
comparison (in the 'normal' sense) with a Bool that tracks the overall
result.


Good Luck

--- In flexcoders@yahoogroups.com, "Stacy Young" <[EMAIL PROTECTED]> wrote:
>
> Wondering how others would go about comparing instances of complex
> objects while avoiding circular references and having flash explode?
> 
> Thx!
> Stace
>






 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@yahoogroups.com

2005-12-09 Thread Darin Kohles
Dunno if this will help but try & 

Otherwise use encodeURI() on your URL string and you'll be much
happier. (I think)

Good Luck

--- In flexcoders@yahoogroups.com, Greg Morphis <[EMAIL PROTECTED]> wrote:
>
> getURL() doesnt like & I keep getting
> "The reference to entity "date" must end with the ';' delimiter."
> So how do you get around this?
> Here's my code
>   
> 
> 
> Thanks
> 
> --
> Auxilium meum a Domino
>






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

2005-12-09 Thread Darin Kohles
If you're familiar with the concept of a "deep copy", then you can
apply the same to a compare function (of course you'll have to write
it yourself ;). Anytime you are dealing with a complex and/or custom
type it's a good idea to plan on comparison and choose what is, in
fact, 'equal'.

This can be usefull if you decide that sometimes 'equal' is equal
enough, and other time equal has-to-mean equal.

Pick what you think you need to include, and do an item by item
comparison (in the 'normal' sense) with a Bool that tracks the overall
result.


Good Luck

--- In flexcoders@yahoogroups.com, "Stacy Young" <[EMAIL PROTECTED]> wrote:
>
> Wondering how others would go about comparing instances of complex
> objects while avoiding circular references and having flash explode?
> 
> Thx!
> Stace
>







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

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

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

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

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




Re: [flexcoders] Why does this effect not work?

2005-12-09 Thread JesterXL
Title: Why does this effect not work?





My guess is that that particluar effect doesn't 
work because you cannot fade device text.  Text in Flex is by default, 
device, meaning it uses device fonts, or native OS machine fonts.  If you 
were to embed the fonts for that Label, I be it'd work.
 
Therefore, use a Dissovle instead for text specific 
fades... or embed the fonts.
 
More context:
http://www.jessewarden.com/archives/2005/10/mxeffectsfade_v.html
 
- Original Message - 
From: Ralf 
Rottmann 
To: Flexcoders@yahoogroups.com 
Sent: Friday, December 09, 2005 8:29 PM
Subject: [flexcoders] Why does this effect not work?

Hi there,Following up on the recent posting related to 
Flex effects, can anybody comment on why the following very simple code excerpt 
does not work? All I want to do is on click of the button fade the label from 0 
to 1.private function FadeIn():Void {  var fx:Fade = new 
Fade(this.lbl);  fx.fromAlpha = 0;  fx.toAlpha = 
1.0;  fx.duration = 2000;  
fx.playEffect();}What it 
should do:Render the label.Render the button.Wait.User 
clicks.Label hides (alpha = 0).Label slowly fades alpha to 
1.However: No fade at all happens.Why?Isn't this exactly how 
effects are supposed to work conceptually?(Talking about Flex 2 Alpha 1 
here.)Best regardsRR--mobile: 
+49-(0)170-914-5495email:   
[EMAIL PROTECTED]





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Why does this effect not work?

2005-12-09 Thread Ralf Rottmann
Title: Why does this effect not work?








Hi there,

Following up on the recent posting related to Flex effects, can anybody comment on why the following very simple code excerpt does not work? All I want to do is on click of the button fade the label from 0 to 1.

private function FadeIn():Void {
  var fx:Fade = new Fade(this.lbl);
  fx.fromAlpha = 0;
  fx.toAlpha = 1.0;
  fx.duration = 2000;
  fx.playEffect();
}




What it should do:
Render the label.
Render the button.
Wait.
User clicks.
Label hides (alpha = 0).
Label slowly fades alpha to 1.

However: No fade at all happens.

Why?
Isn't this exactly how effects are supposed to work conceptually?

(Talking about Flex 2 Alpha 1 here.)

Best regards
RR
--
mobile: +49-(0)170-914-5495
email:   [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] Problem Adding Effects to Wrapped Label Control (Flex 1.5)

2005-12-09 Thread Ralf Rottmann










I always found the effects behavior of
Flex 2.0 Alpha 1 weird. I never had the feeling that it really worked like I
wanted it to. It never appeared to be “reliable” in terms of that
it did what I expected right away. Not to blame Macromedia for this, it might
all be my fault but anyway… effects always have been difficult for me. I
ran into timing issues and whenever I was sure that “this time I have
assigned the effect to the right event” just to find out it does not work
as intended.

 

I have created the following example for
you. It’s not making use of a MXML Component but you might get the idea. Obviously
you don’t need to call the ChangeText() method via Button controls. You
can also do it programmatically. It should not be too difficult to wrap the
behavior designed here into a self-contained component. Does that help? (Would
be nice if you post the component once you’ve finished it.)

 



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

  

    

  

 

   id="lblDummy" text="{theText}" showEffect="appearer" hideEffect="dissolver" />

   label="Text Change 1" click="ChangeText('This
is impressive!')" /> 

   label="Text Change 2" click="ChangeText('This
is even more impressive!')"  />

 

  

     name="dissolver" alphaFrom= "1.0"
alphaTo= "0" duration= "1000"/>

     name="appearer"  alphaFrom= "0"
alphaTo= "1.0" duration= "1000"/>

  



 

 



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 Ben Lucyk
Sent: Samstag, 10. Dezember 2005
00:22
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problem
Adding Effects to Wrapped Label Control (Flex 1.5)



 



Hello,





 





I'm trying to have a bunch of dynamically updating Labels
(think internationalization) all show a Fade effect when their
"text" binding source is updated.  Since there is no default
"change" event for the control, I've tried going down the path of
wrapping the Label and implementing some of the code in my new control. 
Doesn't work.  The code below does not fade the label when the button
is clicked.   





 





Is it maybe possible to attach a default Fade Effect to my
control's "show" Event via Action Script, and just toggle
its visibility?





 





 





La code:





 







 
MXML   ***







 







 
  click="tempString == 'bloo'? tempString='blah' :
tempString='bloo';"  /> 





 





 





  Extended Label ***





 





import mx.effects.*;
import mx.controls.*;



class
com.FancyLabel extends mx.controls.Label {

   
// Constructor
    public function FancyLabel() {
  
}
 
   public function showLabel():Void {
  var textFade:Fade = new Fade(this);
  textFade.duration = 2000; 
  textFade.alphaFrom = 0;
  textFade.alphaTo = 100;
  textFade.playEffect();
   }
 
 public function set text(val:String):Void {
    super.text = val;
    show Label();
    }
 
}

*** 

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








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

2005-12-09 Thread Tracy Spratt
This sounds like a deferred instantiation issue.  On the Accordion, set
creationPolicy="all", and check if that fixes the problem.  

Then search the archives for "creationPolicy" and "deferred
instantiation" to find out why *this is not a good solution*.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of maxgsilverscape
Sent: Friday, December 09, 2005 1:17 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] getRepeaterItem() problem...

I have this code:



   

  



The getRepeaterItem in the accordion's change event returns a 
blank/undefined value the first time you click through each 
accordion item, but works perfectly from that point on. Does 
something have to be done initially upon creation of the accordion 
to get that working?






--
Flexcoders Mailing 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] Themes (was TemplateMonster.com)

2005-12-09 Thread jeremy lu




thanks for great link :)






--
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] Problem Adding Effects to Wrapped Label Control (Flex 1.5)

2005-12-09 Thread Ben Lucyk



Hello,
 
I'm trying to have a bunch of dynamically updating Labels (think internationalization) all show a Fade effect when their "text" binding source is updated.  Since there is no default "change" event for the control, I've tried going down the path of wrapping the Label and implementing some of the code in my new control.  Doesn't work.  The code below does not fade the 
label when the button is clicked.   
 
Is it maybe possible to attach a default Fade Effect to my control's "show" Event via Action Script, and just toggle its visibility?
 
 
La code:
 

  MXML   ***
 
   click="tempString == 'bloo'? tempString='blah' : tempString='bloo';"  />

 
 
  Extended Label ***
 
import mx.effects.*;import mx.controls.*;
class com.FancyLabel extends mx.controls.Label {
    // Constructor    public function FancyLabel() {  }    public function showLabel():Void {  var textFade:Fade = new Fade(this);  textFade.duration = 2000;
  textFade.alphaFrom = 0;  textFade.alphaTo = 100;  textFade.playEffect();   }  public function set text(val:String):Void {    super.text = val;    show
Label();    } }
*** 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 subject to the Yahoo! Terms of Service.



  









flexcoders@yahoogroups.com

2005-12-09 Thread Greg Morphis
getURL() doesnt like & I keep getting
"The reference to entity "date" must end with the ';' delimiter."
So how do you get around this?
Here's my code



Thanks

--
Auxilium meum a Domino


 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] Comparing complex objects

2005-12-09 Thread Stacy Young
Wondering how others would go about comparing instances of complex
objects while avoiding circular references and having flash explode?

Thx!
Stace


 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-09 Thread Dave Wolf

Ah onto the next little nuance.  IE loves to cache.  I mean it
*really* loves to cache.  Since the player is in effect delegating the
HTTP call to the browser, the browser can choose to cache quite often.
 So although you fire off the HttpService call, the browser decides
naaah, that call has already happend.  I'll just ignore it.

You have two options (sorted in order of Kludgedom)

1) Radmonly post-pend a url parameter to each call (like time millis)
so the url of the HttpService is different every time.  Very hoakey IMHO

2) Set some more cache-control headers.  We found this combination
worked in every browser (yes we struggled with IE's handling of
cache-control headers here too.  Don't get me started unless you have
a bar tab)

// This example was streaming XML out.  
// You may not need all these headers.  The first one is the 
// operative one.  Don't tinker it at all either.  Anything
// different and you're on your own!!!

response.setHeader("Cache-Control", "max-age=0, must-revalidate");
response.setStatus(HttpServletResponse.SC_OK);
response.setContentLength(bytes.length);
response.getOutputStream().write(bytes);


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

Email: [EMAIL PROTECTED]
Office: 866-CYNERGY

--- In flexcoders@yahoogroups.com, "colinblackmore"
<[EMAIL PROTECTED]> wrote:
>
> Indeed he is! :-)
> 
> However... with regard to the fix, I seem to have spoken to quickly.
> 
> Although adding the FormAuthenticator valve fixed the immediate
> problem I was experiencing, it seems to also cause other issues
> (again, this only appears on IE).
> 
> My application has a polling thread that periodically calls a specific
> URL.  With the FormAuthenticator valve enabled, the behaviour
> 'appears' to be that the HTTPService is called, the response handler
> is fired, but *the server never receives a request*.
> 
> What makes it even stranger is that the response handler has a valid
> response definition.
> 
> My hunch is that setting the disableProxyCaching=false is working
> against me in this case and only the first call is ever making it to
> my servlet.  
> 
> Make sense?  Any thoughts?
> 
> ...Col
> 
> --- 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*.
> > >>

Re: [flexcoders] First week with Flex - An upshot

2005-12-09 Thread JesterXL





HAHA!  Awesome, you da man!!!
 
- Original Message - 
From: Ralf 
Rottmann 
To: flexcoders@yahoogroups.com 
Sent: Friday, December 09, 2005 5:01 PM
Subject: RE: [flexcoders] First week with Flex - An 
upshot


Jester, I couldn’t 
resist… 23:01 over here..
 

Ralf 
Rottmann | Director 
Sales & Marketing | VoicInt Telecommunications 
GmbHm:+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 JesterXLSent: Freitag, 9. Dezember 2005 
19:27To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] First week with 
Flex - An upshot
 

Huh?  Dude, just because it's 
the weekend doesn't mean you have to stop playing with 
Flex!

 

- Original Message - 


From: Ralf 
Rottmann 

To: flexcoders@yahoogroups.com 


Sent: Friday, 
December 09, 2005 1:15 PM

Subject: 
[flexcoders] First week with Flex - An 
upshot

 
As we are approaching 7 pm in 
Germany (where I am based), I just 
wanted to post a big big big “thank you” to the list. It’s been my first week 
with Flex and I gotta say: I LOVE IT! My company is currently in the process of 
evaluating its future strategic direction for thin/rich clients and it was my 
task to do a quick and dirty port of a fully backend integrated .NET WinForms 
client to the Flash platform. It’s been a full success and thanks to the 
Flexcoders list it’s been lots of fun.
 
Keep up the good work. I hope to 
migrate from “just ask” into “provide answers” mode pretty 
soon.
 
Have a nice 
weekend.
 
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] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-09 Thread colinblackmore
Indeed he is! :-)

However... with regard to the fix, I seem to have spoken to quickly.

Although adding the FormAuthenticator valve fixed the immediate
problem I was experiencing, it seems to also cause other issues
(again, this only appears on IE).

My application has a polling thread that periodically calls a specific
URL.  With the FormAuthenticator valve enabled, the behaviour
'appears' to be that the HTTPService is called, the response handler
is fired, but *the server never receives a request*.

What makes it even stranger is that the response handler has a valid
response definition.

My hunch is that setting the disableProxyCaching=false is working
against me in this case and only the first call is ever making it to
my servlet.  

Make sense?  Any thoughts?

...Col

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

RE: [flexcoders] First week with Flex - An upshot

2005-12-09 Thread Ralf Rottmann










Jester, I couldn’t resist…
23:01 over here..

 



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 JesterXL
Sent: Freitag, 9. Dezember 2005
19:27
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] First
week with Flex - An upshot



 



Huh?  Dude, just because it's the weekend doesn't mean
you have to stop playing with Flex!





 





- Original Message - 



From: Ralf
Rottmann 





To: flexcoders@yahoogroups.com






Sent: Friday, December
09, 2005 1:15 PM





Subject: [flexcoders] First
week with Flex - An upshot







 



As we are approaching 7 pm in Germany (where I am based), I just
wanted to post a big big big “thank you” to the list. It’s
been my first week with Flex and I gotta say: I LOVE IT! My company is
currently in the process of evaluating its future strategic direction for
thin/rich clients and it was my task to do a quick and dirty port of a fully
backend integrated .NET WinForms client to the Flash platform. It’s been
a full success and thanks to the Flexcoders list it’s been lots of fun.

 

Keep up the good work. I hope to migrate from “just
ask” into “provide answers” mode pretty soon.

 

Have a nice weekend.

 

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] Cell Renderers: TreeGrid Renderer issue

2005-12-09 Thread Mohanraj Jayaraman
Hi All,
 
I am using a Tree Grid sample provided by James at

http://www.cayambe.com/plog/index.php?op=ViewArticle&articleId=6&blogId=1

It works fine as it is. But in my grid I had 2 more
columns and these columns have a simple ImageRenderer
attached to it.

  

  




  

  

When I open the TreeRow in the grid, Child rows are
displayed and the images in Stage1 and Stage2 of the
child rows are displayed correctly.

But when I close the TreeRow the child rows get closed
but the images in the child rows still appear in the
grid.

Can someone explain what I need to do in Renderers to
make those images disappaer?

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 ~--> 
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] case of the duplicating combo box -- toggling .editable

2005-12-09 Thread stevenkeys2003
Ok.. here's a weird one. I have in actionscript:

if (country.selectedItem.l_country != 'United States' && 
country.selectedItem.l_country != 'Canada'){
c_state.editable = true;
}else{
c_state.editable = false;
}

where c_state is my combo box. Adding in the .editable = false on the 
else makes the combobox replicate itself off to the side. It's like it 
doesn't have time to clear/redraw itself. In other words I end up 
seeing TWO combo boxes, one editable, one not. Has anyone run into 
this?

-Steve






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

2005-12-09 Thread Leif Wells
On that page is a big Flash file that prints out

"Macromedia Flash Player Is Installed"

in HUGE letters followed by the version number.

Then, below that is a box with the header "Version Information"
followed also by the version information.

Why not just try installing the player?

http://www.macromedia.com/software/flashplayer/

Leif

On 12/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> 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.
>
>  
>


 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] Themes (was TemplateMonster.com)

2005-12-09 Thread Sreejith Unnikrishnan






Hi Matt,
Is this swc file available for download?
The 1.5 swcs are not compatible with 2.0, is it?

Sree

Matt Horn wrote:

  
  
  The Halo theme is now a separate
SWC that you can apply (to get that old-school Flex look). Might be a
good place to start looking at what goes into themes. I haven't looked
at it myself yet, since some of the theme implementation details are
still up in the air.
   
  matt horn
  flex docs
  
  

 From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Tariq Ahmed
Sent: Friday, December 09, 2005 12:47 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Themes (was TemplateMonster.com)


On the topic of themes... I never really looked into themes since that
wasn't a priority. But was thinking it'd be great to start making an
open library of themes for Flex2.

Has anyone produced graphical skins or an entire theme that includes
skins for Flex2?

Has the process changed from 1.5 to 2? In 1.5 from my understanding you
basically modified HaloTheme.fla and exported it to a swc.  I was
reading in 2.0 that you use compc to accomplish it, unfortunately page
567 of the app dev guide has been completed yet which covers 9 slicing.

Thx!

John C. Bland II wrote:
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.
  
  


  








--
Flexcoders Mailing 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] Themes (was TemplateMonster.com)

2005-12-09 Thread Tom Ortega



In 1.5 you don't "have to" modify the fla, you can create your own.  There's two types: graphical and programmatic.  The best show I attended at MAX 2005 was on this topic.
 
Here's my notes from the Max session on this topic:
 

Session: Customizing Flex Applicatons: Styling, Skinning, and Beyond

- Various Tidbits

o   Skinning and Embedded Fonts are good to use, but have little documentation on them

o   Customize components using type selectors (Panel, Button)

o   Refine components with StyleNames (Dialogue Box TitleBar and OK Button)

o   Classes are skins, collections of skins are themes

o   Theme colors override class colors

- CSS

o   Define "Look and Feel" and "App-specific" styles

o   Global and @font-face = app wide font styles

o   Only 1 ".elementName" name allowed, first half of named ignored, i.e. defining body.type and table.type in the same CSS will result in the 
body.type being ignored and table.type taking precedence for all .type elements;  It's better ensure all element names are unique

o   Long CSS files can hit 32K file limit max size, no error will be given

- Embedded Fonts

o   Each embedded font adds 30KB to your file

o   Embedded fonts are required for Alpha effects

o   There are two font managers to try if one doesn't work:

§ BatikFontManager

§ JREFont Manager

o   .htmltext is not embedded font friendly

- Halo Theme

o   No background gradients

o   Button border set at 3

- Pulse Themes

o   Graphical Theme – Artwork based

o   Create FLAs and export to .swc for Flex

- Skins Types:

o   Graphical – Flash MovieClips

§ In Flash fla, create a main symbol and name it for exporting

·    i.e. TomSkin

§ Then place all "state" symbols in main symbol

·    i.e. TomSkinButtonUp, TomSkinButtonDown

§ Export fla contents to an swc file

·    i.e. TomSkin.swc

§ Then put this code in your Flex app

·     [Embed(source="TomSkin.swc" symbol="TomSkin")]


o   Programmatic – ActionScript Classes

§ Your class must extend RectBorder class

·    class TomSkin extends RectBorder

§ Your class must then override drawBorder() function

·    function drawBorder()

§ Then put this code in you Flex app

·     static var skinToUse:TomSkin;

- StyleButton subclass 

o   lets CSS control button "Properties" not normally controlled by CSS

o   i.e. Width, Height, etc.

- Links

o   http://www.allurent.com/joeb/max2005
 - Presentation PP and code samples – very worth the time to explore-Tom 
On 12/9/05, Matt Horn <[EMAIL PROTECTED]> wrote:

The Halo theme is now a separate SWC that you can apply (to get that old-school Flex look). Might be a good place to start looking at what goes into themes. I haven't looked at it myself yet, since some of the theme implementation details are still up in the air.

 
matt horn
flex docs



From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Tariq AhmedSent: Friday, December 09, 2005 12:47 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Themes (was TemplateMonster.com) 

On the topic of themes... I never really looked into themes since that wasn't a priority. But was thinking it'd be great to start making an open library of themes for Flex2.Has anyone produced graphical skins or an entire theme that includes skins for Flex2?
Has the process changed from 1.5 to 2? In 1.5 from my understanding you basically modified HaloTheme.fla and exported it to a swc.  I was reading in 2.0 that you use compc to accomplish it, unfortunately page 567 of the app dev guide has been completed yet which covers 9 slicing.
Thx!John C. Bland II wrote: 
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.--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
SPONSORED LINKS 




Web site design development 

Computer software development 

Software design and development 


Macromedia flex 

Software development best practice 


YAHOO! GROUPS LINKS 

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










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
 

[flexcoders] getRepeaterItem() problem...

2005-12-09 Thread maxgsilverscape
I have this code:



   

  



The getRepeaterItem in the accordion's change event returns a 
blank/undefined value the first time you click through each 
accordion item, but works perfectly from that point on. Does 
something have to be done initially upon creation of the accordion 
to get that working?





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

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

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

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

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




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

2005-12-09 Thread Rick Englert





Works 
for me - firefox 1.5, win xp

  -Original Message-From: Renaun Erickson 
  [mailto:[EMAIL PROTECTED]Sent: Thursday, December 08, 2005 8:04 
  PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
  Re: getting Flex pages to work in FirefoxI 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 butfor some > reason when I try to get it to work in 
  Firefox all I get is a whitescreen 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





  




  
  
  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] Themes (was TemplateMonster.com)

2005-12-09 Thread Matt Horn





The Halo theme is now a separate SWC that you can apply (to 
get that old-school Flex look). Might be a good place to start looking at what 
goes into themes. I haven't looked at it myself yet, since some of the theme 
implementation details are still up in the air.
 
matt horn
flex docs

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Tariq 
  AhmedSent: Friday, December 09, 2005 12:47 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Themes (was 
  TemplateMonster.com)
  On the topic of themes... I never really looked into themes since 
  that wasn't a priority. But was thinking it'd be great to start making an open 
  library of themes for Flex2.Has anyone produced graphical skins or an 
  entire theme that includes skins for Flex2?Has the process changed 
  from 1.5 to 2? In 1.5 from my understanding you basically modified 
  HaloTheme.fla and exported it to a swc.  I was reading in 2.0 that you 
  use compc to accomplish it, unfortunately page 567 of the app dev guide has 
  been completed yet which covers 9 slicing.Thx!John C. Bland II 
  wrote: 
  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.





--
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-09 Thread nostra72



No on the list of plugins its not on the list with my version of firefox





--
Flexcoders Mailing 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] First week with Flex - An upshot

2005-12-09 Thread Ralf Rottmann
Title: Re: [flexcoders] First week with Flex - An upshot








Useful is an understatement. It's fantastic!

Flex 2.0 Alpha only.

Never looked into 1.5 because we couldn't get our staff to work with DW as the IDE.

Flex 2.0 is great!

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




-Original Message-
From: flexcoders@yahoogroups.com 
To: flexcoders@yahoogroups.com 
Sent: Fri Dec 09 19:25:02 2005
Subject: RE: [flexcoders] First week with Flex - An upshot



thanks for the kind words, Ralf -- Glad to hear you're finding Flex useful.  Out of curiosity, are you using Flex 1.5, or the Flex 2 alpha?

Thanks,
Ely.





    From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann
    Sent: Friday, December 09, 2005 10:16 AM
    To: flexcoders@yahoogroups.com
    Subject: [flexcoders] First week with Flex - An upshot
   
   

    As we are approaching 7 pm in Germany (where I am based), I just wanted to post a big big big “thank you” to the list. It’s been my first week with Flex and I gotta say: I LOVE IT! My company is currently in the process of evaluating its future strategic direction for thin/rich clients and it was my task to do a quick and dirty port of a fully backend integrated .NET WinForms client to the Flash platform. It’s been a full success and thanks to the Flexcoders list it’s been lots of fun.



    Keep up the good work. I hope to migrate from “just ask” into “provide answers” mode pretty soon.



    Have a nice weekend.



    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








  
  
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] First week with Flex - An upshot

2005-12-09 Thread Ely Greenfield





 
 
thanks for the kind words, Ralf -- Glad to hear you're 
finding Flex useful.  Out of curiosity, are you using Flex 1.5, or the Flex 
2 alpha?
 
Thanks,
Ely.
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ralf 
  RottmannSent: Friday, December 09, 2005 10:16 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] First week with 
  Flex - An upshot
  
  
  As we are approaching 7 pm in 
  Germany (where I am based), I just 
  wanted to post a big big big “thank you” to the list. It’s been my first week 
  with Flex and I gotta say: I LOVE IT! My company is currently in the process 
  of evaluating its future strategic direction for thin/rich clients and it was 
  my task to do a quick and dirty port of a fully backend integrated .NET 
  WinForms client to the Flash platform. It’s been a full success and thanks to 
  the Flexcoders list it’s been lots of fun.
   
  Keep up the good work. I hope to 
  migrate from “just ask” into “provide answers” mode pretty 
  soon.
   
  Have a nice 
  weekend.
   
  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] First week with Flex - An upshot

2005-12-09 Thread JesterXL





Huh?  Dude, just because it's the weekend 
doesn't mean you have to stop playing with Flex!
 
- Original Message - 
From: Ralf 
Rottmann 
To: flexcoders@yahoogroups.com 
Sent: Friday, December 09, 2005 1:15 PM
Subject: [flexcoders] First week with Flex - An upshot


As we are approaching 7 pm in 
Germany (where I am based), I just 
wanted to post a big big big “thank you” to the list. It’s been my first week 
with Flex and I gotta say: I LOVE IT! My company is currently in the process of 
evaluating its future strategic direction for thin/rich clients and it was my 
task to do a quick and dirty port of a fully backend integrated .NET WinForms 
client to the Flash platform. It’s been a full success and thanks to the 
Flexcoders list it’s been lots of fun.
 
Keep up the good work. I hope to 
migrate from “just ask” into “provide answers” mode pretty 
soon.
 
Have a nice 
weekend.
 
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] First week with Flex - An upshot

2005-12-09 Thread Ralf Rottmann










As we are approaching 7 pm in Germany (where I am based), I just
wanted to post a big big big “thank you” to the list. It’s
been my first week with Flex and I gotta say: I LOVE IT! My company is
currently in the process of evaluating its future strategic direction for
thin/rich clients and it was my task to do a quick and dirty port of a fully
backend integrated .NET WinForms client to the Flash platform. It’s been
a full success and thanks to the Flexcoders list it’s been lots of fun.

 

Keep up the good work. I hope to migrate from “just
ask” into “provide answers” mode pretty soon.

 

Have a nice weekend.

 

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.



  











RE: [flexcoders] Change an image dynamically

2005-12-09 Thread Ralf Rottmann










Found it. Needs to be:

 

[Embed(source="images/pic2.gif")]

var _img:String;

this.imgPic1.source = _img;

 

 

 



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:[EMAIL PROTECTED] On Behalf Of Ralf Rottmann
Sent: Freitag, 9. Dezember 2005
18:47
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Change an
image dynamically



 

I have included an image control in my app:

 



 

Next I am trying to programmatically change the image (in an
event handler):

 

[Embed(source="images/pic2.gif")]

var _img:String;

this.imgPic1 = _img as Image;

 

 

However, nothing
happens. Any idea?









--
Flexcoders Mailing 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] Cell Renderers: How to put 2 images in datagrid cell

2005-12-09 Thread Mohanraj Jayaraman
Thanks Philippe. That works.

--- Philippe Maegerman <[EMAIL PROTECTED]> wrote:

> you are putting both images on level 1, that could
> be a reason why they overwrite each other :)
> should be "image1", 1 / "image2", 2
>  
> Philippe
> 
> 
> 
> From: flexcoders@yahoogroups.com on behalf of
> Mohanraj Jayaraman
> Sent: Fri 9/12/2005 2:57
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Cell Renderers: How to put 2
> images in datagrid cell
> 
> 
> 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 
> 
> 
> --
> 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
>  . 
> 
> 
> 
> 
> 
> 
>
--
> **STATEMENT OF CONFIDENTIALITY** 
> 
> This e-mail and any attached files are confidential
> and intended solely for the use of the individual to
> whom it is addressed. If you have received this
> email in error please send it back to the person
> that sent it to you. Any views or opinions presented
> are solely those of author and do not necessarily
> represent those the Emakina Company. Unauthorized
> publication, use, dissemination, forwarding,
> printing or copying of this email and its associated
> attachments is strictly prohibited.
> 
> We also inform you that we have checked that this
> message does not contain any virus but we decline
> any responsability in case of any damage caused by
> an a non detected virus.
>
--
> 
> 


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


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

--
Flexcoders Ma

RE: [flexcoders] passing Map in remote object

2005-12-09 Thread Matt Chotin










It probably was returned as an Object.  We
don’t have a specific HashMap class, instead Object is what you’ll
get and it won’t indicate how many properties there are.  You can however
still iterate through them:

 

var numProps:int = 0;

for (var key:String in obj)

{

  var value = obj[key];

  numProps++;

}

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jgraham_us
Sent: Thursday, December 08, 2005
10:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] passing Map
in remote object



 

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














--
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] Change an image dynamically

2005-12-09 Thread Ralf Rottmann










I have included an image control in my app:

 



 

Next I am trying to programmatically change the image (in an
event handler):

 

[Embed(source="images/pic2.gif")]

var _img:String;

this.imgPic1 = _img as Image;

 

 

However, nothing
happens. Any idea?









--
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] Themes (was TemplateMonster.com)

2005-12-09 Thread Tariq Ahmed






On the topic of themes... I never really looked into themes since that
wasn't a priority. But was thinking it'd be great to start making an
open library of themes for Flex2.

Has anyone produced graphical skins or an entire theme that includes
skins for Flex2?

Has the process changed from 1.5 to 2? In 1.5 from my understanding you
basically modified HaloTheme.fla and exported it to a swc.  I was
reading in 2.0 that you use compc to accomplish it, unfortunately page
567 of the app dev guide has been completed yet which covers 9 slicing.

Thx!

John C. Bland II wrote:
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.
  
  







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

2005-12-09 Thread Matt Chotin










Did you try just swapping the RadioButton
for the CheckBox in the example?

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jagabcdeff
Sent: Thursday, December 08, 2005
11:22 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] RadioButton
in DataGrid



 

Hi,

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

Any help is greatly appreciated.

Jagadeesh














--
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] Size of the container, bug or feature?

2005-12-09 Thread JesterXL
There is a reason _width and _height are private.  Use width and height. 
backgroundColor creates a true background.  Canvas itself has no internal 
parts unless you use that style, therefore, by default it has no _width or 
_height, hence the need for wrapper getter/setters, width and height to hold 
values for setting it's size even though it's true MovieClip values have 
none.


- Original Message - 
From: "Stanislav Zayarsky" <[EMAIL PROTECTED]>
To: 
Sent: Friday, December 09, 2005 12:08 PM
Subject: [flexcoders] Size of the container, bug or feature?


Hello Guys,

Can please someone explain to me next thing, let's review the code:


   function showSize() {
mx.controls.Alert.show(String(cv._width) + "  " + String 
(cv._height));
   }




It shows some numbers > 0. That's ok.

But if we just remove backgroundColor property, then it shows 0,0.

Best regards
Stanislav



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







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

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

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

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

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




[flexcoders] Size of the container, bug or feature?

2005-12-09 Thread Stanislav Zayarsky
Hello Guys,

Can please someone explain to me next thing, let's review the code:


   function showSize() {
mx.controls.Alert.show(String(cv._width) + "  " + String  (cv._height));
   }




It shows some numbers > 0. That's ok.

But if we just remove backgroundColor property, then it shows 0,0.

Best regards
Stanislav


 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] Tab Wraping

2005-12-09 Thread Greg Johnson
I have x tabs.  However its x tabs too many and they get cut off on the 
right hand side.  I would prefer they wrap to a second line 
automaticaly.  Ideas? 


tnks
Greg







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

2005-12-09 Thread sbyrne_dorado
Ah -- hasOwnProperty -- it's not really documented in the 1.5 docs,
only mentioned in one place and then as a "reserved word" that you
should not use.  But it will do the job that I need -- thanks!

I certainly know the difference between undefined and null and how to
tell them apart.  The case I am trying to deal with is "did the client
of this component define an attribute called "foo"?" using initObj.  I
suspect that while "foo" will be there, if it's bound to a component
inline that's not yet been created, it will have the value undefined
as well, so the if test probably wouldn't work (but I'm not 100% sure).  

--- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote:
>
> 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/
 




[flexcoders] Trying to set styleName via setStyle method (Alpha 1)

2005-12-09 Thread Ralf Rottmann










Hi there,

 

In one of my Components I try to use

 

this.setStyle("styleName", _s);

 

where _s is a
String containing the name of a class. However, it seems not to work.

 

this.setStyle("backgroundColor", _s);

 

works perfect. Is
it not possible to programmatically assign a new class to a component at
runtime?

 

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] Ups found it but... (styleName)

2005-12-09 Thread Ralf Rottmann










Ups, just found it.

 

this.styleName = _s;

 

should do it. However if I do assign a new class, the
component does not change…

 

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








  
  
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-09 Thread Rey Bango
You're absolutely right Tolu. My decision will be either 
Flex/Actionscript or .Net.

Since both can be fairly complex, I have to choose one and focus on it.

Rey,..

Tolulope Olonade wrote:
> 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 .
> 
> 
> 
> 


 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] NumberFormatter 's bug ? (Flex1.5)

2005-12-09 Thread Dave Carabetta
On 12/9/05, Yokota Satoshi <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm using NumberFormatter class in ActionScript 2.0 classes.
>
> ---
> var numFormat:NumberFormatter = new NumberFormatter();
> numFormat.precision = 0;
> numFormat.rounding = "down";
> ---
> 
> 1.5 -> 1
> -1.5 -> -2 (funny?)
>
> I know that Oracle and Excel works following things.
> 1.5 -> 1
> -1.5 -> -1
>
> Is that bug or not? Any idea?
>

No, that's not a bug. -2 is the next smallest number to -1.5. I'd be
curious is your Oracle/Excel experiments are truncating the fraction
and simply looking at the "1" and "-1".

Regards,
Dave.


 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] Please Help :: Convert VOB to What for Best FLV?

2005-12-09 Thread Merrill, Jason










Uncompressed AVI has maintained pretty good
quality for me.  Not that you can’t ask here, but for some really good
replies, this is a good question for the Flashcomm list, if you would like to
also ask there – chattyfig.figleaf.com 

 



Jason
Merrill   |   E-Learning Solutions   | 
icfconsulting.com 
























NOTICE:
This message is for the designated recipient only and may 
contain privileged or confidential information. If you have received it in 
error, please notify the sender immediately and delete the original. Any 
other use of this e-mail by you is prohibited.






--
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] rsl load failed

2005-12-09 Thread Roger Gonzalez
> 
> hi everyone,
> 
> Does anyone has ever handle the "rsl load failed" error 
> before? My application works fine, but occasionally, the rsl 
> seemed cannot be loaded. It also occur more frequently from a 
> remote machine. Anyone has any idea?
> 
> Daniel
>  

Unfortunately, but having an application split into multiple pieces, you
are vulnerable to problems if one of those pieces can't be downloaded.
Your best bet is to peruse the server logs or to run a network sniffer
to see if you can find out what the problem is.  Perhaps you're hitting
some sort of connection limit in the server?  It might be possible
(although it would be quite a bit of work) to write your own preloader
that instead of just displaying the message, actually tries to retry
downloading the RSL.

If you're on IE, you can force the RSL to be re-downloaded over the
network by flushing the browser cache.  This might help you reproduce
the issue.

Good luck,

-rg




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

2005-12-09 Thread Carson Hager










Interesting.  The next thing I would do is
verify where the css parser errors are getting loaded from.  WLS should have a
way to turn on classloader tracing so that it will log out the physical location
from where it loaded the classes. See if you can enable that and let me know what
it says.

 


Carson

 



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











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaime Bermudez
Sent: Thursday, December 08, 2005
11:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] URGENT
Problem on Flex installed on BEA WebLogic



 



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 Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com

  
Email: 
[EMAIL PROTECTED]
Office: 
866-CYNERGY ext. 89
Mobile:
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 PM
To: 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.com
Subject: 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. 89
Mobile:
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 PM
To: flexcoders@yahoogroups.com
Subject: [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. Consultant
New Toronto Group, [EMAIL PROTECTED]
Office: 905-897-7790 x4018 Mobile:
416-882-4445
[onRemote] 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/gr

RE: [flexcoders] Confused about namespaces

2005-12-09 Thread Dirk Eismann





you'll have to add another namespace (one per folder), 
i.e.
 
xmlns:dialogs="rottmann.dialogs.*"
 

 
You 
can also create your own manifest file which allows you to include several 
packages under one name (the same way as the mx namespace)
 
Dirk.
 


  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ralf 
  RottmannSent: Friday, December 09, 2005 12:58 PMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Confused about 
  namespaces
  
  
  Quick 
  request:
   
  In my MXML application tag I have 
  included
   
  xmlns:rottmann="*"
   
  I have several MXML Components in 
  a subfolder [app_root]\dialogs
   
  How do I include 
  those?
   
  
   
  Causes 
  a
  Cannot resolve 
   to a component implementation. 
  MainApplication.mxml    
  Projekt_0.2    line 
  407   December 9, 2005 12:55:36 
  PM
  Error at compile 
  time.
  Ralf 
  Rottmann | Director Sales & 
  MarketingVoicInt Telecommunications GmbH | Lindemannstrasse 78 | 44137 
  Dortmund | Germanyp: +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








  
  
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] Comments in source code

2005-12-09 Thread Philippe Maegerman
There is an interesting post titled 'Visual SourceSafe and Flash - How To 
Expand Keywords' that treats this subject too.
http://www.statik1.com/mt-weblog/archives/94.html
 
Philippe



From: flexcoders@yahoogroups.com on behalf of Ralf Rottmann
Sent: Fri 9/12/2005 12:39
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Comments in source code



Thanks Philippe,

 

I was aware of the two comment styles, my question was more about comment 
conventions which might be used to automatically craft dev docs in a later 
version.

 

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:[EMAIL PROTECTED] On Behalf Of 
Philippe Maegerman
Sent: Freitag, 9. Dezember 2005 12:13
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Comments in source code

 

you can use html comments in the mxml code:



 

in Actionscript it's gonna be // for commenting lines and /* */ for commenting 
blocks.

 

Philippe  

 



From: flexcoders@yahoogroups.com on behalf of Ralf Rottmann
Sent: Fri 9/12/2005 12:09
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Comments in source code

I wonder: Are there any specific "rules" for comments which might help to 
automatically assemble code doc later? Anything like

 

// @Parameters:theNumber:Number  The number of loops to be done

 

...

 

?

 

 

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 




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 


[flexcoders] unsubscribe

2005-12-09 Thread Michel Jansen
unsubscribe


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

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

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

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

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




[flexcoders] Confused about namespaces

2005-12-09 Thread Ralf Rottmann










Quick request:

 

In my MXML application tag I have included

 

xmlns:rottmann="*"

 

I have several MXML
Components in a subfolder [app_root]\dialogs

 

How do I include
those?

 



 

Causes a

Cannot resolve  to a
component implementation. MainApplication.mxml    Projekt_0.2    line 407   December
9, 2005 12:55:36 PM

Error at compile time.

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








  
  
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] Comments in source code

2005-12-09 Thread Steven Webster





Guys,
 
There are a number of ASDoc style tools that are freely and 
commercially available for ActionScript, that will perform JavaDoc style 
documentation, using the /** ... */ comment style, and tags such as @author, 
@description, etc.
 
Prior to joining Macromedia/Adobe, we successfully used 
AS2Doc (http://www.as2doc.com) to deliver 
API-level documentation from MXML and ActionScript 2.0 source.  I know 
there are other tools (I remember people talking about NaturalDocs -- perhaps 
Aral Balkan can provide more detail, I know he championed this for a while) as 
an alternative that they liked, but AS2Doc "did what it said on the tin" for 
me.
 
Perhaps that's what you're looking for 
?
 
Best,
 
Steven
 
--
Steven 
Webster
Practice Director (Rich 
Internet Applications)
Adobe Consulting 
EMEA
 
Office: + 44 (0) 131 338 
6108
Mobile: +44 (0) 7917 428 
947
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Nick 
  WeekesSent: 09 December 2005 11:45To: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Comments in 
  source code
  
  Ralf, do you mean the Visual 
  Studio ability to generate html pages from code comments, which is really 
  useful for auto-documenting code?
   
  I dont think there is a Flex 
  equivalent of the /// tag found in visual studio.
  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ralf 
  RottmannSent: 09 December 2005 11:40To: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Comments in 
  source code
  
  
  Thanks 
  Philippe,
   
  I was aware of the 
  two comment styles, my question was more about comment conventions which might 
  be used to automatically craft dev docs in a later 
  version.
   
  
  Ralf 
  Rottmann | 
  Director Sales & Marketing | VoicInt Telecommunications 
  GmbHm:+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 Philippe 
  MaegermanSent: Freitag, 9. 
  Dezember 2005 12:13To: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Comments in 
  source code
   
  
  
  you can use html 
  comments in the mxml code:
  
  
  
   
  
  in Actionscript it's gonna be // 
  for commenting lines and /* */ for commenting 
  blocks.
  
   
  
  Philippe  
  
   
  
  
  
  From: 
  flexcoders@yahoogroups.com on 
  behalf of Ralf RottmannSent: Fri 9/12/2005 12:09To: flexcoders@yahoogroups.comSubject: [flexcoders] Comments in source 
  code
  
  I wonder: Are there any specific 
  “rules” for comments which might help to automatically assemble code doc 
  later? Anything like
   
  // 
  @Parameters:    
  theNumber:Number  The number of loops to be 
  done
   
  …
   
  ?
   
   
  Ralf 
  Rottmann | Director Sales & 
  MarketingVoicInt Telecommunications GmbH | Lindemannstrasse 78 | 44137 
  Dortmund | Germanyp: 
  +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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  SPONSORED 
  LINKS 
  
  


  
Web 
site design development 
  
Computer 
software development 
  
Software 
design and development 

  
Macromedia 
flex 
  
Software 
development best practice 
  
 
   
  
  
  
  YAHOO! GROUPS 
  LINKS 
  
   
  
 Visit your group 
"flexcoders" on the 
web.  
 To unsubscribe 
from this group, send an email to: [EMAIL PROTECTED]  

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





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Comments in source code

2005-12-09 Thread Nick Weekes





Ralf, do you mean the Visual Studio ability to 
generate html pages from code comments, which is really useful for 
auto-documenting code?
 
I dont think there is a Flex equivalent of the /// tag 
found in visual studio.


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Ralf 
RottmannSent: 09 December 2005 11:40To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Comments in 
source code


Thanks 
Philippe,
 
I was aware of the two 
comment styles, my question was more about comment conventions which might be 
used to automatically craft dev docs in a later 
version.
 

Ralf 
Rottmann | Director 
Sales & Marketing | VoicInt Telecommunications 
GmbHm:+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 Philippe 
MaegermanSent: Freitag, 9. 
Dezember 2005 12:13To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Comments in 
source code
 


you can use html 
comments in the mxml code:



 

in Actionscript it's gonna be // 
for commenting lines and /* */ for commenting 
blocks.

 

Philippe  

 



From: 
flexcoders@yahoogroups.com on behalf 
of Ralf RottmannSent: Fri 9/12/2005 12:09To: flexcoders@yahoogroups.comSubject: [flexcoders] Comments in source 
code

I wonder: Are there any specific 
“rules” for comments which might help to automatically assemble code doc later? 
Anything like
 
// 
@Parameters:    
theNumber:Number  The number of loops to be 
done
 
…
 
?
 
 
Ralf 
Rottmann | Director Sales & 
MarketingVoicInt Telecommunications GmbH | Lindemannstrasse 78 | 44137 
Dortmund | Germanyp: 
+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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 


SPONSORED LINKS 

  
  

  Web 
  site design development 

  Computer 
  software development 

  Software 
  design and development 
  

  Macromedia 
  flex 

  Software 
  development best practice 

   
 



YAHOO! GROUPS 
LINKS 

 

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



 





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





  




  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Comments in source code

2005-12-09 Thread Ralf Rottmann










Thanks Philippe,

 

I was aware of the two comment styles, my
question was more about comment conventions which might be used to
automatically craft dev docs in a later version.

 



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 Philippe Maegerman
Sent: Freitag, 9. Dezember 2005
12:13
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Comments
in source code



 





you can use html comments in the mxml
code:











 





in Actionscript it's gonna be // for commenting lines
and /* */ for commenting blocks.





 





Philippe  







 







From: flexcoders@yahoogroups.com on behalf of Ralf Rottmann
Sent: Fri 9/12/2005 12:09
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Comments in
source code





I wonder: Are there any specific “rules” for
comments which might help to automatically assemble code doc later? Anything
like

 

//
@Parameters:   
theNumber:Number  The number of loops to be done

 

…

 

?

 

 

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







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] NumberFormatter 's bug ? (Flex1.5)

2005-12-09 Thread Yokota Satoshi
Hi,

I'm using NumberFormatter class in ActionScript 2.0 classes.

---
var numFormat:NumberFormatter = new NumberFormatter();
numFormat.precision = 0;
numFormat.rounding = "down";
---

1.5 -> 1
-1.5 -> -2 (funny?)

I know that Oracle and Excel works following things.
1.5 -> 1
-1.5 -> -1

Is that bug or not? Any idea?

Best regards,
Yokota Satoshi




 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] Parsing XML with namespaces in E4X (Flex2)

2005-12-09 Thread Yokota Satoshi
Hi claus , abdul

Thanks for your advice!  It works well. I could parse rdf,rss.

Thanks,
Satoshi

Abdul Qabiz wrote:
> Hi,
> 
> Use "default xml namespace" directive to solve this problem.  Sorry, it 
> is not documented in current livedocs for Flex 2 alpha…We are working 
> many things, so hopefully you would see it updated soon...
> 
> *Solution:*
> 
> var nsDefault:Namespace = new Namespace("http://example.com/";);
> 
> var res:XML = http://example.com/";>
> appleorange
>   ;
> 
> default xml namespace = nsDefault;  //or default xml namespace = 
> "_http://example.com/_";;
> 
> trace(res.item[0]);
> 
> 
> *Another way of adding namespace to all XML objects*
> 
> var nsDefault:Namespace = new Namespace("http://example.com/";);
> default xml namespace = nsDefault;
> var res:XML = appleorange;
>
> trace(res.namespace()); //traces -> _http://example.com/_
>
> trace(res.item[0]);
> 
> 
> *Note: You know undocumented are subject to change. But I wanted to let 
> you know that there is something which solves this issue.*
> 
> *What "default xml namespace" does?*
> 
> The default xml namespace directive sets the default namespace to use 
> for XML objects.
> 
> Without setting default xml namespace, the default namespace is the 
> unnamed namespace (with the URI set to an empty string). The scope of a 
> default xml namespace declaration is within a function block, like the 
> scope of a variable:.
> 
> 
> Hope that helps.
> 
> 
> 
> -abdul
> 
> 
> 
> 
>  
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [_mailto:[EMAIL PROTECTED] 
> On Behalf Of Yokota Satoshi
> Sent: Saturday, December 03, 2005 2:51 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Parsing XML with namespaces in E4X (Flex2)
> 
> Hi,
> 
> Is there a way in which I could parse XML with namespaces in E4X?
> 
> following code, I can see the value without namespace.
> 
> var res:XML = appleorange;
> trace(res.item[0]);
> 
> but, following code, I could'nt.
> 
> var res:XML = http://example.com/";>
> appleorange
>   ;
> trace(res.item[0]);
> 
> 
> Thanks,
> Yokota Satoshi
> 
> 
> 
> 
> -- 
> Flexcoders Mailing List
> FAQ: _http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt_
> Search Archives: _http://www.mail-archive.com/flexcoders%40yahoogroups.com_
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> 
> 
> 
> SPONSORED LINKS
> Web site design development 
> 
>  
>   Computer software development 
> 
>  
>   Software design and development 
> 
>  
> 
> Macromedia flex 
> 
>  
>   Software development best practice 
> 
>  
> 
> 
> 
> 
> YAHOO! GROUPS LINKS
> 
> *  Visit your group "flexcoders
>   " on the web.
>
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>   
>
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
> 
> 
> 
> 




 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

RE: [flexcoders] Comments in source code

2005-12-09 Thread Philippe Maegerman
you can use html comments in the mxml code:

 
in Actionscript it's gonna be // for commenting lines and /* */ for commenting 
blocks.
 
Philippe  



From: flexcoders@yahoogroups.com on behalf of Ralf Rottmann
Sent: Fri 9/12/2005 12:09
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Comments in source code



I wonder: Are there any specific "rules" for comments which might help to 
automatically assemble code doc later? Anything like

 

// @Parameters:theNumber:Number  The number of loops to be done

 

...

 

?

 

 

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 




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 
 . 






--
**STATEMENT OF CONFIDENTIALITY** 

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

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



 Yahoo! Groups Sponsor ~--> 
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] Comments in source code

2005-12-09 Thread Ralf Rottmann










I wonder: Are there any specific “rules” for
comments which might help to automatically assemble code doc later? Anything
like

 

// @Parameters:    theNumber:Number  The
number of loops to be done

 

…

 

?

 

 

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








  
  
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] rsl load failed

2005-12-09 Thread Dan
hi everyone,

Does anyone has ever handle the "rsl load failed" error before? My
application works fine, but occasionally, the rsl seemed cannot be
loaded. It also occur more frequently from a remote machine. Anyone
has any idea?

Daniel







 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] what's wrong?

2005-12-09 Thread wizardzju
I want Flex to connumicate with JavaScript using codes below. It can 
work well in firefox and maxthon. But in IE, it said "SecurityError: 
Error #2060: Security sandbox violation". Can you tell me why? 
Thanks a lot!

test.mxml

http://www.macromedia.com/2005/mxml";  
creationComplete="initApp()">

import flash.external.*;
import flash.system.Security;
public function callWrapper():Void {
var f:String = "callByFlex";
 var m:String = ExternalInterface.call(f,"New 
Title");}
public function initApp(): Void {
Security.allowDomain("*");
}




test.html



test

body { margin: 0px;
 overflow:hidden }




function callByFlex(a) {
alert(a);
}













document.write("");
document.write("");
document.write("");
document.write("");
document.write("");















 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] Cell Renderers: How to put 2 images in datagrid cell

2005-12-09 Thread Philippe Maegerman
you are putting both images on level 1, that could be a reason why they 
overwrite each other :)
should be "image1", 1 / "image2", 2
 
Philippe



From: flexcoders@yahoogroups.com on behalf of Mohanraj Jayaraman
Sent: Fri 9/12/2005 2:57
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Cell Renderers: How to put 2 images in datagrid cell


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 


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






--
**STATEMENT OF CONFIDENTIALITY** 

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

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



 Yahoo! Groups Sponsor ~--> 
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/
 
<>