Re: [flexcoders] Re: Logging API

2009-09-15 Thread Sönke Rohde

Ah, ok, then I mixed it up, sorry.

On 15.09.2009, at 15:39, reflexactions wrote:


Oh Really ??

I thought that was just for adding an ILoggingTarget not an ILogger.

I am very sceptical of how that could work but I will give it a try.

--- In flexcoders@yahoogroups.com, Sönke Rohde   
wrote:

>
> You can add your own logger with Log.addTarget(yourLoggerInstance)  
or

> simply define it in MXML like here: 
http://soenkerohde.com/2008/08/sos-logging-target/
>
>
> On 15.09.2009, at 10:44, reflexactions wrote:
>
> > Am I missing something or as much as I can write a class that
> > implements ILogger there is no way to actually use it?
> >
> > I can't see anyway to specify the ILogger to be used and Log just
> > uses LogLogger by default, as per usual all the variables are
> > private in Log so can't be accessed, the class is static so cant  
be
> > overriden, so the only option seems to be to clone the Log class  
and

> > then just not use Log anywhere in our apps??
> >
> > Also once logging a category there is no way to stop short of
> > calling flush and dumping everything?
> >
> >
> >
>







Re: [flexcoders] Logging API

2009-09-15 Thread Sönke Rohde
You can add your own logger with Log.addTarget(yourLoggerInstance) or  
simply define it in MXML like here: http://soenkerohde.com/2008/08/sos-logging-target/



On 15.09.2009, at 10:44, reflexactions wrote:

Am I missing something or as much as I can write a class that  
implements ILogger there is no way to actually use it?


I can't see anyway to specify the ILogger to be used and Log just  
uses LogLogger by default, as per usual all the variables are  
private in Log so can't be accessed, the class is static so cant be  
overriden, so the only option seems to be to clone the Log class and  
then just not use Log anywhere in our apps??


Also once logging a category there is no way to stop short of  
calling flush and dumping everything?








RE: [flexcoders] Re: FLV Duration

2006-12-05 Thread Sönke Rohde
Hi,

If it was not encoded with metadata why not inject that metadata with
FLVTool2?
If there is no metadata you will not be able to get the duration. Another
possibility would be to use the print command of FLVTool2 to determine the
duration instead of injecting it.

Cheers,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11
> Sent: Tuesday, December 05, 2006 6:32 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: FLV Duration
> 
> again, only works if the flv was encoded correctly with the metadata
> 
> --- In flexcoders@yahoogroups.com, "Matt Horn" <[EMAIL PROTECTED]> wrote:
> >
> > If you're using the VideoDisplay component, you can get the 
> length of
> > the FLV file using the totalTime property. 
> > 
> > hth,
> > matt horn
> > flex docs 
> > 
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com 
> > > [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11
> > > Sent: Monday, December 04, 2006 4:13 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] FLV Duration
> > > 
> > > Is there an easy way to figure out the duration of an FLV 
> > > thati s being played? I have been looking at the NetStream 
> > > object and the onMetaData event, but it seems like the FLV 
> > > does not always have the metadata set. The FLVs I want to 
> > > play are created my other people, so there is no way to force 
> > > them to add the metadata. is there any way to easily get 
> around this?
> > > 
> > > 
> > > 
> > >  
> > >
> >
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 



RE: [flexcoders] flv playback

2006-12-04 Thread Sönke Rohde
Hi John,

You could use CuePoints for this purpose. Encode your video with navigation
cuepoints (which sit on keyframes) and you can read out the CuePoints after
the FLV is loaded.

Cheers,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11
> Sent: Sunday, December 03, 2006 10:39 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] flv playback
> 
> I want to be able to play an flv file and provide controls to jump to 
> a specific frame in the flv.  Currently i am using the VideoDisplay, 
> but everything it does is based on times (playhead time).  I noticed 
> that actionscript 2 had controls such as flvplayback and objects like 
> the videoplayer that provided operations such as these, are there 
> equivalents in actionscript 3?  if not does anyone know of 
> another way 
> to do something like this?  Thanks for the help,
> 
> John
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 



RE: [flexcoders] Re: Flex 2 Charting align Axis

2006-12-03 Thread Sönke Rohde
Hi Tim,
 
I already read about the "second"-thing with charting but did not realize
that I could solve my problem with it.
thanks a lot.
 
Cheers,
Sönke


  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tim Hoff
Sent: Sunday, December 03, 2006 6:09 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex 2 Charting align Axis



Absolutely,

In addition to series, dataProvider, horizontalAxis and verticalAxis,, a
chart can also have a secondSeries, secondDataProvider, secondHorizontalAxis
and secondVerticalAxis.  This gives you the ability to display different
series types on the same chart.  

As an example, for a soccer tournament chart, you might want to show a
ColumnSeries for the number of team wins.  This chart would have the team
names (categoryField) on the horizontalAxis (bottom) and the number of wins
(yField) on the verticalAxis (left).  In addition, you might want to show a
PlotSeries of the average score (second yField) for the team names (same
categoryField).  Simply add a secondSeries, secondVerticalAxis and
secondDataProvider (same collection).  Now, you basically have two charts in
one.  The secondVerticalAxis (right) has labels for number of wins, that are
associated with the PlotSeries dataPoints.  Because the categoryFields are
the same for both series', the plots and columns will line up for each team.

-TH

--- In flexcoders@yahoogroups.com, Sönke Rohde <[EMAIL PROTECTED]> wrote:
>
> Hey Tim,
> 
> Thanks a lot. This was obvious ;)
> Anyway is it possible to have multiple axis for e.g. a Plotchart which
means
> on horizontal axis on the top and one on the bottom?
> 
> Cheers,
> Sönke
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff
> > Sent: Saturday, December 02, 2006 6:29 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Re: Flex 2 Charting align Axis
> > 
> > 
> > Hi Sönke,
> > 
> > I had the same question a while ago. Ely was nice enough to point out
> > the obvoius.
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > -TH
> > 
> > --- In flexcoders@yahoogroups.com, Sönke Rohde mail@ wrote:
> > >
> > > Hi,
> > >
> > > How do I align my Axis e.g. I'd like to have to horizontal 
> > axis on the
> > top
> > > instead on the bottom and the vertical axis on the right instead of
> > left.
> > >
> > > Thanks and Cheers,
> > > Sönke
> > >
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> > Yahoo! Groups Links
> > 
> > 
> > 
> >
>


 



RE: [flexcoders] Re: Flex 2 Charting align Axis

2006-12-03 Thread Sönke Rohde
Hey Tim,

Thanks a lot. This was obvious ;)
Anyway is it possible to have multiple axis for e.g. a Plotchart which means
on horizontal axis on the top and one on the bottom?

Cheers,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff
> Sent: Saturday, December 02, 2006 6:29 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Flex 2 Charting align Axis
> 
> 
> Hi Sönke,
> 
> I had the same question a while ago.  Ely was nice enough to point out
> the obvoius.
> 
> 
>
> 
> 
> 
>  
> 
> 
> -TH
> 
> --- In flexcoders@yahoogroups.com, Sönke Rohde <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > How do I align my Axis e.g. I'd like to have to horizontal 
> axis on the
> top
> > instead on the bottom and the vertical axis on the right instead of
> left.
> >
> > Thanks and Cheers,
> > Sönke
> >
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing 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] Flex 2 Charting align Axis

2006-12-02 Thread Sönke Rohde
Hi,

How do I align my Axis e.g. I'd like to have to horizontal axis on the top
instead on the bottom and the vertical axis on the right instead of left.

Thanks and Cheers,
Sönke



RE: [flexcoders] Flex 2 Charting dynamic backgroundElements

2006-12-02 Thread Sönke Rohde
Hi Ely,
 
again thanks a lot. This was exactly what I was looking for.
 
Cheers,
Sönke


  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ely Greenfield
Sent: Tuesday, November 28, 2006 6:19 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2 Charting dynamic backgroundElements


 
 
 
You mean it's in front of the gridlines?
 
The gridlines that appear in charts by default is really just another
backgroundElement.  by default, each chart creates a single instance of the
mx.charts.GridLines class, and inserts it into the backgroundElements array.
If you set your own background elements, you end up overriding the default.
But if you still want Gridlines, you can explicitly create your own
gridlines instance in the backgroundElements:
 
 

   


   
   ...
 
 
You can put it in front or behind your other background elements by changing
the order in the array (i.e., in the MXML).
 
Ely.
 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sönke Rohde
Sent: Tuesday, November 28, 2006 12:09 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2 Charting dynamic backgroundElements





Hi Ely,
 
thank you for your detailed answer and the code examples.
This was not exactly what I am looking for but gave me the hints to solve my
problem.
The key is that your backgroundElement extends ChartingElement.
 
But now I have got the problem that the backgroundElement is in front of the
PlotChart lines.
How can I swap them?
 
Again thanks a lot,
Sönke


  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ely Greenfield
Sent: Monday, November 20, 2006 7:15 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2 Charting dynamic backgroundElements


 
Hi Sonke (sorry, can't figure out how to type an umlaud (sp?) on an American
keyboard ):
 
It sounds like your problem is a prime candidate for a custom background
element.  If your shapes depend on the min max of the axes, that probably
means you want to annotate/illustrate a particular data value/range, yes?
Any time you're trying to draw data values, you should really be creating a
chart element (that's pretty much what they're there for). That means a
series, a backgroundElement, or an annotationElement.
 
 
I've attached a simple example of a custom background element that takes a
series of data values and draws matching bands in the background. It should
give you a starting point for what you're trying to do.
 
Ely.
 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sönke Rohde
Sent: Sunday, November 19, 2006 6:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Charting dynamic backgroundElements



Hi,

I have to draw shapes and lines into the background of a Plotchart.
The size/position of the shapes and lines depends on the minimum and maximum
of the horizontal and vertical linear axis.

My first try was to use the backgroundElements to solve this problem.
I created a shape, drawed a polygon on it and added it to the
backgroundElements:

var shape:Shape = new Shape();
var gr:Graphics = shape.graphics;
gr.moveTo(0, 20);
gr.beginFill(0xFF9900, 50);
gr.lineTo(0, 0);
gr.lineTo(100, 0);
gr.lineTo(100, 100);
gr.lineTo(0, 20);
gr.endFill();

backgroundElements.reverse();
backgroundElements.push( shape );

I reversed the array to keep the GridLines in the front.
The polygon is visible in the background but it is scaled to fit the size of
the PlotChart.
The shape has to keep its scaling.

How do I know the width/height of the PlotChart content area?
With this information and the min/max of the x/y axis I am able to do the
drawing.

Any hint is very appreciated.

Cheers,
Sönke







 



RE: [flexcoders] Flex 2 Charting dynamic backgroundElements

2006-11-28 Thread Sönke Rohde
Hi Ely,
 
thank you for your detailed answer and the code examples.
This was not exactly what I am looking for but gave me the hints to solve my
problem.
The key is that your backgroundElement extends ChartingElement.
 
But now I have got the problem that the backgroundElement is in front of the
PlotChart lines.
How can I swap them?
 
Again thanks a lot,
Sönke


  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ely Greenfield
Sent: Monday, November 20, 2006 7:15 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex 2 Charting dynamic backgroundElements


 
Hi Sonke (sorry, can't figure out how to type an umlaud (sp?) on an American
keyboard ):
 
It sounds like your problem is a prime candidate for a custom background
element.  If your shapes depend on the min max of the axes, that probably
means you want to annotate/illustrate a particular data value/range, yes?
Any time you're trying to draw data values, you should really be creating a
chart element (that's pretty much what they're there for). That means a
series, a backgroundElement, or an annotationElement.
 
 
I've attached a simple example of a custom background element that takes a
series of data values and draws matching bands in the background. It should
give you a starting point for what you're trying to do.
 
Ely.
 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sönke Rohde
Sent: Sunday, November 19, 2006 6:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Charting dynamic backgroundElements



Hi,

I have to draw shapes and lines into the background of a Plotchart.
The size/position of the shapes and lines depends on the minimum and maximum
of the horizontal and vertical linear axis.

My first try was to use the backgroundElements to solve this problem.
I created a shape, drawed a polygon on it and added it to the
backgroundElements:

var shape:Shape = new Shape();
var gr:Graphics = shape.graphics;
gr.moveTo(0, 20);
gr.beginFill(0xFF9900, 50);
gr.lineTo(0, 0);
gr.lineTo(100, 0);
gr.lineTo(100, 100);
gr.lineTo(0, 20);
gr.endFill();

backgroundElements.reverse();
backgroundElements.push( shape );

I reversed the array to keep the GridLines in the front.
The polygon is visible in the background but it is scaled to fit the size of
the PlotChart.
The shape has to keep its scaling.

How do I know the width/height of the PlotChart content area?
With this information and the min/max of the x/y axis I am able to do the
drawing.

Any hint is very appreciated.

Cheers,
Sönke



 



[flexcoders] Flex 2 Charting dynamic backgroundElements

2006-11-19 Thread Sönke Rohde
Hi,

I have to draw shapes and lines into the background of a Plotchart.
The size/position of the shapes and lines depends on the minimum and maximum
of the horizontal and vertical linear axis.

My first try was to use the backgroundElements to solve this problem.
I created a shape, drawed a polygon on it and added it to the
backgroundElements:

var shape:Shape = new Shape();
var gr:Graphics = shape.graphics;
gr.moveTo(0, 20);
gr.beginFill(0xFF9900, 50);
gr.lineTo(0, 0);
gr.lineTo(100, 0);
gr.lineTo(100, 100);
gr.lineTo(0, 20);
gr.endFill();

backgroundElements.reverse();
backgroundElements.push( shape );

I reversed the array to keep the GridLines in the front.
The polygon is visible in the background but it is scaled to fit the size of
the PlotChart.
The shape has to keep its scaling.

How do I know the width/height of the PlotChart content area?
With this information and the min/max of the x/y axis I am able to do the
drawing.

Any hint is very appreciated.

Cheers,
Sönke



[flexcoders] LineSeries Stroke with special colorfamiliy

2006-11-06 Thread Sönke Rohde
Hi,

I have to change the default weight of a LineChart Series (LineSeries).
When setting the new "Stroke"-style I also have to set a new color but I
want to keep the default one.
How do I do that?
As the color itself is of no importance I tried to use a random color
(Math.random() * 0xff) but the resulting colors look a kind of ugly. It
would look better to take e.g. websave colors.

Anyone ran into something similar?

Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Logging with SOS

2006-11-06 Thread Sönke Rohde
Hi,

If you like to log with SOS I have build two little classes to log from
Flex/AS3:
http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/

It is very simple but will be extended in the future.

Cheers,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: [S] RE: [flexcoders] Unable to build application from flex buider

2006-11-04 Thread Sönke Rohde
It cleans the project ;)

Help->Help Contents->Enter "Project clean" and Go:

>From the help:
Performing a clean build
After a project has been built, subsequent builds affect only the resources
that have been added or modified. To force the Flex Builder compiler to
rebuild all resources in a project, you can perform a clean build. You might
perform a clean build if, for example, you want to eliminate all potential
sources of a problem you encountered when testing your application. 

To perform a clean build:
Select Project > Clean from the main menu. 
The Clean dialog box appears. 

Select the project (or projects) whose build files you want to discard and
rebuild from scratch. 
Click OK. 


Cheers,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Dkerr
> Sent: Saturday, November 04, 2006 6:04 PM
> To: flexcoders@yahoogroups.com
> Subject: [S] RE: [flexcoders] Unable to build application 
> from flex buider
> 
> What does Clean do?  Just curious.
> Don
> 
> -Original message-
> From: Sönke Rohde [EMAIL PROTECTED]
> Date: Sat, 04 Nov 2006 11:49:01 -0600
> To: flexcoders@yahoogroups.com
> Subject: [S] RE: [flexcoders] Unable to build application 
> from flex buider
> 
> > Hi,
> > 
> > Try Project->Clean and a restart of Flex Builder will do no harm.
> > 
> > Cheers,
> > Sönke 
> > 
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com 
> > > [mailto:[EMAIL PROTECTED] On Behalf Of teamria
> > > Sent: Saturday, November 04, 2006 1:11 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Unable to build application from flex buider
> > > 
> > > Hello Group,
> > > 
> > > I am facing problems while deploying application from 
> flex builder. I
> > > am getting message "File not found in bin directory". 
> Files are not
> > > getting complile nor generated in Bin folder of the 
> project. Please
> > > help me.
> > > 
> > > Thanks in advance
> > > vijay
> > > 
> > > 
> > > 
> > > 
> > > --
> > > Flexcoders Mailing List
> > > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives: 
> > > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> > > Yahoo! Groups Links
> > > 
> > > 
> > > 
> > > 
> > > 
> > 
> > 
> > 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 
> 



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

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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Unable to build application from flex buider

2006-11-04 Thread Sönke Rohde
Hi,

Try Project->Clean and a restart of Flex Builder will do no harm.

Cheers,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of teamria
> Sent: Saturday, November 04, 2006 1:11 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Unable to build application from flex buider
> 
> Hello Group,
> 
> I am facing problems while deploying application from flex builder. I
> am getting message "File not found in bin directory". Files are not
> getting complile nor generated in Bin folder of the project. Please
> help me.
> 
> Thanks in advance
> vijay
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 
> 



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

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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Configure what is copied to bin?

2006-10-29 Thread Sönke Rohde





Hi Igor,
 
I already saw the "Copy non-embedded files to output 
directory"-flag but that's not exact what I was looking for. I need the feature 
that resources are copied to bin but I would like to configure which of them. 
Often I have documentation and layout in my project which sould not be 
copied into bin.
But as it looks this isn't possible only all or 
nothing.
 
Cheers,
Sönke
 



From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Igor CostaSent: Sunday, October 29, 2006 2:25 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Configure what is 
copied to bin?

  Isn't so smart, it's because you choose the Build Automaticly than 
  each file in the project directory it's copied in to bin .So, How to 
  change that, just change the Ant in the project. Using the Window Preferences, 
  "Flex compiler". Regards.
  On 10/27/06, Sönke 
  Rohde <[EMAIL PROTECTED]> wrote: 
  




Hi,How can I control which files and directories from a Flex 
project are copiedto the bin directory?The Flex Builder is already 
so smart that the directory containing the codeisn't copied but how can 
I configure this stuff?Thanks,Sönke-- 
  Igor Costawww.igorcosta.com  
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Configure what is copied to bin?

2006-10-27 Thread Sönke Rohde
Hi,

How can I control which files and directories from a Flex project are copied
to the bin directory?
The Flex Builder is already so smart that the directory containing the code
isn't copied but how can I configure this stuff?

Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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: ItemRenderer - Which dataField from DataGridColumn?

2006-10-27 Thread Sönke Rohde





Hi Tim,
 
thanks for the answer!
It would have been helpful if you also said that the 
interface mx.controls.listClasses.IDropInListItemRenderer has to be implemented 
but now I got it working.
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Tim 
  HoffSent: Friday, October 27, 2006 5:19 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Re: ItemRenderer - 
  Which dataField from DataGridColumn?
  
  Hi Sönke,
  You can get the name of the field with the 
  following code.  From there you can adjust your itemRenderer 
  conditionally.if (listData) 
  {    var myListData:DataGridListData = 
  DataGridListData(listData);var fieldName : String 
  = myListData.dataField;}
  don't forget the  import:
  import 
  mx.controls.dataGridClasses.DataGridListData;
  -TH__
  Tim 
  HoffCynergy Systems, 
  Inc.http://www.cynergysystems.comOffice: 
  866-CYNERGY --- In flexcoders@yahoogroups.com, 
  Sönke Rohde <[EMAIL PROTECTED]> wrote:>> Hi,> > I 
  need to access the reference to the DataGridColumn within an custom> 
  ItemRenderer which is implemented via MXML.> Do I have to extend a 
  special class for my ItemRenderer or can I acccess it> via 
  "parent"?> When I trace the parent in my ItemRenderer I get 
  e.g.> "ListBaseContentHolder7".> What I need to no is which 
  dataField has to be rendered within my> ItemRenderer so I can access 
  the right value in my ValueObject.> > Here the MXML for the 
  DataGridColumn:> > itemRenderer="CustomItemRenderer"> 
  />> So how do I know within the class CustomItemRenderer that the 
  dataField is> "example"?> > Thanks,> 
  Sönke> 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] ItemRenderer - Which dataField from DataGridColumn?

2006-10-26 Thread Sönke Rohde
Hi,

I need to access the reference to the DataGridColumn within an custom
ItemRenderer which is implemented via MXML.
Do I have to extend a special class for my ItemRenderer or can I acccess it
via "parent"?
When I trace the parent in my ItemRenderer I get e.g.
"ListBaseContentHolder7".
What I need to no is which dataField has to be rendered within my
ItemRenderer so I can access the right value in my ValueObject.

Here the MXML for the DataGridColumn:

So how do I know within the class CustomItemRenderer that the dataField is
"example"?

Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] MXML ItemRenderer and dataTip

2006-10-26 Thread Sönke Rohde
Hi,

Thanks, so I can stop searching and dig into Tooltip.

Cheers,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann
> Sent: Thursday, October 26, 2006 11:02 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] MXML ItemRenderer and dataTip
> 
> Hi,
>  
> dataTips don't work when you use a custom item renderer. Your 
> best bet would be to set the toolTip property on your item 
> renderer class.
>  
> Dirk.
> 
> 
> 
> Von: flexcoders@yahoogroups.com im Auftrag von Sönke Rohde
> Gesendet: Do 26.10.2006 20:41
> An: flexcoders@yahoogroups.com
> Betreff: [flexcoders] MXML ItemRenderer and dataTip
> 
> 
> 
> Hi,
> 
> How do I enable the dataTip in a custom MXML ItemRenderer 
> like e.g. this
> one?
> 
> 
> http://www.adobe.com/2006/mxml";
> width="100%" height="100%"
> backgroundColor="0xEE"
> creationComplete="init();"
> >
>
> 
> 
> 
>
> 
> 
> 
> Thanks,
> Sönke
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
> 



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

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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] MXML ItemRenderer and dataTip

2006-10-26 Thread Sönke Rohde
Hi,

How do I enable the dataTip in a custom MXML ItemRenderer like e.g. this
one?


http://www.adobe.com/2006/mxml";
width="100%" height="100%"
backgroundColor="0xEE"
creationComplete="init();"
>








Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Flex Charting and showDataEffect rearrangeData - Bug?

2006-10-23 Thread Sönke Rohde
Hi,

I have got a PlotChart and the showEffect rearrangeData works as expected,
when I define all within my main application mxml.
When I put the Plotchart in a custom mxml and include this in my main
application mxml all looks fine except the effect does not show up anymore.

Is this a known issue?
I guess it should not be common practise to define all in the main mxml.

Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Bin folder removed - how to restore

2006-10-09 Thread Sönke Rohde





I tried deleting the contents of bin again, cleaned the 
project, restartet even windows and started flex and now I again get the 
message, that the html is missing.
Here is something wrong and does not work very trustable. I 
this a common bug/issue?
How do I resolve this?

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Jason 
  HawrylukSent: Monday, October 09, 2006 12:03 PMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Bin folder 
  removed - how to restore
  
  Try 
  re starting Flex builder, and then clean again.
   
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
de Sönke RohdeEnvoyé : lundi 9 octobre 2006 
11:54À : flexcoders@yahoogroups.comObjet : 
RE: [flexcoders] Bin folder removed - how to restore


that worked, thanks.
anyway I still have the problem that my changes to mxml 
are not in the new compiled version? I still see an older 
version.
How do I force to compile the new 
one?
 
Thanks,
Sönke

  
  
  From: [EMAIL PROTECTED]ups.com 
  [mailto:flexcoders@yahoogroups.com] On Behalf Of Jason 
  HawrylukSent: Monday, October 09, 2006 11:43 AMTo: 
  [EMAIL PROTECTED]ups.comSubject: RE: [flexcoders] Bin 
  folder removed - how to restore
  
  Project-Clean
   
  
-Message d'origine-De : 
[EMAIL PROTECTED]ups.com 
[mailto:flexcoders@yahoogroups.com]De la part de Sönke 
RohdeEnvoyé : lundi 9 octobre 2006 
11:32À : 
[EMAIL PROTECTED]ups.comObjet : [flexcoders] Bin 
folder removed - how to restore

Hi,I had a problem that I recompiled my application but 
changes where notvisible.So I decided to remove the contents of 
the bin (output) folder to let Flexcompile all new.Now when I 
try to Run or Debug I get the error message that the html-filesis 
missing which is of course true because I removed it.How do I 
make Flex to build all new and to recreate the contents of the 
binfolder?Thanks,Sönke
 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Bin folder removed - how to restore

2006-10-09 Thread Sönke Rohde





that worked, thanks.
anyway I still have the problem that my changes to mxml are 
not in the new compiled version? I still see an older 
version.
How do I force to compile the new one?
 
Thanks,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Jason 
  HawrylukSent: Monday, October 09, 2006 11:43 AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Bin folder 
  removed - how to restore
  
  Project-Clean
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
de Sönke RohdeEnvoyé : lundi 9 octobre 2006 
11:32À : flexcoders@yahoogroups.comObjet : 
[flexcoders] Bin folder removed - how to restore

Hi,I had a problem that I recompiled my application but changes 
where notvisible.So I decided to remove the contents of the bin 
(output) folder to let Flexcompile all new.Now when I try to Run or 
Debug I get the error message that the html-filesis missing which is of 
course true because I removed it.How do I make Flex to build all new 
and to recreate the contents of the 
binfolder?Thanks,Sönke 
__._,_.___





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

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Bin folder removed - how to restore

2006-10-09 Thread Sönke Rohde
Hi,

I had a problem that I recompiled my application but changes where not
visible.
So I decided to remove the contents of the bin (output) folder to let Flex
compile all new.
Now when I try to Run or Debug I get the error message that the html-files
is missing which is of course true because I removed it.

How do I make Flex to build all new and to recreate the contents of the bin
folder?

Thanks,
Sönke



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] Emoticons in TextArea

2006-05-21 Thread Sönke Rohde





Hi Tom,
I haven't tested it but this may be waht you are looking 
for: http://osflash.org/fosforo
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Tom 
  KrchaSent: Sunday, May 21, 2006 6:07 PMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Emoticons in 
  TextArea
  
  
  Hi,
   
  I am working on chat. And showing 
  images in TextArea is not successful – they always show on new line – not 
  inline with text flow.
   
  How to show images in textarea 
  inline? Like showing emoticons.
   
  Is it 
  possible?
   
  Thanks
   
  Tom





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








  
  
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] FLexB2 Embed flv into SWF

2006-05-21 Thread Sönke Rohde



Hi Roger,

Is there now a workaround or solution in Beta 3 to embed FLVs?

Cheers,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez
> Sent: Thursday, April 06, 2006 6:59 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] FLexB2 Embed flv into SWF
> 
> We don't support direct embedding of .FLV (feel free to file 
> an enhancement request that we should!) but Beta 3 will have 
> a nifty workaround that might actually make this work.  I'll 
> investigate a bit.
> 
> Stay tuned...
> 
> -rg 
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> > Sent: Thursday, April 06, 2006 1:43 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] FLexB2 Embed flv into SWF
> > 
> > Hi,
> > When using the Image-Tag it's possible to embed images into 
> > the SWF with
> > 
> > I tried the same for the VideoDisplay: 
> > url="" />
> > But I get the error: test.flv does not have a recognized 
> > extension, and a
> > mimeType was not provied
> > Unable to transcode test.flv
> > 
> > Will embedding of Flash Video will be supported in beta3 or 
> > flex2 final or
> > is embedding restricted to images like jpg,png, gif etc.?
> > 
> > Cheers,
> > Sönke
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 
> > 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Slider update

2006-05-08 Thread Sönke Rohde



Perfect, thanks!
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann
> Sent: Monday, May 08, 2006 2:16 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Slider update
> 
> Hi,
> 
> you'll have to set liveDragging = true on the HSlider
> 
> Dirk.
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> > Sent: Monday, May 08, 2006 1:53 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Slider update
> > 
> > Hi,
> > 
> > I am using the Hslider but I need the update-event not only 
> > when the slider is release but already when the slider is 
> > dragged and has a new position.
> > I tried to use the thumbDrag-event but the value-property of 
> > the event is NaN. Am I missing something, is it a bug?
> > 
> > Thanks,
> > Sönke
> > 
> > 
> > 
> >  Yahoo! Groups Sponsor 
> > ~--> Everything you need is one click 
> > away.  Make Yahoo! your home page now.
> > http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
> > --
> > --~-> 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 
> > 
> 
> 
>  Yahoo! Groups Sponsor 
> ~--> 
> Everything you need is one click away.  Make Yahoo! your home 
> page now.
> http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
> --
> --~-> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 







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








  
  
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] Slider update

2006-05-08 Thread Sönke Rohde



Hi,

I am using the Hslider but I need the update-event not only when the slider
is release but already when the slider is dragged and has a new position.
I tried to use the thumbDrag-event but the value-property of the event is
NaN. Am I missing something, is it a bug?

Thanks,
Sönke







--
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] FLexB2 Embed flv into SWF

2006-04-10 Thread Sönke Rohde





Thanks a lot!
But can you also tell us the url?
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Roger 
  GonzalezSent: Monday, April 10, 2006 2:02 AMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] FLexB2 Embed 
  flv into SWF
  
  I decided to just file one on your behalf.  All set, 
  hopefully we'll get it in post-2.0.
   
  -rg
  


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Carlos 
RoviraSent: Sunday, April 09, 2006 12:22 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] FLexB2 Embed 
flv into SWF
Hi Roger,I'm interested as well in get the *.flv 
inserted without any hack, could you provide the url for enhacement 
request?Thanks.C.
On 4/7/06, Sönke 
Rohde <[EMAIL PROTECTED]> 
wrote: 

  Hi Roger,I am very curious about the 
  nifty workaround!Where can I post/send my enhancement 
  request?Thanks,
  Sönke 
  > -Original 
  Message-> From: flexcoders@yahoogroups.com 
  
  > [mailto:flexcoders@yahoogroups.com] On Behalf Of Roger 
  Gonzalez> Sent: Thursday, April 06, 2006 6:59 PM> To: flexcoders@yahoogroups.com
  > 
  Subject: RE: [flexcoders] FLexB2 Embed flv into SWF> > We 
  don't support direct embedding of .FLV (feel free to file > an 
  enhancement request that we should!) but Beta 3 will have > a nifty 
  workaround that might actually make this work.  I'll > 
  investigate a bit.> > Stay tuned...> > -rg 
  > > > -Original Message-> > From: flexcoders@yahoogroups.com > > [mailto:flexcoders@yahoogroups.com] On Behalf Of Sönke 
  Rohde> > Sent: Thursday, April 06, 2006 1:43 AM> > To: 
  flexcoders@yahoogroups.com> > Subject: 
  [flexcoders] FLexB2 Embed flv into SWF> > > > 
  Hi,> > When using the Image-Tag it's possible to embed images 
  into > > the SWF with> > > > I tried the same for the 
  VideoDisplay: > > 
  url="" />> > But I get the error: 
  test.flv does not have a recognized > > extension, and a> 
  > mimeType was not provied> > Unable to transcode 
  test.flv> > > > Will embedding of Flash Video will be 
  supported in beta3 or > > flex2 final or> > is 
  embedding restricted to images like jpg,png, gif etc.?> > 
  > > Cheers,> > Sönke> > > > 
  > > > > --> > Flexcoders Mailing 
  List> > FAQ: > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> 
  > Search Archives: > > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  > > Yahoo! Groups Links> > > > > > 
  > >  > > > > > > > 
  > > > > --> Flexcoders Mailing List> 
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  > Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  > Yahoo! Groups Links> > > >  
  > > > > 
  
  --Flexcoders Mailing ListFAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  
  
  
  YAHOO! GROUPS LINKS 
  
 Visit your group "flexcoders" on the web.  
 To unsubscribe from this group, send an email 
