[flexcoders] mxml components

2010-01-04 Thread ztpi1
Is it possible to use the components in the flex framework without using mxml?

Re: [flexcoders] mxml components

2010-01-04 Thread David Pariente
Yes, i think from flex you can perfectly use them using only AS3. No secret about that. If you mean using them in flash, i thing it's also possible using the special packaged flex component kit for flash, available at flex website. -- David Pariente RIA consultor

[flexcoders] MXML Components and measure()

2008-12-11 Thread Michael Prescott
When is it that you have to implement measure()? If you're building components in MXML, purely out of other standard Flex components, do you ever need to bother with measure()? I'm making an MXML item renderer, and I'm running into some trouble with the DataGrid handling the variable row height

RE: [flexcoders] MXML Components and measure()

2008-12-11 Thread Alex Harui
Of Michael Prescott Sent: Thursday, December 11, 2008 2:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML Components and measure() When is it that you have to implement measure()? If you're building components in MXML, purely out of other standard Flex components, do you ever need

RE: {Disarmed} RE: [flexcoders] mxml components

2008-07-29 Thread Scott
: [flexcoders] mxml components all classes are created when the application is started AS3 classes get initialized -- meaning that their static variables get set and their static methods get executed -- in a lazy fashion, as they are used. If you have bytecode for a class in your SWF and that class

RE: [flexcoders] mxml components

2008-07-29 Thread Scott
! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Monday, July 28, 2008 3:34 PM To: flexcoders@yahoogroups.com Subject: {Disarmed} RE: [flexcoders] mxml components all classes are created when the application is started AS3 classes get

Re: {Disarmed} RE: [flexcoders] mxml components

2008-07-29 Thread Michael VanDaniker
Are these the same instance or unique instances with in each of the class instances themselves (mainclass/class3)? MainClass.mxml: mx:script ![CDATA{ Import com.myapp.models.LoginClass; ... .. And Class3.mxml mx:script ![CDATA{

RE: [flexcoders] mxml components

2008-07-29 Thread Scott
: Tue 7/29/2008 10:30 AM To: flexcoders@yahoogroups.com Subject: {Disarmed} Re: {Disarmed} RE: [flexcoders] mxml components Are these the same instance or unique instances with in each of the class instances themselves (mainclass/class3)? MainClass.mxml: mx:script ![CDATA

RE: [flexcoders] mxml components

2008-07-28 Thread Scott
To: flexcoders@yahoogroups.com Subject: {Disarmed} RE: [flexcoders] mxml components First, there are classes and instances. When it matters, use these terms correctly. Second, call does not apply to a class, or even really an instance. An instantiated class stays instantiated untill all

RE: [flexcoders] mxml components

2008-07-28 Thread Gordon Smith
it. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Saturday, July 26, 2008 4:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] mxml components I was afraid of that... Ok

[flexcoders] mxml components

2008-07-25 Thread Scott
Ok, I'm trying to get a firm grasp on AS3 components/classes. I'm trying to figure out how to structure code so I can optimize code re-use. What is the life of a component/class in a flex application? In other words... If I have a main.mxml that calls another class like logins.mxml,

RE: [flexcoders] mxml components

2008-07-25 Thread Gordon Smith
Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Friday, July 25, 2008 2:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] mxml components Ok, I'm trying to get a firm grasp on AS3 components

RE: [flexcoders] mxml components

2008-07-25 Thread Tracy Spratt
: [flexcoders] mxml components Ok, I'm trying to get a firm grasp on AS3 components/classes. I'm trying to figure out how to structure code so I can optimize code re-use. What is the life of a component/class in a flex application? In other words... If I have a main.mxml that calls

Re: [flexcoders] mxml components

2008-07-25 Thread yigit
it depends on references, not whether you use or not. so for example, if the code is like this: MainClass.mxml foo:MainClass foo:SubClass id=bl/ /foo:MainClass SubClass.mxml foo:SubClass foo:SubClass2a id='bla'/ /foo:SubClass they will live forever. But if you load

[flexcoders] MXML components in ActionScript

2006-08-22 Thread tinywhistles
Hi I am trying to access MXML components insideAS files. Like I have an MXML file where I have defined a panel with an ID, say loginPanel. What's required is that in an AS file, I should get a handle to loginPanel object, instantiated locally or otherwise. Pls help if anyone of you have any

Re: [flexcoders] MXML components in ActionScript

2006-08-22 Thread julien castelain
hi Rohan, This should help you http://aralbalkan.com/691 hf:) On 8/22/06, tinywhistles [EMAIL PROTECTED] wrote: Hi I am trying to access MXML components insideAS files. Like I have an MXML file where I have defined a panel with an ID, say loginPanel. What's required is that in an AS

[flexcoders] MXML Components and Classes

2006-01-20 Thread Trey Long
Quick question about making custom components. I know custom components exist as classes in actionscript but I was a little lost on how you create functions for your component. Right now I have an external .AS file that is just some import statements and a collection of functions (no package

Re: [flexcoders] MXML Components and Classes

2006-01-20 Thread JesterXL
Subject: [flexcoders] MXML Components and Classes Quick question about making custom components. I know custom components exist as classes in actionscript but I was a little lost on how you create functions for your component. Right now I have an external .AS file that is just some import

Re: [flexcoders] MXML Components and Classes

2006-01-20 Thread Trey Long
] MXML Components and Classes Quick question about making custom components. I know custom components exist as classes in actionscript but I was a little lost on how you create functions for your component. Right now I have an external .AS file that is just some import statements

Re: [flexcoders] MXML Components and Classes

2006-01-20 Thread JesterXL
mx.containers.VBox; class MyVBox extends VBox { public function method():Void { trace(yo); } } - Original Message - From: Trey Long [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, January 20, 2006 3:50 PM Subject: Re: [flexcoders] MXML Components

RE: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Dirk Eismann
between your basicSearchCompany component and any embdeeing component. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Reto M. Kiefer Sent: Friday, September 02, 2005 10:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML Components

Re: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Reto M. Kiefer
Hi Dirk! Thanks a lot for your answer. Unfortunatly the parentDocument doesn't work, I still got the error Two MXML Files cannot reference each other as child tags. Another idea: why not dispatching an event object from your basicSearchCompany? The embedding component could register for this

Re: [flexcoders] MXML Components and instanceof

2005-09-02 Thread Reto M. Kiefer
Hi Dirk! Thanks a lot for your detailed answer. I will try and give you a feedback! Cheers Reto Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today!

RE: [flexcoders] MXML Components and using mx:Effect

2005-04-14 Thread Gordon Smith
PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MXML Components and using mx:Effect hmm thanks for that gordon, I wonder if MM will ever allow us to do new MovieClip instead of createEmptyMovieClip etc.. i've seen some MovieClip.prototype workarounds for this but *sigh* ... anyway

Re: [flexcoders] MXML Components and using mx:Effect

2005-04-12 Thread Scott Barnes
:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 8:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML Components and using mx:Effect Dumb question but i'll ask none the same (in case its not) You can't use mx:Effect xlmns=http://www.macromedia.com...etc

Re: [flexcoders] MXML Components and using mx:Effect

2005-04-12 Thread Scott Barnes
. Matt From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 8:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML Components and using mx:Effect Dumb question but i'll ask none

Re: [flexcoders] MXML Components and using mx:Effect

2005-04-12 Thread Manish Jethani
On 4/12/05, Scott Barnes [EMAIL PROTECTED] wrote: Also, probably outside the scope of this thread but whats the difference between a MovieClip and an Object (ie technically, i know MovieClip adds timeline to the equation etc.. but how is a MovieClip Constructed vs a plain object) An object

RE: [flexcoders] MXML Components and using mx:Effect

2005-04-12 Thread Gordon Smith
. MovieClip is a Flash-specific class, while Object is a class of the standard EcmaScript language. - Gordon -Original Message- From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 6:44 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MXML Components

Re: [flexcoders] MXML Components and using mx:Effect

2005-04-12 Thread Scott Barnes
. MovieClip is a Flash-specific class, while Object is a class of the standard EcmaScript language. - Gordon -Original Message- From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 6:44 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MXML

RE: [flexcoders] MXML Components and using mx:Effect

2005-04-11 Thread Matt Chotin
Subject: [flexcoders] MXML Components and using mx:Effect Dumb question but i'll ask none the same (in case its not) You can't use mx:Effect xlmns=http://www.macromedia.com...etc as a top level tag for a mxml component can you? Yahoo! Groups Links To visit your group on the web, go

Re: [flexcoders] MXML Components and using mx:Effect

2005-04-11 Thread Scott Barnes
From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 8:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML Components and using mx:Effect Dumb question but i'll ask none the same (in case its not) You can't use mx:Effect xlmns=http

RE: [flexcoders] mxml components not honoring external css styles ?

2004-05-05 Thread Matt Chotin
To: flexcoders@yahoogroups.com Subject: [flexcoders] mxml components not honoring external css styles ? I have created three components one is a combobox, a label and the other a text box. The label works fine. The other two however do not seem to be picking up the stylesheet settings of the form