[flexcoders] Re: Problem with variable initialization

2005-03-26 Thread cazzaran
Matt, That worked! Thanks man, you saved me a lot of headache... -Josh --- In flexcoders@yahoogroups.com, Matt Chotin <[EMAIL PROTECTED]> wrote: > It will use a getter if it knows to request the property. So if you specify > a labelField or if you're using DataGrid and you create a column wit

RE: [flexcoders] Re: Problem with variable initialization

2005-03-26 Thread Matt Chotin
It will use a getter if it knows to request the property.  So if you specify a labelField or if you’re using DataGrid and you create a column with the columnName of the getter it’ll be fine.   Matt   From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 7:16

RE: [flexcoders] FlashComm video

2005-03-26 Thread Matt Chotin
And Christophe has an example here: http://www.coenraets.com/viewarticle.jsp?articleId=90   From: Thijs Triemstra | Collab [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 7:25 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] FlashComm video   Hi Seth,

Re: [flexcoders] FlashComm video

2005-03-26 Thread Thijs Triemstra | Collab
Hi Seth, I created a simple swf with the Video object in Flash and load this into Flex. Flex makes the connection with FlashCom and controls a few functions in the swf, like the connection with Camera() Let me know if you need the source and I'll sent it over. http://www.collab.nl/flex/videomixer

[flexcoders] Re: Problem with variable initialization

2005-03-26 Thread cazzaran
Matt: Will the dataproviders of List controls use the getter? I thought they only looked at the member data... -Josh --- In flexcoders@yahoogroups.com, Matt Chotin <[EMAIL PROTECTED]> wrote: > When the constructor is called none of the variables have been assigned yet. > How about instead of t

[flexcoders] FlashComm video

2005-03-26 Thread Seth Voltz
Greetings, So I have been trolling the web, searching newsgroups, mail archives, forums, etc... I can't find a way to embed the Flash video object in my flex project for streaming video via FCS and capturing my webcam. I have tried the following code as a last ditch effort and it also fails (well,

RE: [flexcoders] Problem with variable initialization

2005-03-26 Thread Matt Chotin
When the constructor is called none of the variables have been assigned yet.  How about instead of the variable data you use a getter:   Public function get data() : String {   Return id; }   Matt From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 6:1

[flexcoders] Problem with variable initialization

2005-03-26 Thread cazzaran
I have a weird (to me, anyway) problem. I have some AS 2 objects that are client models of my Hibernate POJOs on my server. I want to get all my data set to the members of my class, but then have another variable, "data", set to the same value as my "id" variable. This is so when I get an array

Re: [flexcoders] method to list properties / describe class ?

2005-03-26 Thread Nate Nielsen
Just found UIObjectDescriptor in docs is what i was lookin for.   Nevermind   =)   - Original Message - From: Nate Nielsen To: flexcoders@yahoogroups.com Sent: Saturday, March 26, 2005 7:01 PM Subject: [flexcoders] method to list properties / describe class ?

[flexcoders] method to list properties / describe class ?

2005-03-26 Thread Nate Nielsen
is the a method to list the properties / methods / etc of a particular class ?  anyway to do something similar by accessing the class and properties via associative array syntax maybe?   i'd like to build something to auto-document my mxml components / classes and their properties / values

[flexcoders] Inserting a checkbox into a datagrid

2005-03-26 Thread digital_eyezed
How can I insert a checkbox into a datagrid? I have collected some data from a database, inserted it into the datagrid and now want to allow the customer to 'check' the items they wish to select(multiple). Is this possible?? Yahoo! Groups Links <*> To visit your group on the web, go to

Re: [flexcoders] Flex 1.5 price

2005-03-26 Thread Igor Costa
So, talk about Price is really worsth. But I belive that Macromedia obiviously has some bussiness strategics for Flex Price. Answer me anyone from the list, Who create a sotware that could not sell? Anyone is insane to do theses things. Well, Flex still a conception of future and talk about fut

[flexcoders] Re: Star System]

2005-03-26 Thread pioplacz
Hi again! Sound kind of stupid but how can i make the stars smaller they are to big... could not open the file in any program :S and nothing happens when i try to decide width and height for it.. --- In flexcoders@yahoogroups.com, Ketan Bengali <[EMAIL PROTECTED]> wrote: > here it is.. > >

RE: [flexcoders] RowRenderer for Custom List

2005-03-26 Thread Matt Chotin
FlexForFlash.zip is there for 1.0 compatibility, since we updated the skins in 1.5 to be mostly programmatic the need for exposing much of the source went away.   Note that the classConstruct() method you see is static, so you can’t just override it.   Thanks for the compliment J  

RE: [flexcoders] Classref for a classname stored in a string

2005-03-26 Thread Jeff Krueger
Thanks matt for pointing out what I should have gotten.  Sometimes I just need to slow down a little bit.  Keeping up with all the emails can be a little hard, and for some reason my search didn’t find it or if it did the title of silly question didn’t help much.  Oh well, thanks for poin

RE: [flexcoders] RowRenderer for Custom List

2005-03-26 Thread Simon Fifield
Thanks Matt,   I've just been trawling through the thousands of Flexcoders posts and found a reply you sent to someone explaining how you can use FDB to view the code because it is probably different to the classes found in FlexForFash resources.   A little dissappointing that these clas

RE: [flexcoders] Classref for a classname stored in a string

2005-03-26 Thread Matt Chotin
I think Gordon along with others answered this yesterday.  mx.utils.ClassUtil.findClass() can do it for you.  You must make sure the class also got itself linked in.  If somewhere else you have a typed reference to the class you should be OK, otherwise you should declare a dummy variable

RE: [flexcoders] Re: Cyclical References

2005-03-26 Thread Matt Chotin
The “NoChange” event means that we don’t know the type of the object we’re trying to bind from (or it’s a getter/setter with no change event).  Usually when we insert that event it’s accompanied by a binding warning to indicate that the type of the property is unknown (I forgot to ask if

RE: [flexcoders] RowRenderer for Custom List

2005-03-26 Thread Matt Chotin
In init() you can do rowRenderer = com.mango.controls.ListMenuRow (no quotes).   rowRenderer takes either a String or a Class, so pass the class in init() and I think you’ll be fine.   Matt   From: Simon Fifield [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 3:06

[flexcoders] Classref for a classname stored in a string

2005-03-26 Thread Jeff Krueger
All,       I am trying to get a classRef from a string variable that contains a class name.  I am trying to use this in the function createSegment in the accordion control.  The function requires you to pass a class name like mx.containers.Canvas.  You can’t pass in a string.  I

RE: [flexcoders] Re: Cyclical References

2005-03-26 Thread Joe Berkovitz
I am sure that Matt is right about not being able to reliably detect the circularity (as he says, he'd have fixed it!), but there _does_ seem to be a consistent feature of broken property bindings. The watcher setup code in generated AS in the broken case seems to contain references to a special

Re: [flexcoders] Flex 1.5 price

2005-03-26 Thread Scott Barnes
That all being said, does anyone else find it super strange that justification for enterprise level software is it must be expensive? *Kind of motivates you to create an intranet based app to do something enterprise wise hehe* Me personally, I loathe FLEX price tag and would love to see it availa

[flexcoders] RowRenderer for Custom List

2005-03-26 Thread Simon Fifield
Hi,   I'm trying to extend the List class and the default SelectableRow rowRenderer. I have successfully extended the List class but cannot get it to use my RowRenderer.   It works if I use the rowRenderer property in MXML (with the full class & path - com.mango.controls.ListMenuRow) but

RE: [flexcoders] Any Idea about Cairngorm 1.0?

2005-03-26 Thread Steven Webster
Hey Shahn,   We're currently delivering some projects internally, that have allowed us to road-test some of the decisions that were made about 1.0; we're currently pulling together everything into a 1.0 release candidate, along with some response to the feedback for sample applications that

RE: [flexcoders] Flex 1.5 price

2005-03-26 Thread Robert Stuttaford
And all of this back-n-forth on a rumour, and one regarding something happening on April the FIRST! One thing to remember: MM made Flex for the big Enterprise-level companies. Granted, it's useful to everyone, not just these companies. I guess MM won't mind being blamed for making such awesome so