[flexcoders] Re: Horrible performance problems...Need some ideas on improving

2008-09-06 Thread reflexactions
I seem to get a problem when I tried this optimisation, basically say a cell changes its text color to white when selected and back to black when not. What seems to happen is that it changes to white but not back to black and therefore the cell dissapears. Doesnt seem to happen all the time

Re: [flexcoders] effects whn page loads

2008-09-06 Thread Haykel BEN JEMIA
Use the creationCompleteEffect trigger! On Fri, Sep 5, 2008 at 8:23 PM, flexlearner47 [EMAIL PROTECTED]wrote: How to give effects on canvas/button/lables when page loads? ,,, I can not give the effects at the time when the page loads/ plzz/ help me out.. I am new in flex ...

[flexcoders] Re: Horrible performance problems...Need some ideas on improving

2008-09-06 Thread reflexactions
Never mind, I figured a way round it. --- In flexcoders@yahoogroups.com, reflexactions [EMAIL PROTECTED] wrote: I seem to get a problem when I tried this optimisation, basically say a cell changes its text color to white when selected and back to black when not. What seems to happen is

[flexcoders] Dynamic ID RadioButtonGroup

2008-09-06 Thread Eugene Louw
Hi All, I'm trying to create multiple RadioButtonGroup(s) with the following code, mx:Repeater id=radioGroupRepeater dataProvider={ModelLocator.getInstance().options} mx:RadioButtonGroup id={radioGroupRepeater.currentItem.handle} labelPlacement=left / /mx:Repeater But I'm getting the following

[flexcoders] Problem syncing multiple sound objects playing simultaneously

2008-09-06 Thread Mat Mikul
Hi! I have an application which plays 5 sound files together sort of like the following: var speech:Array = new Array(); var sc:Array = new Array(); var speechPath:Array = { x0.mp3, x1.mp3, x2.mp3, x3.mp3, x4.mp3 }; public function initApp():void { for (var i:int = 0; i 5; ++i) {

[flexcoders] Flex CF Gateway Integration with CF 7.02 - What Am I Doing Wrong?

2008-09-06 Thread Battershall, Jeff
I've got normal integration working as expected, namely CF2AS object translation, but run aground on CF Gateway integration. When I try to add the adapter in services-config.xml I get this error: [2]flex.messaging.MessageException: Cannot create class of type

RE: [flexcoders] Flex CF Gateway Integration with CF 7.02 - What Am I Doing Wrong?

2008-09-06 Thread Battershall, Jeff
It would seem that the adapter goes by a different name in CF 7.02 - assuming it exists - does anyone have a clue what it might be? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Saturday, September 06, 2008 9:06 AM To:

[flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-06 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Assuming chart is a ColumnChart, chart.series[0].items[0] will get you a rference to the first ColumnSeriesItem. Charts don't have itemRenderers and an itemRenderer is not a style. They do, and in charting, it is.

[flexcoders] Re: How do I create a project just for a module in FlexBuilder?

2008-09-06 Thread sdelapdmi
I understand what you are saying. However loading should be delegated to the project containing the loading parent not forced. Basically we are using Fluint and the Air runner supports loading tests via module. I have a main project for our application. I also have a project just for the

[flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-06 Thread Amy
--- In flexcoders@yahoogroups.com, Fernando Ghisi [EMAIL PROTECTED] wrote: I can´t agree with you. Just take a look on the styles of ColumnSeries in http://livedocs.adobe.com/flex/3/langref/mx/charts/series/ColumnSeries.h tml - itemRenderer=BoxItemRenderer I want a reference of the

[flexcoders] Issues reading serialized complex data objects returned from Java

2008-09-06 Thread Sidhartha Priye
I am returning an Array of typed objects from Java. Say the typed object is X so essentially an Array of X objects. The typed object X internally contains another typed object Y which then contains an ArrayList of typed Object Z. My first question is do these complex nested objects get properly

Re: [flexcoders] Dynamic ID RadioButtonGroup

2008-09-06 Thread Haykel BEN JEMIA
The id property does not support binding and it should not contain any white space or special characters. On Sat, Sep 6, 2008 at 1:22 PM, Eugene Louw [EMAIL PROTECTED] wrote: Hi All, I'm trying to create multiple RadioButtonGroup(s) with the following code, mx:Repeater

RE: [flexcoders] Re: How do I create a project just for a module in FlexBuilder?

2008-09-06 Thread Alex Harui
I think you can just replace the mx:Application tag with mx:Module. You just can use the Run/Debug/Profile buttons. Eventually, you'll want to cross-reference link-reports to eliminate duplicate classes. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sdelapdmi Sent:

RE: [flexcoders] Re: Datagrid - Sort Error

2008-09-06 Thread Alex Harui
I think the error you are getting is because not all objects/nodes contain a date attribute. Normally, the sort code checks the first item to see if it has the sortField. That's probably why it works sometimes for you, depending on what the first node is. When you use a custom compare

[flexcoders] What is the difference between :Object and :*

2008-09-06 Thread Sefi Ninio
Hey. This might be a noob question, but I really want to get to the bottom of this, and can't really find information in my searches. So, what is the difference of defining a variable as Object or as *? Or (same question really) what is the difference between a Object function return type and a *

Re: [flexcoders] Re: What is Flexcoders?

2008-09-06 Thread Scott Barnes
Hilarious.. I started this thread and it was *Lets get back ontopic, come on community, get behind the reality of why this list exists and less about blogging inline* and then it ends with an Aussie Swimmer throw-down ;) As someone whom watches a lot of communities for a variety of reasons, it's

[flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-06 Thread Tim Hoff
Good link Amy. Thanks! -TH --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Fernando Ghisi fernandoghisi@ wrote: I can´t agree with you. Just take a look on the styles of ColumnSeries in

Re: [flexcoders] Who is Robert Thompson?

2008-09-06 Thread Scott Barnes
Seriously folks, can we honestly get past the whole Flash Killer hysteria. Silverlight and Flash will co-exist, this not a zero-sum game. To put it another way, think of this competitive situation as Pepsi vs Coke (both appear to be selling well and choice is a great thing?) Some of the Adobe

[flexcoders] Re: VideoDisplay play/pause button

2008-09-06 Thread sleekdigital
Sure I could use 2 separate buttons, but it I'd like to use one button and toggle it. It should work... in fact it does work with progressive download. I want to know why it doesn't work with streaming and if there is a simple way to fix it. --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL

Re: [flexcoders] What is the difference between :Object and :*

2008-09-06 Thread Sherif Abdou
Object can not store undefined and * can store it and that is about it -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: Sefi Ninio To: flexcoders@yahoogroups.com Sent: Saturday, September 06, 2008 11:15 AM Subject: [flexcoders] What is

[flexcoders] Example of writing metadata in synch with video?

2008-09-06 Thread stephendricketts
Does anyone know where I can find an example of writing custom metadata so it's linked to the timeline of a video? Much appreciated, sr

[flexcoders] array collection retrieve one row from database cause error

2008-09-06 Thread xiu_jewel
I had created a timetable in the datagrid. The datagrid is able to display individual staff's tiimetable. However, I was prompt an error when I click on this particular staff to view the class schedule.I realised the error is cause by the array collection only retrieve a row from the

[flexcoders] Re: VideoDisplay play/pause button

2008-09-06 Thread sleekdigital
I found the problem... The Button class has a default click handler that does this... if (toggle) { setSelected(!selected); event.updateAfterEvent(); } So after the binding set the selected property to false, this handler would set it back to true again.

[flexcoders] package structure for different programming languages

2008-09-06 Thread ibid049
Just an organizational question. If you have a client-server app in flex, and you have your domain- specific package structure, e.g. com.yahoo.groups.tech.etc., Do you put your AS classes within the same structure as your server-side classes, whatever language they're written in, or do you keep

Re: [flexcoders] package structure for different programming languages

2008-09-06 Thread Ralf Bokelberg
completely separated, but the packages can have the same structure/name r. On Sat, Sep 6, 2008 at 11:37 PM, ibid049 [EMAIL PROTECTED] wrote: Just an organizational question. If you have a client-server app in flex, and you have your domain- specific package structure, e.g.

Re: [flexcoders] package structure for different programming languages

2008-09-06 Thread Doug McCune
ditto, same structure but different actual locations on the drive. Usually when I have a java project and flex project that have mirrored classes (usually when using remoting), that means that I have one Flex project and one Java project, which exist as separate projects within Eclipse. I never

[flexcoders] Getting AutoCompletion to work in Flex 4

2008-09-06 Thread Sherif Abdou
Am I doing something wrong or is it because it is in not even in alpha so this stuff hasnt been worked out? Just wondering If I am just missing something, that is all. For Example when I do ns:Rect And Open a Bracket Here, I don't get Hints ns:fill no hints here. /ns:fill etc.. /Rect

[flexcoders] Re: What is Flexcoders?

2008-09-06 Thread Tim Hoff
I'm pretty sure that these threads died a while back Scott; unless you have a reason for stirring the pot. We all know your position; one that I happen to agree with, but is there any value to prolonging this? btw, I started this thread. -TH --- In flexcoders@yahoogroups.com, Scott Barnes

Re: [flexcoders] What is the difference between :Object and :*

2008-09-06 Thread Josh McDonald
Also: * can store a uint, and the other primitive types I believe. And you don't have to cast when assigning a * to a typed variable, but Object you do. -Josh On Sun, Sep 7, 2008 at 6:04 AM, Sherif Abdou [EMAIL PROTECTED] wrote:  Object can not store undefined and * can store it and that is

[flexcoders] Conditional column reorder/drag drop in ADG

2008-09-06 Thread gaurav1146
Hi, I am using an AdvancedDataGrid where I allow the user to drag and drop datagrid columns to an area(top-section) above the datagrid. This works fine but when a user drops a column in top-section the columns reordering in the datagrid also takes place. That is if the user drags the fifth column

Re: [flexcoders] Example of writing metadata in synch with video?

2008-09-06 Thread greg h
Hi sr, Can you provide more details on your requirement? For instance, metadata embedded in the FLV? Or ActionScript cue points? For ActionScript cue point, the amazing Peter deHaan has put up these three Flex examples (Note: the first two links have the generated swf running below the code):

[flexcoders] Flex 3 freezes at startup everytime!!!

2008-09-06 Thread Josh Millstein
I can not startup Flex Builder 3 anymore. It hangs everytime with the startup window. The rectangular window with the Fx - build on Eclipse . The os (os x) crashed when flex builder was running and it has never been able to open since then. I have flex builder 3.0 3.0.0 sdk build 477 and Java

Re: [flexcoders] Flex 3 freezes at startup everytime!!!

2008-09-06 Thread Sherif Abdou
Try going to where your workspace folder is and change the name of it, then open Eclipse and see if it starts normally and asks to select a workspace.Did you change the memory settings at all? -vmargs -Xms128m -Xmx512m -XX:MaxPermSize=256m -XX:PermSize=64m -Djava.net.preferIPv4Stack=true --

Re: [flexcoders] Flex 3 freezes at startup everytime!!!

2008-09-06 Thread Paul Hastings
Josh Millstein wrote: I'm in big trouble and need to get this working. I suppose I could reinstall don't know about the mac but i can usually nurse eclipse back to health on XP via C:\eclipse\eclipse.exe -clean ie the -clean bit.

[flexcoders] Re: Example of writing metadata in synch with video?

2008-09-06 Thread stephendricketts
I should have also said that I've seen the example with Flash CS3 but I'm using Flex Builder 3 and can't figure out how to modify it to make it work. In the program I'm using to write the metadata, I have: private function sendMetadata(oData:Object):void { // this function called multiple

Re: [flexcoders] What is the difference between :Object and :*

2008-09-06 Thread Sefi Ninio
Cool, thanks for the replies guys ;) On Sun, Sep 7, 2008 at 4:20 AM, Josh McDonald [EMAIL PROTECTED] wrote: Also: * can store a uint, and the other primitive types I believe. And you don't have to cast when assigning a * to a typed variable, but Object you do. -Josh On Sun, Sep 7, 2008

[flexcoders] Capture custom component event in parent application (application.mxml)

2008-09-06 Thread sleblang
What's the best way to capture an event (i.e. button click) from a custom component in a parent container. Would I want to have the button click event call a handler in the component and then from the handler dispatch a custom event or is there a better way? Here's some code to help illustrate:

Re: [flexcoders] Re: Streaming Video to Flex

2008-09-06 Thread greg h
Phil, Even if you find an IP camera that encodes straight to FLV, Flash Player does not support peer-to-peer (though maybe someday it will). SWFs can talk to servers. In the absence of a server in the architecture, I am having a hard time seeing any way for SWFs to find and talk directly to the

Re: [flexcoders] Flex 3 freezes at startup everytime!!!

2008-09-06 Thread Mike Chabot
When you view the ActivityMonitor in the OS, are the CPU and memory usage normal or unusually high? Maybe check the Console to view the detailed OS log files. If you reinstall keep in mind that there is a newer version of Flex Builder that you might want to upgrade because it contains bug fixes.

Re: [flexcoders] Capture custom component event in parent application (application.mxml)

2008-09-06 Thread Sherif Abdou
isn't that what bubbling is for? dispatchEvent(new Event(myEvent,true)); http://www.rubenswieringa.com/blog/eventbubbles-eventcancelable-and-eventcurrenttarget -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: sleblang To: