RE: [flexcoders] Re: createClassObject

2005-04-25 Thread Gordon Smith
If only a single Image named imgE is being created per cell, then you don't have to specify a unique name -- only children of a single parent have to have unique names. However, there is generally no good reason to ever specify a name in createClassObject. If you pass undefined for the second

[flexcoders] Re: Flex Project Metrics ?

2005-04-25 Thread r0main
Thanks for the reply, unfortunately I'm not yet in the dynamic metrics (usage of the application), but rather than in static metrics, code length, lines per packages, etc... To document my project. Am I the only guy on earth trying to measure a flex project ? Thanks, Romain --- In

[flexcoders] binding error - from Flex?

2005-04-25 Thread Tom Fitzpatrick
Working on a large application with lots of bindings, I suddenly got an error on startup, referring to: _repeatablebindingSetup Is this generated by Flex? What should I do? - Tom Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Re: createClassObject

2005-04-25 Thread JesterXL
createChild is the method you should typically use, although since most DataGrid cell renderers inherit from UIComponent, not View, they don't get createChild, which has auto-naming features; createClassObject in UIObject/UIComponent doesn't, so that's probably why he used it with a name, you

[flexcoders] SWC screws up flex properties

2005-04-25 Thread eerkmans
Hi all, I've got another weird SWC problem: when I place my SWC file in a custom folder instead of right next to my index.mxml, somehow all kinds of flex properties get overwritten by the SWC. For example, I can't use the property 'backgroundcolor' anywhere in my entire flex app anymore,

[flexcoders] Re: DataGrid performance

2005-04-25 Thread viraf_bankwalla
The grid has 19 rows (all of which are visible) and 22 columns of which 5 are visible. Yes I have to horizontally scroll to see them. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: How many of the 30 columns can be seen at any one time? I'm assuming you have to

Re: [flexcoders] SWC screws up flex properties

2005-04-25 Thread JesterXL
Are you pointing to the Flex Classes instead of Flash' default when making them? - Original Message - From: eerkmans [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 25, 2005 9:22 AM Subject: [flexcoders] SWC screws up flex properties Hi all, I've got another

[flexcoders] Re: createClassObject

2005-04-25 Thread viraf_bankwalla
I have two images and three labels in each cell. Their visibility is controlled by the data and user display criteria - thus I specify a name for them. I noticed that if I did not specify getNextHighestDepth() it appeared that each time createClassObject was called the prior object was

Re: [flexcoders] Re: createClassObject

2005-04-25 Thread JesterXL
If you are just controlling visibility, use setVisible(false/true) instead of creating the objects each time; that should be significantly more efficient. Secondly, yeah, z order is a good concept. Basically, each element in Flash is drawn on a depth. Higher depths are where things are

RES: [flexcoders] Re: Flex/Cairngorm architecture

2005-04-25 Thread Rafael M. Martinelli
Thanks Jeff. It helped a lot!!! -Mensagem original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Battershall, Jeff Enviada em: quarta-feira, 20 de abril de 2005 11:52 Para: flexcoders@yahoogroups.com Assunto: RE: [flexcoders] Re: Flex/Cairngorm architecture I

[flexcoders] Charlottesville, VA

2005-04-25 Thread heybluez
Hey, Anyone in C-Ville that is pretty good with Flex? -Michael Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo! Groups is subject

RES: [flexcoders] Re: Flex/Cairngorm architecture

2005-04-25 Thread Rafael M. Martinelli
Jeff, I imported the path where my components are (for example import com.avsa.src.testes.*). Doing this, I could pass the component (form1.mxml) as a parameter using the ViewHelper: //ViewHelper method public function LoadComponent(component:Object) : Void{

RE: [flexcoders] SWC generates server error

2005-04-25 Thread Roger Gonzalez
WARNING exporter: cannot export name for init actions __anonymous.0.c:\program files\\user_components\TfeResetButton .swc Wow, that's a pretty obscure problem. I wrote the code, and even I had to go dig through the code to see what its doing! This only gets triggered if the exporter

[flexcoders] Transferring an array of structs from CF 7 to Flex

