[flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread dos dedos
On most programming platforms, you have the event model (non-frame based events are raised and handled asynchronously), the synchronous model (blocking calls the halt execution within the thread/process until they return) and the inter-thread communication and thread management model.I haven't

[flexcoders] Model Popup Bug ?

2006-03-16 Thread sourcecoderia
There seems to be a bug when using the popup manager if it is set to topMost = true then all subsequent windows fall behind. For example a mx:ComboBox when dropped down the drop down portion of the ComboBox will fall behind the principle window. Does this make sense ? :) Jason --

[flexcoders] Restricting drag drop to certain nodes of a tree

2006-03-16 Thread Robs
Hi all, Is it possible to restrict drag drop operation to certain nodes of a tree? If yes, can anyone give me some ideas. Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Question about setFocus() in text input

2006-03-16 Thread wujunjr
Hi, I'm trying to set focus on a text input field by using setFocus() method in creationCompelete property of the TextInput. It works well while the app is firstly loaded. But the problem is: when I click on other tab (I'm using a TabNavigator), then click back to page with TextInput, the

Re: [flexcoders] Re: Flip and mirror a bitmap in Flex

2006-03-16 Thread Michael Schmalle
Is the image supposed to be reflected also? From the source it looks like it. But, only the text and buttons are reflected. Peace, MikeOn 3/15/06, Richie Rich [EMAIL PROTECTED] wrote: Hi Here is a example of what your looking for with sample code I believe.

Re: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Spike
Last I heard the Flash player was single threaded. If that's still true, the question of synchronization is moot.SpikeOn 3/16/06, dos dedos [EMAIL PROTECTED] wrote: On most programming platforms, you have the event model (non-frame based events are raised and handled asynchronously), the

RE: [flexcoders] Re: Flip and mirror a bitmap in Flex

2006-03-16 Thread Richard Schutten
In IE and Opera i couldn't see a reflection of the image but i did seea reflection when i loaded the demo in Flex Builder ! Richard -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf Of Michael SchmalleSent: Thursday, March 16, 2006 1:54 PMTo:

Re: [flexcoders] Question about setFocus() in text input

2006-03-16 Thread Sreenivas R
Hi John, You can try doing a textInput.setFocus() in the show event of the parent container. -Sreenivas On 3/16/06, wujunjr [EMAIL PROTECTED] wrote: Hi,I'm trying to set focus on a text input field by using setFocus()method in creationCompelete property of the TextInput. It works well while

Re: [flexcoders] Restricting drag drop to certain nodes of a tree

2006-03-16 Thread Sreenivas R
You need to add a handler for the dragOver event and based on which item the mouse is you can set the action property of the event to allow/prevent the operation. On 3/16/06, Robs [EMAIL PROTECTED] wrote: Hi all,Is it possible to restrict drag drop operation to certain nodes ofa tree? If yes,

Re: [flexcoders] Re: Flip and mirror a bitmap in Flex

2006-03-16 Thread Michael Schmalle
Hmm, I was using FireFox. Will have to try it in FB2. I wonder what the problem is? well, obviously it's that player! ;-) Peace, MikeOn 3/16/06, Richard Schutten [EMAIL PROTECTED] wrote: In IE and Opera i couldn't see a reflection of the image but i did seea reflection when i loaded

[flexcoders] Tooltips at cellRenderer

2006-03-16 Thread nahruka
Hi all, I've implemented a custom TileList with Flex 1.5 which cellRenderer is also a custom component named Grup. Why are Grup tooltips not showed ??? Here is MyList.mxml: ?xml version=1.0 encoding=utf-8? mx:TileList xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns=*

Re: [flexcoders] Re: Muliple flex apps on tomcat

2006-03-16 Thread Jeff Krueger
Thanks for all the suggestions. We are not precompiling. I will look at that. I have to be gone for today on a business trip, but will give this a try tomorrow. The two different apps are for backend issues. Nothing different in flex. For example production does validation of account number

[flexcoders] is ther a way to write those as STYLE

