RE: [flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Francis Cheng
Its a doc bug that its missing from the Statements, Keywords and Directives page. Ill add it soon. Francis From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Friday, March 10, 2006 11:36 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Flex2: watch/unwatch AS3 solution to track component enabled property

2006-03-10 Thread Gordon Smith
You should file a bug for us to make the 'enabled' property bindable. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Blazejewicz Sent: Thursday, March 09, 2006 4:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2:

RE: [flexcoders] Component that has event listeners and handles it's own event

2006-03-10 Thread Gordon Smith
In Flex 1.X, the order in which event handlers on an object execute isn't well-defined. In Flex 2, the order in which event handlers on an object execute is deterministic: 1. Higher priority handlers execute before lower priority ones. 2. For handlers with the same priority, those added earlier

RE: [flexcoders] Re: Weird Gradient Fill error

2006-03-10 Thread Gordon Smith
Soon. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Scott Fanetti Sent: Thursday, March 09, 2006 5:30 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Weird Gradient Fill error Roger, Do you have any timeline on when

RE: [flexcoders] Component that has event listeners and handles it's own event

2006-03-10 Thread Gordon Smith
generally listeners execute in the order they were added, though that order is not guaranteed. Yes, it is now, if they have the same priority. I've sent a reply to the list. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin

RE: [flexcoders] Can we change upIcon of Button class dynamically without Embed?

2006-03-10 Thread Gordon Smith
You could write a subclass of Button that displayed a dynamic icon. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Friday, March 10, 2006 2:38 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Can we

RE: [flexcoders] Re: Weird Gradient Fill error

2006-03-10 Thread Jonathan Miranda
What the hell am I looking at? When does this happen in the movie? Now. Youre looking at now sir. Everything happens now, is happening now What happened to then? We passed then Go back to then We missed it. When? Just now? When will then be now? Soon J (sorry, Im actually looking at the

Re: [flexcoders] Flex2 : MP3 Audio player, play problem...

2006-03-10 Thread Manish Jethani
On 3/11/06, Benoit Hediard [EMAIL PROTECTED] wrote: I'm currently trying to build a very basic MP3 audio player with Flex2, based on the SoundChannel code example. The MP3 file is successfully loaded, ID3 tags are available, length is 0. But when I press play I've got immediatly the

Re: [flexcoders] How to implement custom drawing for selected list items?

2006-03-10 Thread Manish Jethani
On 3/11/06, tobiaspatton [EMAIL PROTECTED] wrote: [snip] When the user changes the selection in the list, updateDisplayList() is called for the newly deselected and selected items. My first thought was to inspect the selectedItems attribute of the parent list and adjust the drawing

Re: [flexcoders] Deselected list row uses roll-over color.

2006-03-10 Thread Manish Jethani
On 3/11/06, tobiaspatton [EMAIL PROTECTED] wrote: I have a list that uses the standard item renderer and has multiple- select set to true. If I select a range of rows, and then ctrl- click to deselect one of the rows, the de-selected row is drawn with its background color set to the roll-over

RE: [flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Gordon Smith
If FlexBuilder is inserting 'native', that's a bug. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Friday, March 10, 2006 11:36 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: FB2 :: Error

[flexcoders] Re: Effects - Newbie help

2006-03-10 Thread Brent Johnson
OK, I got it. First of all, I AM using embeded fonts, so alpha does work. Second, I don't want a dissolve. I want a fade because I have a graphical background. The answer (thanks to Kevin Hoyt) is as follows: 1) Create the fadeOut effect with an event handler for effectEnd. 2) In the event

Re: [flexcoders] Forced to use MoveEvent?

2006-03-10 Thread Manish Jethani
On 3/11/06, Jason Y. Kwong [EMAIL PROTECTED] wrote: My custom component broadcasts an event called move. So I declare it in the MXML: mx:Metadata [Event(name=move, type=flash.events.Event)] /mx:Metadata And then later dispatch it: dispatchEvent(new Event(move));

Re: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread Manish Jethani
On 3/10/06, dos dedos [EMAIL PROTECTED] wrote: can you show an example of how to do that? Go here: http://tasmania.globat.com/~mannu.info/flex/fTube/index.html You can see a Flex 2.0 Beta 1 app if you have Flash Player 8.5. Now do a View Source from your browser's *main menu* (not the context

Re: [flexcoders] rowIndex columnIndex while rendering in Flex 2.0

2006-03-10 Thread Manish Jethani
On 3/10/06, stchavan [EMAIL PROTECTED] wrote: In Flex 2.0, we can get rowIndex and columnIndex for a datagrid cell, when it is being edited, by using event.rowIndex and event.columnIndex (where event is a DataGridEvent like cellBeginEdit, cellEndEdit etc.) Similarly, how can we retrieve the

RE: [flexcoders] rowIndex columnIndex while rendering in Flex 2.0

2006-03-10 Thread Dustin Mercer
Another way is to cast the list data to DataGridListData I.E. DataGridListData(listData).rowIndex or DataGridListData(listData).coulmnIndex Dustin Mercer -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Friday, March 10,

RE: [flexcoders] Re: Forced to use MoveEvent?

2006-03-10 Thread Gordon Smith
That's right, your move event was conflicting with the one inherited from UIComponent. When you write an event handler attribute in MXML such as mx:Label id=label move=label.text=event.x/ the MXML compiler autogenerates an event handler that looks something like this:

[flexcoders] WSDLResponse not resolvable

2006-03-10 Thread Jonathan Miranda
Need help with an error message - Working with BlueDragon (aka .Net), Im attempting a WebService in Flex. Doing a cfinvoke works fine and looking at the wsdl produced from the CFC it looks finebut I get this when I try a WebService call. Element

[flexcoders] Re: WSDLResponse not resolvable

2006-03-10 Thread Doug Lowder
Looks like some kind of mismatch between GetCities and GetCitiesResponse in your code (although I didn't see a definition for GetCitiesResponse). Maybe try: mx:operation name=GetCities fault=Alert.show ('Error:'+event.fault.faultstring,'Error',Alert.OK) result=getCitiesHandler(event) ...

RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-10 Thread Jonathan Miranda
Nah, its not the response not being there.oddly enough passing a string works fine its a return type of Any (object) or Struct that blows up. _ Jonathan Miranda Flexible Master of the Web Try not to become a man of success, but a man of

[flexcoders] Re: DateTimeAxis for use in a scheduler.

2006-03-10 Thread nulloperator
Its hard to believe no one has figured this out yet. --- In flexcoders@yahoogroups.com, nulloperator [EMAIL PROTECTED] wrote: Hello all. I am currently testing the Flex 2.0 platform and am using it for a smester project at my college. I am currently developing a scheduling application in

Re: [flexcoders] rowIndex columnIndex while rendering in Flex 2.0

2006-03-10 Thread Manish Jethani
On 3/11/06, Dustin Mercer [EMAIL PROTECTED] wrote: Another way is to cast the list data to DataGridListData I.E. DataGridListData(listData).rowIndex or DataGridListData(listData).coulmnIndex Aw, yes, this is the correct way (forget what I posted earlier). Manish -- Flexcoders Mailing List

[flexcoders] WebService - Returning a complex object

2006-03-10 Thread phatboychatter
Where is the documentation on handling a complex object returned from a web service? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

[flexcoders] Re: Flex2: watch/unwatch AS3 solution to track component enabled property

2006-03-10 Thread Peter Blazejewicz
--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: You should file a bug for us to make the 'enabled' property bindable. - Gordon Hi Gordon, done, regards, Peter Blazejewicz -- Flexcoders Mailing List FAQ:

[flexcoders] Re: WSDLResponse not resolvable

2006-03-10 Thread Doug Lowder
So your webservice can be made to work/fail based on what the cfc is returning? String good... Object/Struct bad... --- In flexcoders@yahoogroups.com, Jonathan Miranda [EMAIL PROTECTED] wrote: Nah, it's not the response not being thereoddly enough passing a string works fine - it's a

[flexcoders] Re: Component that has event listeners and handles it's own event

2006-03-10 Thread george_lui
Thanx for the info Gordon. Unfortunately we're using 1.5 still. And yes, it's undeterministic what executes first. George --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: In Flex 1.X, the order in which event handlers on an object execute isn't well-defined. In

[flexcoders] Re: Deselected list row uses roll-over color.

2006-03-10 Thread tobiaspatton
The color stays when the mouse is moved. Actually, for my test the list had the style use-roll-over set to false. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/11/06, tobiaspatton [EMAIL PROTECTED] wrote: I have a list that uses the standard item

[flexcoders] Re: How to implement custom drawing for selected list items?

2006-03-10 Thread tobiaspatton
Hi Manish My listItemRenderer is an MXML component that dervies from VBox. It doesn't have a listData attribute. I looked up listData renderer and found that components that wish to be a drop-in renderer should implement the IDropInListItemRenderer interface. I take this to mean that my

Re: [flexcoders] Re: How to implement custom drawing for selected list items?

2006-03-10 Thread Manish Jethani
On 3/11/06, tobiaspatton [EMAIL PROTECTED] wrote: I take this to mean that my VBox-based list item renderer should implement this interface, but I don't know how to accomplish this. If my component were an AS file, it would be simple. But how can an MXML component implement an interface?

[flexcoders] Problem Calling an ActionScript function from JavaScript

2006-03-10 Thread Malakhova, Ksenia S.
Title: Problem Calling an ActionScript function from JavaScript (Flex 1.5, AS 2) In my application I need to a call ActionScript function from _javascript_ and pass a couple of parameters back to Actionscript. I am using Flash-_javascript_ integration kit for it. I got it to call the

Re: [flexcoders] Tree+ datas from mySQL

2006-03-10 Thread Jignesh Dodiya
Matt, Thanks for your descriptive reply. Actually I am fetching RecordSource from database for categories and products. (categories have sub categories too). What I need to do is show all these products as tree. where all firstchild will be categories, they also have many childs as many sub

[flexcoders] Can we change upIcon of Button class dynamically without Embed?

2006-03-10 Thread sn197412
Hi. Can we change upIcon of Button class dynamically without Embed? I mean I want to change Button face at runtime via downloading image file. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Runtime error #1034

2006-03-10 Thread Manish Jethani
On 3/10/06, ZhaoXingdong [EMAIL PROTECTED] wrote: * Note: This error is thrown while the compiler is checking the bytecode; that is, before executing the code. Under normal circumstances, you should never see this error. If you are using the Macromedia compiler and see this error, please file

Re: [flexcoders] Can we change upIcon of Button class dynamically without Embed?

2006-03-10 Thread Manish Jethani
On 3/10/06, sn197412 [EMAIL PROTECTED] wrote: Can we change upIcon of Button class dynamically without Embed? I mean I want to change Button face at runtime via downloading image file. Nopes, the icon must be embedded. Manish -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Flex2: watch/unwatch AS3 solution to track component enabled property

2006-03-10 Thread Peter Blazejewicz
Hello Matt, yes, all other required properties are dispatched by framework (move, show, hide, changes in states, etc) and thats very easy in flex to register for that events from component for every container down to application root and unregister when component is destroyed :D thanx for taking

[flexcoders] Re: Runtime error #1034

2006-03-10 Thread nahruka
Thank you very much! It worked perfectly! --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/9/06, nahruka [EMAIL PROTECTED] wrote: mx:TileList dataProvider={arr} listItemRenderer={Grup}/mx:TileList I think changing that to the following should do the

[flexcoders] FlexUnit test case not returning result from service call

2006-03-10 Thread posttoumesh
I am using FlexUnit framework to write a test case to make a call to a remote service(java function) the test case runs fine,talks to server and returns but I am not getting result back in the client. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread dos dedos
I believe the same problem exists with dynamically generated HTML pages. Some very complex database-driven sites are made of only one physical page, with content for all the different views (and the view templates) being pulled from the database. This way the only content that get indexed by

[flexcoders] resize panel component for flex 2 (revisited) !

2006-03-10 Thread jeremy lu
demo: http://ria.richtechmedia.com/go.php?http://ria.richtechmedia.com/upload/resizePanel2/ blog entry: http://ria.richtechmedia.com/?p=334 features: feature sets: (you need flash player 8.5 to see it, which can be downloaded from adobe labs 1.drag-move the panel 2.drag-resize the panel

[flexcoders] Themes are gone when using rsl...??

2006-03-10 Thread moyosaned
Anybody got a solution? .. I can't use RSL.. Theme is gone when i do -- 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

[flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-10 Thread Michael Schmalle
Hello, Lets see here, the question is kinda odd... I have the following; private function _getProjectAt(id:uint):Project { var cursor:IViewCursor = projectsQueue.getCursor(); while (!cursor.afterLast) { var curProject:Project = cursor.current as Project; var curID:uint

[flexcoders] Get Parent on the Tree

2006-03-10 Thread digital_eyezed
Hi All, If I click on a node in a tree, how can I get the parent of that node? The tree dataProvider is filled from a result object of which the attributes are label and data (it only goes down one level in a hierarchy): node label= data= node label= data= node label= data= node

Re: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread Manish Jethani
On 3/10/06, dos dedos [EMAIL PROTECTED] wrote: Color Blind Bots? How about inserting HTML text contents in your index.htm in white font (on white background)? The index.htm would load the Flash SWF object but it would also contain text that is only visible to the search engine crawler. So

RE: [flexcoders] Themes are gone when using rsl...??

2006-03-10 Thread Roger Gonzalez
I assume you're talking about 1.5 here. Themes in 1.5 are a linker trick that says use this replacement definition instead of the one you were going to use. Because the use of RSLs says don't include any of these definitions, they'll be pulled in at runtime, the theme definitions are also

[flexcoders] RemoteObject - ColdFustion

2006-03-10 Thread webfungi
New to Flex and have been working with the phone application. But I am now uncertain about how to send data from Flex to the CFC in ColdFusion. The Live Docs have the information below. Is the mx:arguments where I would put the data to send to the CFC. Is this a child of the mx:method. Need

Re: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread dos dedos
there you go!can you show an example of how to do that?Manish Jethani [EMAIL PROTECTED] wrote: On 3/10/06, dos dedos [EMAIL PROTECTED] wrote: Color Blind Bots? How about inserting HTML text contents in your index.htm in white font (on white background)? The index.htm would load the Flash

[flexcoders] Flex2 :: ObjectProxy subclass :: Compiler error on getProperty() override

2006-03-10 Thread Michael Schmalle
Hello, Anybody had any luck with the Proxy/ObjectProxy class!! I have this class; package com.teotigraphix.teodoc.core { import com.teotigraphix.teodoc.core.TEODocObject; import mx.utils.ObjectProxy; import mx.utils.events.ObjectEvent; import com.teotigraphix.teodoc.core.IProject;

RE: [flexcoders] Flex2 :: ObjectProxy subclass :: Compiler error on getProperty() override

2006-03-10 Thread Peter Farland
You don't seem to be importing the namespace and declaring that it will be used in the class... try this: package com.teotigraphix.teodoc.core { import com.teotigraphix.teodoc.core.TEODocObject; import mx.utils.ObjectProxy; import mx.utils.events.ObjectEvent; import

RE: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread Matt Chotin
Actually Google (and probably other engines) checks for stuff like that and throws it out.  Too many unsavory sites do those kinds of tricks to get unsuspecting people. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dos dedos

[flexcoders] [Flex 1.5] Flash 8 Advanced Anti-aliasing

2006-03-10 Thread Carlos Rovira
Hi,I'm trying to figure if it's possible to load an SWF with an embeded font with embeded antialiaing.Other times to bring flash 8 capabilities like File Upload or Filters, people use mx:Loader to load a SWF used like a wrapper to the requested functionality. Is this possible with fonts?. (I

[flexcoders] rowIndex columnIndex while rendering in Flex 2.0

2006-03-10 Thread stchavan
Hi, In Flex 2.0, we can get rowIndex and columnIndex for a datagrid cell, when it is being edited, by using event.rowIndex and event.columnIndex (where event is a DataGridEvent like cellBeginEdit, cellEndEdit etc.) Similarly, how can we retrieve the rowIndex and columnIndex, when a cell is

RE: [flexcoders] SEO strategies for RIA?

2006-03-10 Thread dos dedos
Does that apply to Manish's proposed solution, too?Manish,If your solution is kosher by Google then it would be nice to have an example...ThanksMatt Chotin [EMAIL PROTECTED] wrote:Actually Google (and probably other engines) checks for stuff like that and throws it out. Too many

[flexcoders] Re: Prob]lem with wordwrap - flex 1.5

2006-03-10 Thread pasflex
Thanks for the response. Same behavior when setting the width of the column, as long as the column is narrow enough to cause the contents of the cell to take up more vertical space than the height of a grid row. Basically as soon as you click the scroll arrow the column keeps resizing itself

RE: [flexcoders] dataService with pk

2006-03-10 Thread Matt Chotin
Make sure that you have the mapping AS classes on the client-side? The dotted properties in identity arent supported. And yes, FES will require you to return a List instead of an Array if you want it supported for management. I believe RemoteObject will still support the object array,

Re: [flexcoders] Flex2 :: ObjectProxy subclass :: Compiler error on getProperty() override

2006-03-10 Thread Michael Schmalle
Thanks Peter! I had an intution that I needed use namespace but, HA that is what I get for looking at BETA docs! That example is completly out in left field. Thanks, that was the problem. PS, no offense intended but, when Adobe documenters create examples, are they even testing them or is

RE: [flexcoders] Remote calls and Security

2006-03-10 Thread Jonathan Miranda
Got any material on this stuff? (web.xml? I thought it was crossdomain.xml) Ill have to try the RemoteObject over SSL, havent tangoed with that yet. _ Jonathan Miranda Flexible Master of the Web Try not to become a man of success, but a man

[flexcoders] Forced to use MoveEvent?

2006-03-10 Thread Jason Y. Kwong
My custom component broadcasts an event called move. So I declare it in the MXML: mx:Metadata [Event(name=move, type=flash.events.Event)] /mx:Metadata And then later dispatch it: dispatchEvent(new Event(move));But I get a runtime error when dispatching: Type Coercion failed: cannot convert

[flexcoders] Re: Forced to use MoveEvent?

2006-03-10 Thread Jason Y. Kwong
Actually, never mind. I think I figured it out. An event named move was already declared previously by the framework. I guess I should just call it something else. An interesting scenario, anyway... On 3/10/06, Jason Y. Kwong [EMAIL PROTECTED] wrote: My custom component broadcasts an event

[flexcoders] Deselected list row uses roll-over color.

2006-03-10 Thread tobiaspatton
I think this is a bug. I have a list that uses the standard item renderer and has multiple- select set to true. If I select a range of rows, and then ctrl- click to deselect one of the rows, the de-selected row is drawn with its background color set to the roll-over color of this list.

[flexcoders] Re: datagrid column assistance needed

2006-03-10 Thread gault17
Matt, I'm trying to change the individual cell. The following cell renderer works except that the color applies to all rows in the cell instead of just the ones that meet the condition. Any ideas or comments for improvement on the code? Speaking as a former PowerBuilder developer, cell renders

[flexcoders] Re: RemoteObject and Enterprise Services

2006-03-10 Thread mvbaffa
Thanks Matt, will I be able to use, for example, amfphp to connect Flex 2 applications ? Baffa --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: I believe we announced that there will be a connection-limited license for Flex Enterprise Services that is free. So

[flexcoders] FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Michael Schmalle
Hello, When creating a subclass that extends Error, I encountered something I have not seen before. Code... created by Flex Builder 2 beta1 package com.teotigraphix.teodoc.errors.projects { public class NullProjectError extends Error { native public function

[flexcoders] How to implement custom drawing for selected list items?

2006-03-10 Thread tobiaspatton
I have a custom list item renderer and would like to change the behavior of its updateDisplayList() method depending on whether the item is currently selected. When the user changes the selection in the list, updateDisplayList() is called for the newly deselected and selected items. My first

[flexcoders] Flex job posting ...

2006-03-10 Thread dos dedos
Someone asked me today where they should post flex jobs ... For future reference, is this list the right place? how about the forum? Or is there another more suited place for job posts? Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. -- Flexcoders Mailing List

[flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Peter Blazejewicz
Hello Mike, native from what I've learned from docs is replacement for intrinsic in AS2 language, see Global.as flex framework class, that is real native usage sample, all impementation is within plugin, and class is for compile time check only, regards, Peter Blazejewicz -- Flexcoders

Re: SPAM-LOW: [flexcoders] Flex job posting ...

2006-03-10 Thread Ryan Stewart
 The best resource I've seen is probably CFlex - http://www.cflex.net/They tend to have a pretty good listing and I would assume their traffic is high with flexers.-RyanFrom: dos dedos[mailto:[EMAIL PROTECTED]Sent: Friday, March 10, 2006 7:05 PM -08:00To: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] DragManager issues when running in swf inside a swf

2006-03-10 Thread Karl Johnson
No luck with this. I have tried about a million different solutions. Is there a documented work around for this in Macromedia support? Any other possible ways of gettings this to work? Thanks for your help. Karl From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Michael Schmalle
Hey, Thanks, that is what I thought, just wondered why FB2 inserts it on a constructor. :) PS, You found it in the docs? Where would that be so I can check it out. If it's in the Statements, Keywords and Directives I must be blind! Peace, MikeOn 3/10/06, Peter Blazejewicz [EMAIL PROTECTED]

[flexcoders] Re: datagrid column assistance needed

2006-03-10 Thread Doug Lowder
I usually use something like an mx:Box container to make it easier to set the background color, then add children to that. Something like the example below. BTW, don't get fooled into believing the 3rd parameter of setValue is a Boolean. It's actually a String representing one of the three

Re: [flexcoders] Flex job posting ...

2006-03-10 Thread dos dedos
Thanks, RyanRyan Stewart [EMAIL PROTECTED] wrote: The best resource I've seen is probably CFlex - http://www.cflex.net/They tend to have a pretty good listing and I would assume their traffic is high with flexers.-RyanFrom: dos dedos[mailto:[EMAIL PROTECTED]Sent: Friday, March 10, 2006 7:05

RE: [flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Matt Chotin
I dont think FB2 should have inserted the native keyword in the constructor, if its your class it isnt native J Ill check if we have a bug on that. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Friday, March 10, 2006

[flexcoders] Re: FB2 :: Error subclass :: What is 'native' attribute FB2 inserts

2006-03-10 Thread Peter Blazejewicz
Hi Mike, --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: PS, You found it in the docs? Where would that be so I can check it out. If in specifications:

[flexcoders] Flex2 : MP3 Audio player, play problem...

2006-03-10 Thread Benoit Hediard
I'm currently trying to build a very basic MP3 audio player with Flex2, based on the SoundChannel code example. The MP3 file is successfully loaded, ID3 tags are available, length is 0. But when I press play I've got immediatly the soundComplete event. What's wrong here? I've tried with several