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

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

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

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

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

2006-12-03 Thread Sönke Rohde
=top/ /mx:horizontalAxisRenderer mx:verticalAxisRenderer mx:AxisRenderer placement=right/ /mx:verticalAxisRenderer -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

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

2006-12-03 Thread Sönke Rohde
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

RE: [flexcoders] Flex 2 Charting dynamic backgroundElements

2006-12-02 Thread Sönke Rohde
... / /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

[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-11-28 Thread Sönke Rohde
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

[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

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

[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

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]

RE: [S] RE: [flexcoders] Unable to build application from flex buider

2006-11-04 Thread Sönke Rohde
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

RE: [flexcoders] Configure what is copied to bin?

2006-10-29 Thread Sönke Rohde
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

RE: [flexcoders] Re: ItemRenderer - Which dataField from DataGridColumn?

2006-10-27 Thread Sönke Rohde
, 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

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

[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? ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% backgroundColor=0xEE creationComplete=init();

RE: [flexcoders] MXML ItemRenderer and dataTip

2006-10-26 Thread Sönke Rohde
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

[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

[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

[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

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

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:

RE: [flexcoders] FLexB2 Embed flv into SWF

2006-05-21 Thread Sönke Rohde
- 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

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:

RE: [flexcoders] FLexB2 Embed flv into SWF

2006-04-10 Thread Sönke Rohde
: [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

RE: [flexcoders] FLexB2 Embed flv into SWF

2006-04-07 Thread Sönke Rohde
-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

[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 mx:Image source=@Embed('test.jpg') / I tried the same for the VideoDisplay: mx:VideoDisplay url=@Embed(source='test.flv') / But I get the error: test.flv does not have a recognized extension, and a mimeType was not

RE: [flexcoders] Organize Imports

2006-04-05 Thread Sönke Rohde
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

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

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]

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:

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

[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

RE: [flexcoders] FLV encoder

2006-03-17 Thread Sönke Rohde
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

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

RE: [flexcoders] FFMPEG GUI

2006-03-06 Thread Sönke Rohde
...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

[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

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde
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"

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

[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

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.

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 anarray or a collection. so try trace("data " + data[0].toString()); where the [0] is the first item in the collection or array.

Re: [flexcoders] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde
=doDragEnter(event); dragDrop=doDragDrop(event); /mx:Canvas /mx:Application 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

RE: [flexcoders] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde
uot; labelField="@label" width="194"/mx:Tree mx:Canvas x="378" y="39" width="200" height="200"backgroundColor="0xff" id="canvas" dragEnter="doDragEnter(event);"

Re: [flexcoders] Tree DragAndDrop no data for leaf

2006-02-23 Thread Sönke Rohde
/mx:Tree mx:Canvas x="378" y="39" width="200" height="200"backgroundColor="0xff" id="canvas" dragEnter="doDragEnter(event);"dragDrop="doDragDrop(event);" /mx:C

[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