2005-04-25 Thread David Aden
I'm trying to return an array of structs from a CF 7 CFC to Flex (using the Cairngorm framework). The CFC works (tested on the CF side), the Flex call is completing and the onResult method of the Command class is firing. I am not making any translation to a Flex VO, just want to get the array

Re: [flexcoders] Re: Do you know of any Flex jobs?

2005-04-25 Thread Tarik Ahmed
Job postings are archives on CFLEX which you'll find on the home page or directly via: http://www.cflex.net/shownews.cfm?lkpNewsType=jobChannelID=1 adk365 wrote: I'm currently in Provo, Utah, U.S., but I'm willing to relocate for a great job with a great company. I'm even willing to go

Re: [flexcoders] binding error - from Flex?

2005-04-25 Thread Tom Fitzpatrick
Here's the full error message: 2 Errors found. Error generated version of _repeatableBindingSetup:2 Branch between 6938 and 39708 around line 0 exceeds 32K span. If possible, please refactor this component. Error Branch between 6938 and 39708 around line 0 exceeds

[flexcoders] enter event for TextInput

2005-04-25 Thread Steve Pruitt
My enter event handler isn't being called for a TextInput tag. The tag looks like: mx:TextInput id="dbpassword" password="true" widthFlex="1" enter="onEnter(event)"/ onEnter is not invoked when I hit the enter key. There is not to much to these things, what can be wrong? I'm at a

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Joan Tan
That code seems to work for me. Maybe there is something wrong within your onEnter function? The entire mxml that I ran was just: ?xml version="1.0"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" backgroundColor="white" mx:Scriptfunction onEnter(event)

Re: [flexcoders] enter event for TextInput

2005-04-25 Thread Tarik Ahmed
Are you sure it's not being invoked? I'd do a little test like: function onEnter(event) { alert("yo"); } mx:TextInput id="dbpassword" password="true" widthFlex="1" enter="onEnter(event)"/ If that alert pops up - then its being invoked but whatever is going on in onEnter isn't as

RE: [flexcoders] binding error - from Flex?

2005-04-25 Thread Abdul Qabiz
Ok, in Flash Player, an if conditional or a single frame can not contain more than 32 KB (or 64K ?) of code. Repeater is actually a if-else condition internally, and it seems you have lots of things inside that.I am sure there would be a way to avoid this, but what I think you need

[flexcoders] Windows Logon ID in Flex