to:  [EMAIL PROTECTED]  

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service . 
  
  
  -- ::| 
Carlos Rovira::| http://www.carlosrovira.com 






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





  




  
  
  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] FLexB2 Embed flv into SWF

2006-04-07 Thread Sönke Rohde
Hi Roger,
I am very curious about the nifty workaround!
Where can I post/send my enhancement request?

Thanks,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez
> Sent: Thursday, April 06, 2006 6:59 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] FLexB2 Embed flv into SWF
> 
> We don't support direct embedding of .FLV (feel free to file 
> an enhancement request that we should!) but Beta 3 will have 
> a nifty workaround that might actually make this work.  I'll 
> investigate a bit.
> 
> Stay tuned...
> 
> -rg 
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> > Sent: Thursday, April 06, 2006 1:43 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] FLexB2 Embed flv into SWF
> > 
> > Hi,
> > When using the Image-Tag it's possible to embed images into 
> > the SWF with
> > 
> > I tried the same for the VideoDisplay:  > url="@Embed(source='test.flv')" />
> > But I get the error: test.flv does not have a recognized 
> > extension, and a
> > mimeType was not provied
> > Unable to transcode test.flv
> > 
> > Will embedding of Flash Video will be supported in beta3 or 
> > flex2 final or
> > is embedding restricted to images like jpg,png, gif etc.?
> > 
> > Cheers,
> > Sönke
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 
> > 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 



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

<*> 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] FLexB2 Embed flv into SWF

2006-04-06 Thread Sönke Rohde
Hi,
When using the Image-Tag it's possible to embed images into the SWF with

I tried the same for the VideoDisplay: 
But I get the error: test.flv does not have a recognized extension, and a
mimeType was not provied
Unable to transcode test.flv

Will embedding of Flash Video will be supported in beta3 or flex2 final or
is embedding restricted to images like jpg,png, gif etc.?

Cheers,
Sönke



--
Flexcoders Mailing 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] Listening to Databind events

2006-04-05 Thread Sönke Rohde
This will come with beta3? Currently PropertyChangeEvent isn't documentet
anywhere.
Can you give a code example?

Cheers,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin
> Sent: Wednesday, April 05, 2006 8:02 AM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Listening to Databind events
> 
> The event is going to be mx.events.PropertyChangeEvent which is in the
> ASDoc.
> 
> Matt
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> Behalf Of mvbaffa
> Sent: Tuesday, April 04, 2006 5:03 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Listening to Databind events
> 
> Hi all,
> 
> I would like to know how can I drive, or listen to, Databind events.
> 
> I have a bindable property defined like this:
> 
> [Bindable]
> public var clientDetail : ClientVO;
> 
> This property is updated by the parent container like this:
> 
> clientDetail="{ selectedClient }" />
> 
> I would like to execute a function or method in ClientEvent 
> component when the clientDetail variable is updated.
> 
> Excuse me if this is too simple but I could not find a way, except 
> by using predefined properties, to do this
> 
> Thanks in advance
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 



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

<*> 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] Organize Imports

2006-04-05 Thread Sönke Rohde
Of course copying all imports while refactoring will do the job but
comfortable workflow is a different thing.
For me this is a must-have for a professional coding environment like JDT or
FDT. Are there chances this is going to be integrated in beta3 or flex 2
final? Can I put this feature on the wishlist?

Thanks,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin
> Sent: Wednesday, April 05, 2006 8:02 AM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Organize Imports
> 
> I don't know if copying imports when you copy code is going 
> to make it in.  I kinda doubt it but I know what you mean 
> about it being useful.
> 
> Matt
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> Sent: Tuesday, April 04, 2006 5:30 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Organize Imports
> 
> Hi,
> I have got a question about organizing import-statements 
> within FlexBuilder.
> Now with CTRL-SHIFT-O the imports are sorted but what really 
> is needfull is
> that all imports are generated automatically for all classes 
> which are not
> imported yet. Using FDT for AS2 this feature has become so 
> common that it's
> hard to work without it in the Flex2/AS3-world.
> Currently imports are only added when you type a classname 
> and complete it
> with autocompletion. But while refactoring classes 
> (copy-n-paste) a "real"
> organize imports is a must have from my point of view.
> Any plans this will be part of beta3 or the final version of Flex2?
> 
> Cheers,
> Sönke
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 



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

<*> 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] Organize Imports

2006-04-04 Thread Sönke Rohde
Hi,
I have got a question about organizing import-statements within FlexBuilder.
Now with CTRL-SHIFT-O the imports are sorted but what really is needfull is
that all imports are generated automatically for all classes which are not
imported yet. Using FDT for AS2 this feature has become so common that it's
hard to work without it in the Flex2/AS3-world.
Currently imports are only added when you type a classname and complete it
with autocompletion. But while refactoring classes (copy-n-paste) a "real"
organize imports is a must have from my point of view.
Any plans this will be part of beta3 or the final version of Flex2?

Cheers,
Sönke



--
Flexcoders Mailing 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] Setting up Remoting

2006-03-31 Thread Sönke Rohde





You are missing the import of the 
ResultEvent:
 
import mx.rpc.events.ResultEvent;
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Stefan 
  RichterSent: Friday, March 31, 2006 5:04 PMTo: 
  flexcoders@yahoogroups.comSubject: RE: [flexcoders] Setting up 
  Remoting
  
  Thanks, it just seemed wrong that it defaults to FDS when 
  I explicitly told Flex to set up a Remoting project. Maybe I am getting FDS 
  and Remotingconfused and it's basically the same thing...
   
   
  One more question. When working on 
  this
   
    
  id="myCfc" 
  destination="ColdFusion" 
  source="flex.cfc.flextest" 
  result="resultHandler(event)" 
  />  
   
    

   
  Flexbuilder flags up this line
  private function resultHandler( event:ResultEvent 
  ):void
   
  stating: 
  Type is not found or not a compile-time constant: 
  ResultEvent 
   
   
  What kind of event should 
  it be? The code still runs ok if I ignore any errors.
   
   
  Stefan
   
  
   
   
  


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Peter 
FarlandSent: 31 March 2006 15:48To: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Setting up 
Remoting

It's prefilled with a path for the typical Java based 
installation. We expect uses to change this value for a variety of 
installation scenarios - essentially you will have to know the location of 
this file and update this value on ANY mxmlc compilation when using FDS or 
CF data services, such as RemoteObject.
 
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Stefan 
RichterSent: Friday, March 31, 2006 9:38 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Setting up 
Remoting

When setting up a Flex2 Remoting project I noticed that 
the compile command is set to
-services 
"C:\fds2\jrun4\servers\default\flex\WEB-INF\flex\flex-enterprise-services.xml"
 
The docs state that it should be set to 
-services=C:\CFusionMX7\wwwroot\WEB-INF\flex\flex-enterprise-services.xml
 
I tried with the former first and it failed. I tried 
the latter and it worked. Just thought I'd mention it here. Seems silly that 
it's prefilled with what seems to be the wrong path.
 
Stefan
 
 
 





--
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: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Sönke Rohde
Hi Peter,
In my case this doesn't change anything and all my nodes have a
label-attribute.

Cheers,
Sönke

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Peter Blazejewicz
> Sent: Tuesday, March 28, 2006 8:01 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Menu Bar Killing me. Can someone help.
> 
> Hello Jeremy,
> 
> try to add labelField property declaration,
> e.g.:
>  
> to filter data for dataProvider,
> 
> hth,
> regards,
> Peter Blazejewicz
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 



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

<*> 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] Menu Bar Killing me. Can someone help.

2006-03-28 Thread Sönke Rohde
Same problem here. Looks like the behaviour changed or it broke between
beta1/2.

Cheers,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman
> Sent: Tuesday, March 28, 2006 7:44 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Menu Bar Killing me. Can someone help.
> 
> I just upgraded from Flex 2 Beta 1 to Flex 2 Beta 2. And not my
> menubar is dead. It worked great while in flex 2 beta 1.
> 
> When I compile my code, it shows the xml code I used to make my menu
> bar, instead of my menu bar. I am using the example on the flex
> explorer website to do my menu bar. I dont have anything 
> crazy in there.
> 
> Here is a screenshot of how it looks now.
> 
> http://flex.homesmartagent.com/tmp/menubar.jpg
> 
> Here is my code.
> 
> menuHandler Function:
> 
> function menuHandler(oEvent:Object) {
> currentState = oEvent.menuItem.getProperty("data");
> }
> 
> Menubar Tag:
> 
>  height="22" x="1" y="10">
>   
>   
>
>  
> 
>   
>   
> 
> 
>   
>   
>   
>   
>   
>  
>   
> 
> 
> 
>   
>   
>   
> 
> 
> 
>   
>   
>   
> 
> 
>   
>  
> 
> 
>
>   
>   
>   
> 
>   
>   
>   
>   
> 
> 
>   
>
> 
>   
>   
>   
> 
>   
>   
>   
>  
>  data="compInfo" hint="Displays Company Information Screen" />
> 
> 
> 
>  
>   
>   
>   
>   
>   
>   
>   
>   
> 
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 



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

<*> 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] FlexUnit error

2006-03-28 Thread Sönke Rohde
Pull up ...
Nobody is using FlexUnit?

Thanks for any hint on this,
Sönke 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> Sent: Monday, March 27, 2006 11:42 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] FlexUnit error
> 
> Hi,
> I am just trying FlexUnit
> (http://labs.macromedia.com/wiki/index.php/ActionScript_3:reso
urces:apis:lib
> raries#FlexUnit) like in the example by Darron Schall
> (http://www.darronschall.com/weblog/archives/000216.cfm) and I get the
> following error:
> 
> ReferenceError: Error #1065: Variable
> http://www.adobe.com/2006/flex/mx/internal::_TestRunnerBase_St
ylesInit is
> not defined
>   at flexunit.flexui::TestRunnerBase$iinit()
>   ...
> 
> This line causes the error:
> 
> 
> Is this a problem because of flex beta2 because the example 
> was posted while
> beta 1 was out or am I missing something else?
> 
> Cheers,
> Sönke
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 






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

<*> 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] FlexUnit error

2006-03-27 Thread Sönke Rohde
Hi,
I am just trying FlexUnit
(http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:lib
raries#FlexUnit) like in the example by Darron Schall
(http://www.darronschall.com/weblog/archives/000216.cfm) and I get the
following error:

ReferenceError: Error #1065: Variable
http://www.adobe.com/2006/flex/mx/internal::_TestRunnerBase_StylesInit is
not defined
at flexunit.flexui::TestRunnerBase$iinit()
  ...

This line causes the error:


Is this a problem because of flex beta2 because the example was posted while
beta 1 was out or am I missing something else?

Cheers,
Sönke



--
Flexcoders Mailing 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] FLV encoder

2006-03-17 Thread Sönke Rohde





Hi,
I only did a lot of client-side work with ffmpeg. I never 
tried it on a server.
Anyway there is also an extention for php called 
FFMPEG-PHP: http://ffmpeg-php.sourceforge.net/
Ffmpeg is very fast but the disadvantage is that it only 
supports the Spark codec and not On2 VP6. Thanks MM for using a proprietary 
codec!
 
While using fffmpeg be sure to add the metadata for FLV 1.1 
after encoding. Depending on the FLV Player they might be 
important/essential.
You could use FLVTool2 (http://inlet-media.de/flvtool2) which 
can insert Metadata, custom name-value-pairs, custom cuepoints or even cut the 
video. FLVTool2 is written in Ruby and runs on win, mac, linux 
...
 
I wrote a little GUI for FLVTool2 called FLV Knife: http://soenkerohde.com/software/flv-knife/
If you like to get familiar with FLVTool2 this would be a 
good starter because the GUI always show which command-line will be 
executed.
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Abdul 
  QabizSent: Friday, March 17, 2006 10:56 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FLV 
  encoder
  I think, ffmpeg is good...have done some conversion in 
  past...I remember, there was another thread on this list regarding 
  ffmpeg...As far as compilation is concerned, check out this link: http://soenkerohde.com/tutorials/ffmpegI 
  think, Sönke Rohde has been working with ffmpeg a lot, he might want to add 
  his opinion here..-abdul
  On 3/17/06, Kai 
  Pradel <[EMAIL PROTECTED]> 
wrote:
  We're 
using both applications. ffmpeg will run on Linux and Windows butyou 
need to be able to compile it yourself. Documentation is 
almostnon-existant so plan some time to figure things out. FFmpeg will 
convertflv files to other formats which is something Flix Engine won't 
do. Onceyou have it up and running it's amazingly fast. MUCH faster than 
On2.Flix Engine is expensive but very powerful and reliable. It has 
a asolid api that comes with decent documentation. We like it because 
itgives you the option of using it as a com object so you can call 
andconfigure it directly through ColdFusion etc.As far as I 
know, there aren't any other solutions that provide an elegant way to do 
server side conversions. Sorenson uses watch folderswhich could 
conceivably be used for that purpose but many people havereported issues 
with the reliability.Not sure why the previous poster recommended 
Vitalstream since they are a hosting provider. They do provide a 
live-streaming service but that'shardly on-demand server side 
conversion. On a side note, I would stay asfar away from Vitalstream as 
possible. Their infrastructure is NOT redundant and their integration of 
Flash Video Streaming is laughable.Hope this 
helps.KaiJignesh Dodiya wrote:> check 
vitalstream>> On 3/17/06, *Manish Jethani* < [EMAIL PROTECTED]> 
[EMAIL PROTECTED]>> 
wrote:>> I'm writing a sample app that 
requires conversion of video from> various 
formats (MPEG, AVI, etc.) to FLV on the server side.  Is 
there> a good FLV encoder out there that runs 
on GNU/Linux?  I've heard of> 
ffmpeg and On2, but I was wondering if there's something else out 
> there too.  Also, if you could 
share your experience with these two> 
encoders, that'd be great.>> 
Manish>>> 
--> Flexcoders Mailing 
List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> 
Search Archives:> http://www.mail-archive.com/flexcoders%40yahoogroups.com>>>> 
SPONSORED LINKS> Web site design 
development> < 
http://groups.yahoo.com/gads?t=ms&k=Web+site+design+development&w1=Web+site+design+development&w2=Computer+software+development&w3=Software+design+and+development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s=166&.sig=L-4QTvxB_quFDtMyhrQaHQ 
>>   Computer software 
development> < 
http://groups.yahoo.com/gads?t=ms&k=Computer+software+development&w1=Web+site+design+development&w2=Computer+software+development&w3=Software+design+and+development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s=166&.sig=lvQjSRfQDfWudJSe1lLjHw 
>>   Software design and 
development> < 
http://groups.yahoo.com/gads?t=ms&k=Software+design+and+development&w1=Web+site+design+development&w2=Computer+software+development&w3=Software+design+and+development&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s=166&.sig=1pMBCdo3DsJbuU9AEmO1oQ 
>>> Macromedia 
flex> < 
http://grou

RE: [flexcoders] FFMPEG GUI

2006-03-07 Thread Sönke Rohde





I added the options.
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of John C. Bland 
  IISent: Monday, March 06, 2006 8:35 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FFMPEG 
  GUI
  It is the -s param. http://ffmpeg.sourceforge.net/ffmpeg-doc.html#SEC8-s 
  qcif-s sqcifThese are used for specific sizes, namely for mobile, 
  etc. 
  On 3/6/06, Sönke 
  Rohde <[EMAIL PROTECTED]> wrote:
  

Hi 
John,
thanks 
for your feedback. If you give me details about qcif and sqcif I would like 
to add these parameters.
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John C. 
  Bland IISent: Monday, March 06, 2006 6:32 PMTo: flexcoders@yahoogroups.comSubject: Re: 
  [flexcoders] FFMPEG GUI

Not bad. It seems to be very useful. I would have liked to see 
options for the Video size (qcif, sqcif, etc). I'm sure you an extend the 
functionality to include everything else but for most cases this would def 
work. Good tool...Disclaimer:I'm not bashing it just 
relating it to our last ffmpeg project and what we needed for a command 
string. 
On 3/6/06, Sönke 
Rohde <[EMAIL PROTECTED]> wrote: 

  Hi,I have build a GUI for FFMPEG using 
  Flex 2. Read more here:http://soenkerohde.com/2006/03/06/ffmpeg-gui-using-flex-2-beta/ 
  The sourcecode is included. The code is very simple but anyway 
  people mightbe 
  interested.Cheers,Sönke--Flexcoders 
  Mailing ListFAQ: 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 . 
  
  
  -- John C. Bland 
II"I do what I can do when I can do it." - Chris Tucker, Money 
Talkshttp://www.gotoandstop.org 
- Home of FMUG.az --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 

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



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





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








  
  
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] FFMPEG GUI

2006-03-06 Thread Sönke Rohde





Hi John,
thanks for your feedback. If you give me details about qcif 
and sqcif I would like to add these parameters.
 
Cheers,
Sönke

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of John C. Bland 
  IISent: Monday, March 06, 2006 6:32 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FFMPEG 
  GUI
  Not bad. It seems to be very useful. I would have liked to see 
  options for the Video size (qcif, sqcif, etc). I'm sure you an extend the 
  functionality to include everything else but for most cases this would def 
  work. Good tool...Disclaimer:I'm not bashing it just 
  relating it to our last ffmpeg project and what we needed for a command 
  string. 
  On 3/6/06, Sönke 
  Rohde <[EMAIL PROTECTED]> wrote:
  
Hi,I have build a GUI for FFMPEG using 
Flex 2. Read more here:http://soenkerohde.com/2006/03/06/ffmpeg-gui-using-flex-2-beta/The 
sourcecode is included. The code is very simple but anyway people 
mightbe 
interested.Cheers,Sönke--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 

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


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





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





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   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] FFMPEG GUI

2006-03-06 Thread Sönke Rohde
Hi,
I have build a GUI for FFMPEG using Flex 2. Read more here:
http://soenkerohde.com/2006/03/06/ffmpeg-gui-using-flex-2-beta/
The sourcecode is included. The code is very simple but anyway people might
be interested.

Cheers,
Sönke




--
Flexcoders Mailing 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] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde

> > Hi,
> > Using the AS3-Date-Class the first time I recognized that 
> the month is
> > starting at 0 means 0 is January. Is this the expected behaviour?
> 
> Yeah - it's supposed to be like this (and has been like this 
> for a long 
> time).  Not a bug, sorry, you'll just have to account for the 
> 0-indexed 
> month in your code.

Thanks a lot for all responses.
Btw: I ran into this issue getting a MySQL-Recordset back via amfphp where
the date-column arrives as a string in Flash. Parsing the date-string e.g.
"2006-03-03" resulted as the third of April which I now learned is right.
Maybe amfphp with amf3-support can handle this better? Anyway - other topic
...

Cheers,
Sönke



--
Flexcoders Mailing 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] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde





but why is month starting at 0 and day at 
1?
seems very strange to me.

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Johannes 
  NelSent: Friday, March 03, 2006 3:04 PMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] AS3 Date month 
  starting at 0?
  this is expected behaviour i think
  On 3/3/06, Sönke 
  Rohde <[EMAIL PROTECTED]> wrote:
  Hi,Using 
the AS3-Date-Class the first time I recognized that the month isstarting 
at 0 means 0 is January. Is this the expected 
behaviour?Example:var d:Date = new Date("2006","03","22"); 
trace("date " + d); // date Sat Apr 22 00:00:00 GMT+0200 2006And 
another date I tried has a different GMT:var d:Date = new 
Date("2006","10","18");trace("date " + d); // date Sat Nov 18 00:00:00 
GMT+0100 2006 Is this a known issue/bug or am I doing something 
wrong?Cheers,Sönke--Flexcoders Mailing 
ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links<*> To visit your group on the web, go to: 
http://groups.yahoo.com/group/flexcoders/<*> 
To unsubscribe from this group, send an email 
to: 
[EMAIL PROTECTED]<*> Your use of 
Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/-- j:pn http://www.lennel.org





--
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] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde
Hi,
Using the AS3-Date-Class the first time I recognized that the month is
starting at 0 means 0 is January. Is this the expected behaviour?

Example:
var d:Date = new Date("2006","03","22");
trace("date " + d); // date Sat Apr 22 00:00:00 GMT+0200 2006

And another date I tried has a different GMT:
var d:Date = new Date("2006","10","18");
trace("date " + d); // date Sat Nov 18 00:00:00 GMT+0100 2006

Is this a known issue/bug or am I doing something wrong?

Cheers,
Sönke



--
Flexcoders Mailing 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] DataService in Flex2 without FES?

2006-03-01 Thread Sönke Rohde
Hi,
In Flash 7/8 there was the DataSet.deltaPacket to handle updates of a
DataSet. In Flex2 it looks like the DataService and the DataStore are the
classes which handle this behaviour.

In the livedocs it is mentioned that "The destination must be a reference to
a destination configured in the flex-enterprise-services.xml file." which
would mean this is reserved to FES.

Is there a comparable solution on the Actionscript side which works without
FES?
With Flash 7 using the DataSet and DeltaPacket-stuff I have a working
solution with amfphp where I parsed the deltaPacket-XML ...


Cheers,
Sönke



--
Flexcoders Mailing 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] About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Sönke Rohde
Hi, 

> I got two concrete questions about FLex 2 Beta
> 
> 1- Now this is a beta and not an alpha any more, is it risky 
> to developp 
> with it ?
> I think no, because Beta means nothing gonna change only bug will be 
> corrected.

I also think developing with the beta should be no problem anymore.

> 2- What's best way in flex to communicate with Php ?
> My experiment with httpservice works well, but I'm open to suggestion.

I think the best way is amfphp (http://amfphp.org) but currently the new
AMF3 isn't supported by amfphp but Patrick Mineault, the main developer
behind amfphp, wrote in this list that AMF3 will come soon. You can check
his blog for further anouncements: http://www.5etdemi.com/blog/

Cheers,
Sönke



--
Flexcoders Mailing 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] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde





Hi Jason,
thanks a lot! this works. Anyway I would expect a different 
behaviour but now I can go on with the real problem.
 
Cheers,
Sönke

  
  
  Von: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] Im Auftrag von Jason 
  HawrylukGesendet: Donnerstag, 23. Februar 2006 14:57An: 
  flexcoders@yahoogroups.comBetreff: RE: [flexcoders] Tree 
  DragAndDrop no data for leaf
  
  I 
  have to assume that if this works
   
  var 
  data:Object = 
  event.dragSource.dataForFormat("treeItems");trace("doDragDrop " + 
  data[0].parent());
   
  the 
  xml or return object thinks no children exist there are only attributes not a 
  full xml string value, so you have to access the attributes. I have not yet 
  worked alot with the "mx:xml" object. Anyway i don't see what is really wrong 
  with anything. In principle is should work.
   
  
  below is a modified 
  doDragDrop that works as you want it. It must 
  be because there is no nested value, or the fact your not casting it to xml. 
  Might be a bug but not sure how the mx:xml works 
  internally.
   
  private function doDragDrop(event:DragEvent):void 
  {    var 
  data:Object = 
  event.dragSource.dataForFormat('treeItems');    
  trace("doDragDrop " + 
  data[0].toString());    
      var 
  oxml:XML = 
  XML(data[0]);    
      
  trace(oxml.toXMLString());    
      
  /*if(data is 
  Array){  
  var a:Array = 
  Array(data);  
  trace("isArray l " +  
  a.length);  
  trace("doDragDrop " + 
  a[0].toString());    
  }*/    }
   
  Anyway hope this helps, cheers
   
  Jason
   
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
de Jason HawrylukEnvoyé : jeudi 23 février 2006 
14:02À : flexcoders@yahoogroups.comObjet : 
RE: [flexcoders] Tree DragAndDrop no data for leaf
never mind i see now the leaf is the problem give me a couple 
secs
 

  -Message d'origine-De : 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la 
  part de Jason HawrylukEnvoyé : jeudi 23 février 2006 
  13:56À : flexcoders@yahoogroups.comObjet : 
  RE: [flexcoders] Tree DragAndDrop no data for leaf
  I really see no prob with this i traced
   
  
  isArray l 1
  doDragDrop 
  
  
  Seems to work, what exactly are you expecting ? as a result other 
  then the above
  jason
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la 
part de Sönke RohdeEnvoyé : jeudi 23 février 2006 
11:57À : 
flexcoders@yahoogroups.comObjet : Re: [flexcoders] Tree 
DragAndDrop no data for leafHi Matt,This 
really looks like a bug. I have made a simple example. Try to drag 
theleaf of the tree and there will be traced that the array has 
length 1 butthe trace of the item itself is 
empty.Cheers,Sönkehttp://www.macromedia.com/2005/mxml"layout="absolute">  
    
    
              
    
    
    
    
    
    
    
    
  dataProvider="{myxml}" labelField="@label" 
width="194">  
  backgroundColor="0xff" id="canvas" 
    
dragEnter="doDragEnter(event);"dragDrop="doDragDrop(event);" 
>  
  
 > It may be a bug in the drag 
    and drop code.  Can you send a test case?> > 
-Original Message-> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Sönke 
Rohde> Sent: Wednesday, February 22, 2006 10:02 AM> To: 
flexcoders@yahoogroups.com> Subject: [flexcoders] Tree 
DragAndDrop no data for leaf> > Hi,> I have got a 
problem getting the data of a dragged leaf from a tree.> The 
DragEvent.DRAG_DROP is handled by the following function:> 
> private function doDrop(e:DragEvent):void{> 
  var data:Object = 
e.dragSource.dataForFormat("treeItems");> 
  trace("data " + data.toString());> 
}> > The leaf which is dragged has this XML > data="" /> and> nothing for the data 
is traced. When I drag a branch like:> >   > > All is traced 
correctly.> > > Why do I get no data for the leaf? 
Is the XML malformated?> > Thanks,> Sönke> 

RE: [flexcoders] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde





Exactly! Seems like a bug doesn't 
it?
 
Cheers,
Sönke

  
  
  Von: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] Im Auftrag von Jason 
  HawrylukGesendet: Donnerstag, 23. Februar 2006 14:02An: 
  flexcoders@yahoogroups.comBetreff: RE: [flexcoders] Tree 
  DragAndDrop no data for leaf
  
  never mind i see now the leaf is the problem give me a couple 
  secs
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
de Jason HawrylukEnvoyé : jeudi 23 février 2006 
13:56À : flexcoders@yahoogroups.comObjet : 
RE: [flexcoders] Tree DragAndDrop no data for leaf
I 
really see no prob with this i traced
 

isArray l 1
doDragDrop 


Seems to work, what exactly are you expecting ? as a result other 
then the above
jason
 

  -Message d'origine-De : 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la 
  part de Sönke RohdeEnvoyé : jeudi 23 février 2006 
  11:57À : flexcoders@yahoogroups.comObjet : 
  Re: [flexcoders] Tree DragAndDrop no data for 
  leafHi Matt,This really looks like a bug. I 
  have made a simple example. Try to drag theleaf of the tree and there 
  will be traced that the array has length 1 butthe trace of the item 
  itself is empty.Cheers,Sönkehttp://www.macromedia.com/2005/mxml"layout="absolute">  
      
      
                
      
      
      
      
      
      
      
      
    dataProvider="{myxml}" 
  labelField="@label" 
  width="194">  
    backgroundColor="0xff" id="canvas" 
      
  dragEnter="doDragEnter(event);"dragDrop="doDragDrop(event);" 
  >  
    
   > It may be a bug in the drag 
  and drop code.  Can you send a test case?> > 
  -Original Message-> From: flexcoders@yahoogroups.com 
  > [mailto:[EMAIL PROTECTED] On Behalf Of Sönke 
  Rohde> Sent: Wednesday, February 22, 2006 10:02 AM> To: 
  flexcoders@yahoogroups.com> Subject: [flexcoders] Tree DragAndDrop 
  no data for leaf> > Hi,> I have got a problem getting 
  the data of a dragged leaf from a tree.> The DragEvent.DRAG_DROP is 
  handled by the following function:> > private function 
  doDrop(e:DragEvent):void{>   var 
  data:Object = e.dragSource.dataForFormat("treeItems");> 
    trace("data " + data.toString());> 
  }> > The leaf which is dragged has this XML > data="" /> and> nothing for the data is 
  traced. When I drag a branch like:> >   > > All is traced 
  correctly.> > > Why do I get no data for the leaf? Is 
  the XML malformated?> > Thanks,> Sönke> 
  > > > --> Flexcoders Mailing List> FAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> 
  Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  > Yahoo! Groups Links> > > >  
  > > > > > --> Flexcoders Mailing 
  List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> 
  Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  > Yahoo! Groups Links> > > >  
  > > > > 





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde
Hi Matt,
This really looks like a bug. I have made a simple example. Try to drag the
leaf of the tree and there will be traced that the array has length 1 but
the trace of the item itself is empty.

Cheers,
Sönke


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
























 


> It may be a bug in the drag and drop code.  Can you send a test case?
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde
> Sent: Wednesday, February 22, 2006 10:02 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Tree DragAndDrop no data for leaf
> 
> Hi,
> I have got a problem getting the data of a dragged leaf from a tree.
> The DragEvent.DRAG_DROP is handled by the following function:
> 
> private function doDrop(e:DragEvent):void{
>   var data:Object = e.dragSource.dataForFormat("treeItems");
>   trace("data " + data.toString());
> }
> 
> The leaf which is dragged has this XML  data="foo" /> and
> nothing for the data is traced. When I drag a branch like:
> 
>   
> 
> All is traced correctly.
> 
> 
> Why do I get no data for the leaf? Is the XML malformated?
> 
> Thanks,
> Sönke
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 



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

<*> 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] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde





hi jason,
this was not the problem. look at my example i responsed to 
Matt.
 
Cheers
Sönke

  the return from your 
  dataForFormat call is an array or a collection.
   
  so try 
  trace("data " + data[0].toString());
   
  where the 
  [0] is the first item in the collection or array.
   
  Jason
  
   
  
-Message d'origine-De : 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
de Sönke RohdeEnvoyé : mercredi 22 février 2006 
19:02À : flexcoders@yahoogroups.comObjet : 
[flexcoders] Tree DragAndDrop no data for 
leafHi,I have got a problem getting the data of 
a dragged leaf from a tree.The DragEvent.DRAG_DROP is handled by the 
following function:private function 
doDrop(e:DragEvent):void{  var data:Object 
= e.dragSource.dataForFormat("treeItems");  
trace("data " + data.toString());}The leaf which is dragged has 
this XML  andnothing for the data 
is traced. When I drag a branch like:  All is traced correctly.Why 
do I get no data for the leaf? Is the XML 
malformated?Thanks,Sönke





--
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] Tree DragAndDrop no data for leaf

2006-02-22 Thread Sönke Rohde
Hi,
I have got a problem getting the data of a dragged leaf from a tree.
The DragEvent.DRAG_DROP is handled by the following function:

private function doDrop(e:DragEvent):void{
var data:Object = e.dragSource.dataForFormat("treeItems");
trace("data " + data.toString());
}

The leaf which is dragged has this XML  and
nothing for the data is traced. When I drag a branch like:



All is traced correctly.


Why do I get no data for the leaf? Is the XML malformated?

Thanks,
Sönke



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