2006-03-16 Thread shemeshkale
hi, i m exploring the charts design option. have this code: mx:LineSeries yField=Expenses form=segment name=Expenses mx:stroke mx:Stroke weight=20 color=#ff alpha=100 / /mx:stroke mx:renderer mx:SimpleLineRenderer / /mx:renderer

[flexcoders] Flex 2 and Coldfusion

2006-03-16 Thread wi1df1ower
Question... to anyone who has been dealing with Flex 2...does anyone know whether Flex 2 will allow for a configuration that enables both flex and coldfusion applications to be called from port 8500. We found a configuration written by Simon Horwith that enabled tight synchronization beween the

Re: [flexcoders] Tooltips at cellRenderer

2006-03-16 Thread Sreenivas R
You need to set the showToolTip property of CheckBox to true. On 3/16/06, nahruka [EMAIL PROTECTED] wrote: Hi all,I've implemented a custom TileList with Flex 1.5 which cellRenderer isalso a custom component named Grup. Why are Grup tooltips not showed ??? Here is MyList.mxml:?xml version=1.0

[flexcoders] Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
I have posted this question many times in the group, but this time I want to put it very clearly so that people notice this problem The BUG isif you cellRenderer implements IDropInListItemRenderer (where you implement set and get listData methods, refer

[flexcoders] Need to add EventListener at the Application level

2006-03-16 Thread KOT_MATPOC
Hello, is there a way to add an event listener to the Application so that it would listen to ANY let's say change event that will be send from any component within the application?? Is there also a way to tell dynamically WHICH component has sent this event - for example TabNavigator,

[flexcoders] Flex 1.5 popup issue

2006-03-16 Thread digital_eyezed
Hi, I have an application with a number of custom components. In one of these components I have an image, which when clicked on I want a popup to open. I have a mouseDown event which dispataches an event to the parent application container mouseDown=dispatchEvent ({type:'wizard'}) The event

Re: [flexcoders] Problem with DateChooser selectedDate - flex 2

2006-03-16 Thread Sreenivas R
I think the bug lies in the fact that the DateChooser is expecting a perfect date without any hours, seconds. I tried the following it works. public var temp:Date = new Date(); [Bindable] public var now:Date = new Date(temp.fullYear, temp.month, temp.date); On 3/16/06, pasflex [EMAIL

[flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread digital_eyezed
Ok, the problem lies with the location of the popup TitleWindow. How do I reference the TitleWindow in the createPopUp function when it's in a sub-directory called components? Cheers, Iain --- In flexcoders@yahoogroups.com, digital_eyezed [EMAIL PROTECTED] wrote: Hi, I have an

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
So I understand that editorProperty and cellEndEdit are mutually exclusive. They both do the same but for complicated stuff we have to use cellEndEdit event hook. But the bug is really in the cellRenderer listData object which is never set. When the datagrid is rendered for the first time, it

Re: [flexcoders] Need to add EventListener at the Application level

2006-03-16 Thread Sreenivas R
Here is a sample I wrote quicky. Hope it helps. ?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml creationComplete=addHandler(event) xmlns=* mx:Script![CDATA[public function addHandler(event:Event):void{this.addEventListener(click, changeHandler);}public

RE: [flexcoders] Flex 2 Style Explorer (beta)

2006-03-16 Thread Tony Pujals
Title: Re: [flexcoders] Flex 2 Style Explorer (beta) Awesome! Thanks! tony pujals| senior engineer | Yahoo! SiteBuilder Express p. 408.349.6284 |e. tonyp * yahoo-inc dot com| y!id tonypujals From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread Dimitrios Gianninas
use the fully qualified name: PopUpManager.createdPopUp( parent, some.folder.Wizard, isModal, initObj ); Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of digital_eyezedSent: Thursday, March 16, 2006 10:29

RE: [flexcoders] Re: Muliple flex apps on tomcat

2006-03-16 Thread Tony Pujals
I second Daves recommendation regarding pre-compilation. Our team ran into the same issues with OutOfMemoryErrors thrown on our linux servers (never on any of the Windows machines). The solution was to deploy pre-compiled SWFs. tony pujals| senior engineer | Yahoo! SiteBuilder

[flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread digital_eyezed
It complains: There is no class or package with the name 'components.Wizard' found in package 'components'. The TitleWindow is an mxml file not an AS file. Any more ideas?? Cheers, Iain --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: use the fully

RE: [flexcoders] Re: Web Service Call - Flex 2 (Complex Type with Args)

2006-03-16 Thread Peter Farland
I can take a look. Can you send me the WSDL directly? Thanks, Pete -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richie Rich Sent: Wednesday, March 15, 2006 9:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Web Service Call

[flexcoders] Flex2 documentation - FlexEvent.DATA_OBJECT_CHANGED

2006-03-16 Thread thunderstumpgesatwork
Hello Flex Team! I've noticed the IDropInListItemRenderer documentation (and classes that implement it) is not up to date (or just not correct) as the they reference a FlexEvent.DATA_OBJECT_CHANGED. FlexEvent doesn't appear to exist at all. Is this just the Event class? if so, is the

[flexcoders] Application HotKeys Manager

2006-03-16 Thread t_msreddy
I want to implement a application hotkey/shortcuts manager. I am implementing a manager class which actually listens to keyboard events at the application level. The problem that i noticed was, when the focus is on some component within the application the keyboard events at the application

RE: [flexcoders] Flex2 documentation - FlexEvent.DATA_OBJECT_CHANGED

2006-03-16 Thread Stephen Gilson
FlexEvent is a class in mx.events. I believe that it is new for Beta 2, so are you using the Beta 1 doc with Beta 2 bits? Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Thursday, March 16, 2006 11:57 AM To:

RE: [flexcoders] is ther a way to write those as STYLE

2006-03-16 Thread Ely Greenfield
Unfortunately, no, compound objects can't be expressed in styles. You could easily reuse it, however, by defining a subclass of LineSeries in mxml with all the value pre-defined. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread dos dedos
Hey, does anyone have an idea how to build an HTTP (or socket) client + server inside a Flex app? I could use HTTPService for the client stuff but in my scenario I need to allow the Flex app to both send requests as well as receive them, so HTTPService is only half of the solution.. unless I'm

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread dos dedos
Replying to my own tired brain:I should probably settle for polling!!1dos dedos [EMAIL PROTECTED] wrote:Hey, does anyone have an idea how to build an HTTP (or socket) client + server inside a Flex app? I could use HTTPService for the client stuff but in my scenario I

[flexcoders] Re: Flex2 documentation - FlexEvent.DATA_OBJECT_CHANGED

2006-03-16 Thread thunderstumpgesatwork
I am using Beta1 bits, and online docs... I'll just use this as is until the Beta 2 bits are publicly available. thanks, Thunder --- In flexcoders@yahoogroups.com, Stephen Gilson [EMAIL PROTECTED] wrote: FlexEvent is a class in mx.events. I believe that it is new for Beta 2, so are you using

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread dos dedos
Yikes! I forgot there are no threads in Flex! so a polling/listening loop won't work ... I would have to have a timer to poll periodically ... no so pretty ... :(dos dedos [EMAIL PROTECTED] wrote:Replying to my own tired brain:I should probably settle for polling!!1dos

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread thunderstumpgesatwork
I have implemented this interface in Beta1 and it works just fine for me... did you specify implements IDropInListItemRenderer in your class declaration? For example, mine looks like this: public class PivotTableCellRenderer extends mx.containers.HBox implements IDropInListItemRenderer The rest

[flexcoders] Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread mmthm
Is there any official Adobe/Macromedia site to post formal bug reports and enhancement requests? Thanks. -- 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

[flexcoders] 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread thunderstumpgesatwork
Guys, I'm quite confused and frustrated with these external style sheets. The style name in the documentation sometimes matches the style name you should use in the CSS file, but not usually... For example, I'm trying to set the background color for a datagridcolumn via CSS. I have successfully

[flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread thunderstumpgesatwork
OK, this is just terrible... the documentation in the guide for Using the StyleManager here: http://livedocs.macromedia.com/flex/20beta1/docs/1019.html#171182 is terribly inconsistent about what text to use to reference the styles. It uses font-family, fontFamily, font-weight, borderStyle...

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
I not implementing a cellRenderer as AS class instead i do it in the mxml. In mxml I have set and get listData methods. I no where specify that I am implementing the interface. Ss it not implicit in MXMLs that if it has set and get listData methods that it is implementing the

RE: [flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread Tobias Patton
You need to put: implements=mx.controls.listclasses.IDropInListItemRenderer in the declaration of your MXML component. Tobias. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of t_msreddy Sent: Thursday, March 16, 2006 10:28 AM To:

Re: [flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread dos dedos
not being too useful here, but I think this is typical of beta phase documentation ... it's typical with the release early and release often model .. i'd rather have fuzzy documentation than no documentation, or worse having to wait until a product is perfected ... things are bound to get

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread thunderstumpgesatwork
Ah, well that explains your problem, unfortunately I'm not sure if or how you can specify in MXML that you're implementing an additional interface. Is what you're doing really that complicated? An ActionScript renderer class is really not that difficult in most cases... If it is, what you may

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread thunderstumpgesatwork
Excellent! I wasn't aware that you could do that from MXML.. good to know. Thunder --- In flexcoders@yahoogroups.com, Tobias Patton [EMAIL PROTECTED] wrote: You need to put: implements=mx.controls.listclasses.IDropInListItemRenderer in the declaration of your MXML component. Tobias.

RE: [flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread Stephen Gilson
You can also see an example of an MXML cell renderer that implements an interface here: http://livedocs.macromedia.com/flex/20beta1/docs/1102.html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tobias Patton Sent: Thursday, March

[flexcoders] bind xml string from webservice

2006-03-16 Thread maka3d
I´m trying to bind a xml string that is the return from a webservice call. This is my code: ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; initialize=wsrv.HelloWorld.send() mx:WebService id=wsrv wsdl=http://aspnet.bs2.com.br/Service.asmx?WSDL; mx:operation

RE: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Ted Patrick
Last I heard the Flash player was single threaded. If that's still true, the question of synchronization is moot. Multiple threads have been in the player for some time now. There are multiple threads in the flash player as follows: Single Thread of Execution – AS Execution DisplayList

[flexcoders] ComboBox issue

2006-03-16 Thread Dima Ulich
Hi all, In my application I have a comboBox, when I click it I get this error: RangeError: Error #2006: The supplied index is out of bounds. at mx.managers::SystemManager/addChild() at mx.managers::PopUpManager$/popUpWindow() at mx.controls::ComboBox/getDropdown()

RE: [flexcoders] ComboBox issue

2006-03-16 Thread Joan Tan
Can you post the code for your ComboBox and what the dataProvider looks like? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dima Ulich Sent: Thursday, March 16, 2006 10:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Abdul Qabiz
Hi,I am not sure, if Flash Player can listen on particular socket. But what you can do is to start a session from Flash Player, then you can push data to player from server...You can do p2p apps in Flash Player...two flash player cant communicate over socket, I think that would be a cool

RE: [flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread Peter Farland
is terribly inconsistent about what text to use to reference the styles. It uses font-family, fontFamily, font-weight, borderStyle... What is it supposed to be? Perhaps the documentation didn't explain this but the style names can be represented in either way... it depends on how they're

Re: [flexcoders] bind xml string from webservice

2006-03-16 Thread Abdul Qabiz
I think, you need to define the datagrid columns using mx:DataGridColumn / tag...And may be convert wsrv.HelloWorld.result.records.record to expected datastructing using mx.utils.ArrayUtils.toArray(..)?xml version= 1.0?mx:Application xmlns:mx=http://www.macromedia.com/2005

Re: [flexcoders] Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread Abdul Qabiz
http://www.macromedia.com/bin/webfeedback.cgiOn 3/16/06, mmthm [EMAIL PROTECTED] wrote:Is there any official Adobe/Macromedia site to post formal bug reports and enhancement requests?Thanks.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread thunderstumpgesatwork
So when defining CSS styles or using StyleManager and getStyle/setStyle I should be able to use either one? They're really interchangeable? Can you explain why using setStyle(backgroundColor,0x5A5A5A); works fine, but in CSS, neither form backgroundColor or background-color work at all? The code

Re: [flexcoders] Plz give solution to below error find Urgent?????

2006-03-16 Thread Abdul Qabiz
Anil,Can't see the image you attached. Can you please post it somewhere and send the link instead. Or you can write the steps to reproduce the issuealong with the error you get..-abdul On 3/14/06, anil thakur [EMAIL PROTECTED] wrote: Hi Sir When I starting my flex

[flexcoders] Cairngorm's advocation of ValueObject transfer between application tiers

2006-03-16 Thread sof4real03
I'm currently applying the Cairngorm architecture to a large-scale Flex project with a J2EE midtier. The Computer Scientist in me has been burning me with the following performance question: If we advocate passing entire ValueObject entities across the wire and vice-versa instead of passing only

RE: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread dos dedos
Hi TedRe: If the player was 20 times faster ... I'm sure you can build any language feature you need on top of a language that executed fast enough, but I think it's about more subtle things like the ease of programming and the elegance you can achieve out of the box ... Re: "N Threads -

RE: [flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread Roger Gonzalez
I can't speak to why your particular style isn't being set, but we accept both style name variants as equivilent, because foo-bar-ick gets internally converted to fooBarIck in order to map to AS identifiers (hyphens obviously don't work in identifiers). -rg -Original Message- From:

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread dos dedos
Hi Abdul :)I am not sure, if Flash Player can listen on particular socket. But what you can do is to start a session from Flash Player, then you can push data to player from server...Yes.. I'm leaning towards this approach UNLESS I find out that it's possible t o run an HTTPService polling loop

RE: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Tracy Spratt
How often are you talking about polling? And how many clients? I just built an app that uses both XMLSockets and polling. The polling works fine, using setInterval to invoke it. I have a hundred clients each polling every 2 minutes. The server doesnt even think about breathing

RE: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Tracy Spratt
setInterval does not block user interaction. I think it will do what you need. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dos dedos Sent: Thursday, March 16, 2006 2:32 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

RE: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread dos dedos
It would be awesome if it works for "near realtime" polling ... I'm not hitting a central server when polling... the screen refresh requests go to a local Python server running on the user's desktop.. Load is not an issue ... The interval would be like 1 sec.. So I hope that it does run in its

Re: [flexcoders] 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread Manish Jethani
On 3/16/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: .PivotTableDimColumn { background-color: #5A5A5A; color: #FF; } What's strange is I know the CSS class is getting linked to the column, because the color property is working... the text is white. HOWEVER, the

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Manish Jethani
On 3/17/06, Tracy Spratt [EMAIL PROTECTED] wrote: I am using .NET for the socket server. There are many examples available out there. This one's my favourite: http://www.aflax.org/examples/sockets/sockets.html Manish -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Manish Jethani
On 3/17/06, dos dedos [EMAIL PROTECTED] wrote: It would be awesome if it works for near realtime polling ... I'm not hitting a central server when polling... the screen refresh requests go to a local Python server running on the user's desktop.. Load is not an issue ... The interval would

Re: [flexcoders] Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread Manish Jethani
On 3/16/06, mmthm [EMAIL PROTECTED] wrote: Is there any official Adobe/Macromedia site to post formal bug reports and enhancement requests? The wish form is the official place to post such things. http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform Folks from QA/Dev also lurk on

Re: [flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread Manish Jethani
On 3/17/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Ah, well that explains your problem, unfortunately I'm not sure if or how you can specify in MXML that you're implementing an additional interface. You can comma-separate the interface names in the implements attribute. Manish --

Re: [flexcoders] Application HotKeys Manager

2006-03-16 Thread Manish Jethani
On 3/16/06, t_msreddy [EMAIL PROTECTED] wrote: I want to implement a application hotkey/shortcuts manager. I am implementing a manager class which actually listens to keyboard events at the application level. The problem that i noticed was, when the focus is on some component within the

Re: [flexcoders] Need to add EventListener at the Application level

2006-03-16 Thread Manish Jethani
On 3/16/06, KOT_MATPOC [EMAIL PROTECTED] wrote: is there a way to add an event listener to the Application so that it would listen to ANY let's say change event that will be send from any component within the application?? addEventListener(change, myHandlerFunc, true); Is there also a way

Re: [flexcoders] Restricting drag drop to certain nodes of a tree

2006-03-16 Thread Manish Jethani
On 3/16/06, Robs [EMAIL PROTECTED] wrote: Is it possible to restrict drag drop operation to certain nodes of a tree? If yes, can anyone give me some ideas. If this is Flex 2.0, you can also listen for the dragDrop event and call preventDefault on the Event object. Manish -- Flexcoders

[flexcoders] Flex 2.0: SharedObject

2006-03-16 Thread tyombria
Hello! I have a problem with a SharedObject. When call 'flush()' method of a SharedObject instance, file *.sol is not created immediately. It's created only when close app. I've checked it up. But in doc it's said the file must be created immediately. Also 'clear()' method clears

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Joshua Garnett
The issue I ran into with sockets is that not everyone has all of their ports open, which essentially cuts out a decent portion of users.--JoshOn 3/16/06, Manish Jethani [EMAIL PROTECTED] wrote: On 3/17/06, Tracy Spratt [EMAIL PROTECTED] wrote: I am using .NET for the socket server. There are

RE: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Ted Patrick
Currently network operations run in separate threads that AS Execution and DisplayList Rendering. Only when data has been loaded, do these events cascade into the ASExecution. Networking threads include all calls to: LoadVars, XML, LoadMovie, LoadVariables, URLStream, Socket, XMLSocket,

[flexcoders] Re: Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread mmthm
I guess this is better than nothing, but it is very old style to be hiding behind a suggestion page. I was really hoping for a webapp such as bugzilla or JIRA where i could see the state of my request or bug. I would like to see a discussion. What are other people asking for? What are all

Re: [flexcoders] Flex Builder 2 Beta - Wrong Flash Player Version?

2006-03-16 Thread Jordan Snyder
Yeah that's about right! So have you been able to resolve anything at all? I can obviously compile, so I can move it to another machine or something...but this is debilitating really! I'm super pissed, who can I complain to? OH right, it's BETA. Damn. On 3/16/06, dos dedos [EMAIL

RE: [flexcoders] ComboBox issue

2006-03-16 Thread Dima Ulich
dataProvider is really simple, in fact I tried different ways to give data to comboBox. The problem was there even when I tried this mx:Object label=Test 1 id=1/ mx:Object label=Test 2 id=2/ mx:Object label=Test 3 id=3/ I just figured that the problem only happens when I set topMost to true. I

Re: [flexcoders] Flex 2: thread management, synchronous methods, etc

2006-03-16 Thread Darron J. Schall
dos dedos wrote: I'm trying to find out from if it's possible to have a separate thread that does constant polling (of new screen data), i.e. without interrupting the AS execution thread. This way I won't have to develop a custom push-pull protocol on top of binary socket (I would rather

[flexcoders] FLV encoder

2006-03-16 Thread Manish Jethani
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

Re: [flexcoders] Flex Builder 2 Beta - Wrong Flash Player Version?

2006-03-16 Thread John Dowdell
Jordan Snyder wrote: Yeah that's about right! So have you been able to resolve anything at all? I can obviously compile, so I can move it to another machine or something...but this is debilitating really! I'm super pissed, who can I complain to? OH right, it's BETA. Damn. I had read

RE: [flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread Gordon Smith
Best practice in Flex apps is to use fooBarIck, because this works in both CSS and in ActionScript. But if you have an old HTML CSS file that uses foo-bar-ick, our CSS parser -- but no other code in Flex -- will convert it to fooBarIck. This is a convenience conversion for CSS compatibility. -

RE: [flexcoders] Need to add EventListener at the Application level

2006-03-16 Thread Gordon Smith
This works for a click event because it's a bubbling event that will bubble up the parent chain all the way to the Application. It wouldn't work for a change event, which is non-bubbling. However you can use the capture phase of event processing to give the Application a crack at an

RE: [flexcoders] Re: Flex 1.5 popup issue

2006-03-16 Thread Dimitrios Gianninas
So you should have a Wizard.mxml under the /components folder right? At the main application lies in the root called app.mxml or something? Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
You guys ROCK!!! I tried both the solutions MXML as well as AS, both worked great. --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Ah, well that explains your problem, unfortunately I'm not sure if or how you can specify in MXML that you're implementing

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
Manish thanks for your awesome help. The proposed solution works. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/17/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Ah, well that explains your problem, unfortunately I'm not sure if or how you can

RE: [flexcoders] Flex 2.0: SharedObject

2006-03-16 Thread Belinda Nambooze
Both those issues were logged as bugs and have since been fixed. They should be working in beta2. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tyombria Sent: Thursday, March 16, 2006 12:02 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: 2.0B1 - Use of CSS style sheet with DataGridColumn styleName

2006-03-16 Thread thunderstumpgesatwork
Thanks for that info. I'm glad to hear that it is at least known as a bug. So, styleName on DataGridColumn is deprecated? What is the suggested way of applying a style class to a column, or a cell? What about the headerStyle style of the DataGridColumn, is that deprecated also? It should be

RE: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Ted Patrick
You can run a socket server over port 80 or many common open ports. Plus another thing to keep in mind is that with Flash Player, connections are initialized from behind the firewall out to the Internet. Reusing common ports is the simplest answer. Actually using Python Twisted we

[flexcoders] Re: Web Service Call - Flex 2 (Complex Type with Args)

2006-03-16 Thread Richie Rich
Hi Pete, Thanks for responding - I went ahead and sent the WSDL to your email addy. Let me know if it made it or it you need anything else. Rich --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: I can take a look. Can you send me the WSDL directly? Thanks,

Re: [flexcoders] Newbie again: Trouble implementing custom class (Flex2b)

2006-03-16 Thread Michael Schmalle
Well, for starters; com.jbe.picfindr should be projectroot/com/jbe/picfinder/pfHTTPService.as Try that, you need the dots to be actuall directory structure. Are you dead ending the : HTTPService(rootURL:String = null) signature? If not, your super needs to look like

[flexcoders] Re: Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread kautsky62
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/16/06, mmthm [EMAIL PROTECTED] wrote: Is there any official Adobe/Macromedia site to post formal bug reports and enhancement requests? If you post a comment on LiveDocs you get a mail back saying... To report

[flexcoders] How to access rendered item in TileList (Flex 1.5)

2006-03-16 Thread Dmitry Miller
Does anyone know how to set propeties of rendered items in TileList given dataProvider index? I tried setPropertiesAt but this only lets me manipulate cell wrapperObject properties. Thanks, --- Dmitry -- Flexcoders Mailing List FAQ:

Re: [flexcoders] FLV encoder

2006-03-16 Thread Jignesh Dodiya
check vitalstream On 3/17/06, Manish Jethani [EMAIL PROTECTED] wrote: I'm writing a sample app that requires conversion of video fromvarious formats (MPEG, AVI, etc.) to FLV on the server side. Is therea good FLV encoder out there that runs on GNU/Linux? I've heard of ffmpeg and On2, but I

[flexcoders] Flex Job Opening

2006-03-16 Thread ffej1138
My company is looking for a flex developer. My previous flex demos have met with such a warm welcome that we want to pursue it further. Anyone out there interested? Check out the job description. http://jobs.netflix.com/DetailFlix.asp?flix1208 Thanks Jeff Marsh -- Flexcoders Mailing List

Re: [flexcoders] Re: Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread Michael Schmalle
Being that Adobe aquired the small company MM, wouldn't it not be a strectch to say that this kind of bug reporting is in the future? Seems like it would since they are giving developers the debugging task now??? :-) How much time and resources do you think they are saving on having 'US' help

Re: [flexcoders] FLV encoder

2006-03-16 Thread Nirav Mehta
Hi Manish, 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.

RE: [flexcoders] Re: Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread Gordon Smith
Hi, Mike. Sorry, I'm not clear on what the problem is. Pretty much all software companies have public betas now. In our case, they don't substitute for Adobe's own QA, they augment it. We have approximately a 1:1 QA-engineer-to-dev-engineer, so we're not skimping on in-house QA.