2005-04-25 Thread Tolulope Olonade
Anybody knows how I can get windows log on ID in Action Script??? or MXML??? Or Using any Flex technology.. Thanks. Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe from this group, send an email to:[EMAIL

[flexcoders] MediaPlayback dragDrop event not triggering

2005-04-25 Thread kaibabsowats
I must be missing something here. I have a simple mx:List with dragEnabled = true. I have a MediaPlayback tag: mx:MediaPlayback id=video1 dragDrop=doDragDrop(event)/ I can't get the MediaPlayback to fire the dragDrop event when I drag a item from the list over the MediaPlayback control.

[flexcoders] Re: Windows Logon ID in Flex

2005-04-25 Thread kaibabsowats
Since the flash player resides in a sandbox on the clients machine (for security reasons) it wont be able to talk to the underlying OS to try and grab sensitive information like Login ID's. You would have to use other mechanisms to get the users Login ID and pass it along to the server. But

[flexcoders] Dynamic CSS

2005-04-25 Thread kaibabsowats
Can you reference CSS files in the main Application file dynamically? I tried to bind a value to the CSS include statement and kept getting errors. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this

Re: [flexcoders] Dynamic CSS

2005-04-25 Thread Matthew Shirey
No you cannot. Just search the groups for the keywords Dynamic CSS. You'll see quite a few posts on the topic. -- MatthewOn 4/25/05, kaibabsowats [EMAIL PROTECTED] wrote: Can you reference CSS files in the main Application file dynamically?I tried to bind a value to the CSS include statement

[flexcoders] Questions About Services Security

2005-04-25 Thread kaibabsowats
I want to use RemoteObject that invokes a Java class. (not AMF, HTTPService, or SOAP). Question 1, are the Java classes restricted to the same server as Flex? (besides some funky network share i mean). Question 2, Using RemoteObject to Java classes (not AMF) do I gain the security that only

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Steve Pruitt
yes, I put a trace stmt in the function and nothing appears in the flashlog. drat. this is to simple not to work. if it works for others, it must be environmental. but, i am clueless at the moment. -S From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tarik

Re: [flexcoders] Re: Windows Logon ID in Flex

2005-04-25 Thread Matthew Shirey
I'm doing this, but I'm using Flex to talk to an ASP.NET web service that gets the information and returns it. M.On 4/25/05, kaibabsowats [EMAIL PROTECTED] wrote: Since the flash player resides in a sandbox on the clients machine(for security reasons) it wont be able to talk to the underlying

[flexcoders] Re: Dynamic CSS

2005-04-25 Thread kaibabsowats
Thx for your reply, I only see our posts when searching for Dynamic CSS. Any standard approaches to the Dynamic CSS limitation? --- In flexcoders@yahoogroups.com, Matthew Shirey [EMAIL PROTECTED] wrote: No you cannot. Just search the groups for the keywords Dynamic CSS. You'll see quite a

[flexcoders] Click event triggering cellPress event.

2005-04-25 Thread Jesus Salvador Ramos Cardona
Hello, all. Is there a way to have a buttons click event trigger a datagrids cellPress event? I have tried to use the handleEvent method, but that way both event objects have different properties, and I will eventually have to evaluate these in an if statement. I am trying to achieve

[flexcoders] WYSIWYG

2005-04-25 Thread Ryan Scott Jones
Has anyone created a nice WYSIWYG component for Flex? Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe from this group, send an email to:[EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo!

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Steve Pruitt
I tried using an alert and still no go. the only other thing to add is the TextInput tag is in a Form inside a TitleWindow. Why this would matter I don't know, but there doesn't seem to be any other factors. -S From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Sequence Diagram

2005-04-25 Thread Mehdi, Agha
Hi all, Someone a while ago posted a sequence diagram for cairngorm. Where can I find it? Thanks - Agha Mehdi web developer Littler Mendelson P.C. work: 415-288-6362 cell: 415-987-7104 - Yahoo! Groups Links To visit your group on

Re: [flexcoders] Re: Dynamic CSS

2005-04-25 Thread Matthew Shirey
Well, the solutions that were suggested to me were extrememly programmatic. Setting each of the properties for the CSS file manually. I really didn't like that solution. It worked fine for adjusting the sizes of a few things, but for implementing a full theme style sheet it was just too much.

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
I am assuming you mean a WYSIWYG test editor. We have one we created in Flash. I intend to convert that to a component that can be used in Flex. Unless someone here has a better idea? -- MatthewOn 4/25/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: Has anyone created a nice

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
Heh, typo, I meant WYSIWYG TEXT editor... I think I type the word test to often. M.On 4/25/05, Matthew Shirey [EMAIL PROTECTED] wrote: I am assuming you mean a WYSIWYG test editor. We have one we created in Flash. I intend to convert that to a component that can be used in Flex. Unless

Re: [flexcoders] Sequence Diagram

2005-04-25 Thread David Aden
Agha, I posted it, though the best version I have of it is in SVG -- you'll need to get the Adobe SVG reader (or another one) to view it. Someone did convert this adequately to another format I believe, though I don't seem to have it. In any case, the SVG is attached. d On 4/25/05, Mehdi,

RE: [flexcoders] Sequence Diagram

2005-04-25 Thread Mehdi, Agha
Great. Thanks a bunch David. That's all I needed. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Aden Sent: Monday, April 25, 2005 11:40 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Sequence Diagram Agha, I posted it,

RE: [flexcoders] Re: Dynamic CSS

2005-04-25 Thread Matt Chotin
have already sent in a request to MM that dynamic loading of css files be added to a future version of Flex, but I have no idea if that will ever be a reality. I don't know how much value they put in those requests. We do value the requests. Ive seen a lot of requests for dynamic CS

RE: [flexcoders] binding error - from Flex?

2005-04-25 Thread Matt Chotin
Search for 32K in the archives, plenty of posts and the workaround is usually to see if you can break your MXML files up more. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 10:31 AM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Progress Bar Remote Objec

2005-04-25 Thread Battershall, Jeff
Hi, I'm looking for a strategy by which I could tie a progress bar to data loading from an external source. Has anyone played around with this? Is there any continuously updated meta data from Remote object that could be used for this a la BytesLoaded/BytesTotal? Any advice appreciated. Jeff

RE: [flexcoders] Questions About Services Security

2005-04-25 Thread Matt Chotin
If you want your Flex app to communicate with a Java class you must use AMF unless you expose it as a SOAP service. Im not sure how you were intending on reaching it without AMF? When you do use AMF you are restricted to classes that are available to the web application in which Flex

RE: [flexcoders] Progress Bar Remote Objec

2005-04-25 Thread Matt Chotin
Unfortunately we dont have any sense of progress for RemoteObject. Could you use an indeterminate progress bar instead? Basically kick it off when you send the request and occasionally fire it progress events (I think you need to trigger the progress yourself, its not automatic, but I

RE: [flexcoders] Call one popup from another popup

2005-04-25 Thread Matt Chotin
I think you need to use Application.application.popupWindow instead of just popupWindow. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 10:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Call one popup from another

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
Will do. M.On 4/25/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: Heh. Let us know when you get that published. That'd be very useful for all of us, I would imagine. Thanks! Ryan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf

[flexcoders] Re: MediaPlayback dragDrop event not triggering

2005-04-25 Thread kaibabsowats
I didn't understand the following code on dragEnter: event.handled = true; event.target.drawFocus(true); Problem solved, sorry for the post. --- In flexcoders@yahoogroups.com, kaibabsowats [EMAIL PROTECTED] wrote: I must be missing something here. I have a simple mx:List with

Re: [flexcoders] Re: Dynamic CSS

2005-04-25 Thread Matthew Shirey
That's so great to hear, thank you! Wasn't sure if those were being routed to dev/null or what. M.On 4/25/05, Matt Chotin [EMAIL PROTECTED] wrote: have already sent in a request to MM that dynamic loading of css files be added to a future version of Flex, but I have no idea

[flexcoders] Flash Player/Flex Feature

2005-04-25 Thread Michael Laudrup
The 32k error is really annoying and I consider it more a Flash Player/Flex bug than a feature In fact it's quite difficult for me to understand how the garbage collector works and how the mxml pages are translated in AS2 classes Is there any documentation in regards with those

RE: [flexcoders] Re: createClassObject

2005-04-25 Thread Gordon Smith
Oops! You are absolutely right than only createChild() does autonaming. Thanks for correcting me. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 5:49 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re:

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Gordon Smith
Title: Message Could it be because of password="true"? - Gordon -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 11:24 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] enter event for TextInput I

Re: [flexcoders] Re: createClassObject

2005-04-25 Thread JesterXL
Hehe, I didn't know createChild did auto-naming until you showed me, so thanks back at cha! - Original Message - From: Gordon Smith [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 25, 2005 3:31 PM Subject: RE: [flexcoders] Re: createClassObject Oops! You are

RE: [flexcoders] Flash Player/Flex Feature

2005-04-25 Thread Matt Chotin
The 32k error is definitely an annoyance and one were working to address in 2.0. I dont know of much in the way of documentation on the garbage collector, I just know it sweeps occasionally and tries to clean up, but the memory will remain allocated to the Player from the OS for a while.

[flexcoders] DataGrid Column updates

2005-04-25 Thread viraf_bankwalla
Hi, 1. What is the best way to have a column's headerRenderer update its value (i.e. call setValue). 2. Have a column update its conthent - i.e. each of the column rows update themselves - i.e. call setValue. 3. Have the column header and cells update themselves. Thanks.

RE: [flexcoders] enter event for TextInput

2005-04-25 Thread Joan Tan
I tried having the TextInput in a form in a TitleWindow as well. And I still get the enter event triggered. Joan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 11:24 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] enter event for

[flexcoders] Re: Questions About Services Security

2005-04-25 Thread kaibabsowats
This is a bit confusing to me, but I understand when you say it has to use AMF, unless exposed as a SOAP. I guess my question then is. If you use the Flex proxy remoteObject gateway (as right now I actually call a different AMF gateway for all my AMF calls), can you restrict domain/ip access

[flexcoders] how to delay headerRenderer ?

2005-04-25 Thread sanjayd
Hi. I have a 'headerRenderer' that creates dynamic column headers based on the results from a webService dataprovider. The problem is that when I load the app on my browser for the first time, the result of the dataProvider is still 'undefined', so the column headers do not render properly.

[flexcoders] HTTPService fault: any more info than faultstring?

2005-04-25 Thread Tracy Spratt
Title: HTTPService fault: any more info than faultstring? Out app polls our middle tier (aspx) with an HTTPService request about every 30 sec. The middle tier just does a simple sql query against a database. This works fine while we are watching it, but sometime in the middle of the

[flexcoders] ot: adobe/macromedia statement disected.

2005-04-25 Thread Shell Bryson
http://daringfireball.net/2005/04/adobe_translation :D S. Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe from this group, send an email to:[EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the

RE: [flexcoders] binding error - from Flex?

2005-04-25 Thread Tracy Spratt
And dont forget to try the more code solution. It just worked again for me the other day. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, April 25, 2005 2:51 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

[flexcoders] Re: how to delay headerRenderer ?

2005-04-25 Thread viraf_bankwalla
We have the same situation. Once we receive data from a service we create the columns (as it is based on the data in our case) and assign the data provider to the grid. NOTE - if you assign a data provider when there are no columns created Flex will try to create columns based on the

[flexcoders] Re: Sequence Diagram

2005-04-25 Thread Andrew Spaulding
Hi, can someone please host the sequence diagram image (svg) as the attachments don't get saved via the yahoo groups web interface. I'd love to take a look at it. Thanks, Andrew -- www.flexdaddy.com --- In flexcoders@yahoogroups.com, Matthew Shirey [EMAIL PROTECTED] wrote: Here's a

RE: [flexcoders] binding error - from Flex?

2005-04-25 Thread Tom Fitzpatrick
Tracy - what is that? - Tom At 07:41 PM 4/25/2005, you wrote: And don't forget to try the more code solution. It just worked again for me the other day. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from

RE: [flexcoders] binding error - from Flex?

2005-04-25 Thread Tracy Spratt
Since the Flex compiler builds AS classes out of our mxml, it has to make some decisions on where to break up the code. Apparently there are boundary conditions where the compiler makes the wrong decision. We have found, and had it confirmed by others on this list, that if you simply add more

[flexcoders] Re: how to delay headerRenderer ?

2005-04-25 Thread sanjayd
Viraf: Thanks for your response. Are you saying that the dataGrid should not have any dataProvider assigned to it in the beginning and then dynamically assign a dataProvider to the dataGrid only after the data has been obtained ? Sanjay --- In flexcoders@yahoogroups.com, viraf_bankwalla [EMAIL

[flexcoders] Re: how to delay headerRenderer ?

2005-04-25 Thread viraf_bankwalla
That is what I am doing as the data that I receive from the service includes the column and row information. - viraf --- In flexcoders@yahoogroups.com, sanjayd [EMAIL PROTECTED] wrote: Viraf: Thanks for your response. Are you saying that the dataGrid should not have any dataProvider

[flexcoders] how to modify the loading interface while a MXML file is transfering

2005-04-25 Thread lwz7512
I want a loading effect like this file showing, http://moonblue.vicp.net:8080/fsamples/dyn.mxml any help will be appreciated! if source file will be provided, it would be great! Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/

Re: [flexcoders] Flash Components

2005-04-25 Thread Ketan Bengali
Thanks Abdul Francois. Regards, Ketan Bengali Abdul Qabiz wrote: Chattyfig Flashcoders list... http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 12:25 PM To:

RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-25 Thread Feng Zhu
Thank you, Johan. It is great helpful. Best Regards! Zhu Feng -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johan Lopes Sent: 2005422 21:54 To: flexcoders@yahoogroups.com Subject: Re: