[flexcoders] DataGrid rows to column

2007-10-30 Thread niamath basha
Hi all, I am new to flex2(fresher), I have one application in which there will be two datagrids like UserId FirstName LastName e-mailId i want to convert this datagird to other datagrid like UserId0123 FirstName John LastName Smith e-mailId [EMAIL PROTECTED] can any one

[flexcoders] Re: Treat RadioButton Column in Datagrid as Group

2007-10-30 Thread Peeyush Tuli
Correction, I meant to show a radio button per row. On 10/30/07, Peeyush Tuli [EMAIL PROTECTED] wrote: Hi, I want to add a column in a datagrid which would show a datagrid column per row. That was accomplished by using a custom item renderer, I want to treat the whole column as a single

[flexcoders] clear the cache

2007-10-30 Thread Aditya Kumar
Hi, I want to clear the cache so that after I logoff from the Flex Application and then login back again without closing the browser, I want the application to call the creationComplete event which currently doesn't happen. Essentially i am populating the forms during creationComplete and hence

[flexcoders] Treat RadioButton Column in Datagrid as Group

2007-10-30 Thread Peeyush Tuli
Hi, I want to add a column in a datagrid which would show a datagrid column per row. That was accomplished by using a custom item renderer, I want to treat the whole column as a single radio button group and have the same properties. Any suggestions on what could be the best approach of doing it?

[flexcoders] Re: Problem importing component from Flash CS3

2007-10-30 Thread Stephen Roy J. Tang
Also, the fla given to me was using ActionScript to scale the object as it animated, when I import to Flex that actionscript doesn't execute, I need to add my own scaling code in flex to do it. Is there another way, or the actionscript is really not exported in the SWC? --- In

[flexcoders] Changing Boolean values

2007-10-30 Thread JRBower
How would I go about changing a default true:false pair to a right:wrong pair or an edited:not edited pair? For example I have a checkbox: mx:CheckBox id=Resumes_EditedEng selected={(this.detailObject.EditedEng == 1)? true:false} width=100% / After the selection is made the value is

[flexcoders] Component instances and Global events

2007-10-30 Thread rleuthold
Hi, I'm having an issue with the overall design of an application. My app consists of some kind of main Components (data browser comp , fil upload comp, chart browser, etc.) which are used in a SuperTab Navigator (flexlib). Multiple instances of these main components can be opened closed.

Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread superabe superabe
any chance you can hold one of these on the East Coast? out of your Newton office maybe ? - superabe On 10/30/07, Matt Chotin [EMAIL PROTECTED] wrote: We're having a Developer Camp at Adobe in our San Francisco office on Monday November 5th from 4-8pm. Registration is free but is limited.

[flexcoders] Re: clear the cache

2007-10-30 Thread meteatamel
Couldn't you call creationComplete method yourself from the logoff method? -Mete --- In flexcoders@yahoogroups.com, Aditya Kumar [EMAIL PROTECTED] wrote: Hi, I want to clear the cache so that after I logoff from the Flex Application and then login back again without closing the browser, I

[flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-30 Thread li wenzhi
you can use as3 encoding class to convert the ByteArray to Base64 String, then send it with httpservice: a)bytearray to base64 string: http://www.dynamicflash.com/goodies/base64 b)base64 to byte[] in java: http://www.source-code.biz/snippets/java/2.htm - Original Message From:

Re: [flexcoders] Tween Motion along a path

2007-10-30 Thread li wenzhi
is this what you want? The search for the perfect bezier tweening syntax http://labs.zeh.com.br/blog/?p=104 - Original Message From: Doug McCune [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 29, 2007 12:29:11 PM Subject: Re: [flexcoders] Tween Motion along a path

Re: [flexcoders] Is it possible to save an FLV to a Shared Local Object and open it later ?

2007-10-30 Thread Abdul Qabiz
I can image that i can be saved by using URLStream (to read) and ByteArray to store. But how you would play it again? Not sure, if Video class can take ByteArray to play video... Can Video class consider FLV as embedded video (which in my opinion is different)? -abdul On 10/30/07, helihobby

Re: [flexcoders] Re: JS - How to send a byteArray using HTTPService??

2007-10-30 Thread Abdul Qabiz
Yup! This is another way of doing, quick and easy, you don't need to setup anything on server, except byte to base64 conversion... -abdul On 10/30/07, li wenzhi [EMAIL PROTECTED] wrote: you can use as3 encoding class to convert the ByteArray to Base64 String, then send it with httpservice:

Re: [flexcoders] How do I pause

2007-10-30 Thread Paul Andrews
Thanks for the explantion - glad it worked out. Paul - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 30, 2007 2:04 AM Subject: Re: [flexcoders] How do I pause More accurately, I want to display some results when the button is hit and

[flexcoders] Problem with Label showing ... when the size exceeds the actual given size

2007-10-30 Thread srikanth reddy
Hi, The MXML label when i set truncateToFit=true it displays ... to fit to the actual size only when i set the width in .px if i use percentage width it never truncates the label field. ex: it works when mx:Label x=40 y=19 text={data.Family} width=175 fontStyle=italic

[flexcoders] How to have a seperator in the list renderer of the combobox

2007-10-30 Thread srikanth_reddy_007
Hi All, I want a seperator in the list combo box list control. can some body help!!!.

[flexcoders] LDAP Authentication and Login System

2007-10-30 Thread crash.virus
Hi I am developing an application that require authentication from LDAP Server How to do that. I also want to use the LDAP data for my file upload such that when a user is logging in it can only see the files in his directory . On First Login of the LDAP user a Local directory will be created on

[flexcoders] Resizing Browser

2007-10-30 Thread pareek.manish
Hi, I am new to flex and seek your help . There is a text component inside under item renderer in a list. when I resize the browser window by dragging any of the corners or edges..the text in the text control get clipped if either of the width or height of the windows becomes less than that

Re: [flexcoders] Re: clear the cache

2007-10-30 Thread Aditya Kumar
Since I have many forms I will have to call creationComplete for each of them when i login once again. To avoid this is there anyway to clear the cache so that Flex will call the creationComplete upon relogin. Couldn't you call creationComplete method yourself from the logoff method? -Mete

Re: [flexcoders] LDAP Authentication and Login System

2007-10-30 Thread Douglas Knudsen
short answer: you don't longer answer: Flex is a client side technology. Your server side middle-ware will provide you with sessions, security, and LDAP connections, etc. HTH DK On 10/30/07, crash.virus [EMAIL PROTECTED] wrote: Hi I am developing an application that require

[flexcoders] Re: How do I convert an object to an arrayCollection?

2007-10-30 Thread aceoohay
Sam: Thanks for the reply. I have posted to the Fluorine mailing list. You ask are you using Fluorine to talk to an assembly directly or are you talking to a web service? I believe that I am talking to an assembly directly, but being an ASP.NET novice I do not know the difference, how can I

[flexcoders] SOUND_COMPLETE event not firing?

2007-10-30 Thread Mark
I have a sound/sound channel being set up in my actionscript and playing as expected, however the sound_complete event is not firing in all cases. I am attaching an event listener for this event after the play call, yet the associated handler is not called every time when an mp3 file reaches the

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I am doing this successfully, by encoding the markup, and keeping it in an attribute(description, below). dest category=Directions to Hotel title=West to Atlanta mapimage=maps/Exit249B_Map.swf

[flexcoders] e4X delete question

2007-10-30 Thread matt wicks
Hi all I have an xml structure which is like this map cliphkjkj/clip cliphh document hxsjka/document /clip clip documentkkk/document /clip /map And I want to delete

[flexcoders] Re: FileReference upload passing parameters in URLRequest

2007-10-30 Thread letterpigeon
Ah, I think I got it. I thought the variables I passed in request.data would go to the HttpRequest object on the servlet. But it turns out, as you said, it's part of the multipart message which I can get a hand on while parsing it. Thanks a lot Abdul. Ban --- In flexcoders@yahoogroups.com,

[flexcoders] Problem with Scroll bar

2007-10-30 Thread srikanth_reddy_007
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Canvas x=54 y=54 width=223 height=294 mx:Button x=39 y=366 label=Ok/ mx:Button x=112 y=366 label=Cancel/ mx:TextInput x=27 y=10/

[flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-30 Thread djdyland
That doesn't seem to get rid of the triangle unfortunely.. sounded right tho! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: hasChildren() should return false. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] Context menu and sub-menu capability...

2007-10-30 Thread Derek Vadneau
http://code.google.com/p/custom-context-menu/ It doesn't work 100% but there's an on-going effort (last I checked). On 10/23/07, Daniel Freiman [EMAIL PROTECTED] wrote: You can't do it. You also can't override the context menu to not display so that you can create your own menu in it's

Re: [flexcoders] Re: clear the cache

2007-10-30 Thread Guido
You could try using another event, instead of creationComplete, like add or added. Or, you could, via AS, destroy your previous components and have new instances of them instead. It's a problem I've encountered before, when I want Flex to make new components every time and it would just keep

[flexcoders] Yahoo maps api for flex 2

2007-10-30 Thread Nate Pearson
I thought that Yahoo made a new api for flex 2...maybe I dreamed it up because I can't find it on the net! Can anyone link me? Thanks, Nate

[flexcoders] Re: Is it possible to save an FLV to a Shared Local Object and open it later ?

2007-10-30 Thread helihobby
Thanks for the reply. Lets see if someone else might have some more input. Thanks, Sean. --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: I can image that i can be saved by using URLStream (to read) and ByteArray to store. But how you would play it again? Not sure,

[flexcoders] fetching unicode characters

2007-10-30 Thread Aditya Kumar
Hi, Can anyone please tell me how to fetch unicode characters through HTTPService and display the same in a TextArea Component. while sending the unicode characters i use contentType as UTF-8. What is the procedure while retrieving the same. Thanks Regards, Aditya.

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-30 Thread dbronk
Probably the easiest thing to do would be to make the listener reference weak. Or, create an accessor function for the arraycollection and remove the listener from the old arraycollection and add a listener to the new arraycollection if they are not the same object. Will you expand on this

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
I've fixed the problem that was originally giving me this problem, but now I am getting it again under different circumstances. Does anyone know exactly what this error is? Thanks, Steve --- In flexcoders@yahoogroups.com, lrdvadersith [EMAIL PROTECTED] wrote: Does anyone know what this error

[flexcoders] Re: Tree: Removing expand triangle from select nodes

2007-10-30 Thread Karen
You can change the behavior of isBranch in your tree - for example, I'm hiding the icon if I'm on my Test item: private function isBranch(item:Object):Boolean { if (item != null) if (item.folderName == Test) { return false; }

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-30 Thread yossigordin
Hi Dale, I just read the entire conversation, and i have a better simpler solution. Instead of binding the arrayCollectiopn in your modelLocator, bind the getter. [Bindable(event=entriesChanged)] public function get prodList() : ArrayCollection { return _prodList; } After that in

[flexcoders] Re: Changing Boolean values

2007-10-30 Thread yossigordin
Hi James, Use an itemRenderer in your datagrid. Josef --- In flexcoders@yahoogroups.com, JRBower [EMAIL PROTECTED] wrote: How would I go about changing a default true:false pair to a right:wrong pair or an edited:not edited pair? For example I have a checkbox: mx:CheckBox

[flexcoders] ImageMap and area colours

2007-10-30 Thread neilernst77
I am experimenting with ImageMap to create a clickable image of regions of the human brain (e.g. frontal lobe, thalamus etc). I would like to set the colour of the region of interest based on some external data. So for various values of my variables[1], I would alter the colour of the individual

[flexcoders] Re: Tween Motion along a path

2007-10-30 Thread snowjunkie73
Doug, First I'd like to say how much I enjoy your blog and tinkering with the things you create. I learn a ton off your blog. :-) I had posted on Michael's blog a couple days ago asking if he was going to post the source for the carousel. I wan't holding my breath though since I noticed he

[flexcoders] Re: LDAP Authentication and Login System

2007-10-30 Thread Abyss Knight
Just to follow up on the reply regarding middleware, one cheap solution assuming you do not have any current server architecture or service layers would be: OpenLDAP: http://www.openldap.org/ Apache + PHP with LDAP: http://us2.php.net/ldap Then you can use Apache + PHP to manage the sessions

[flexcoders] WSDL address set to 0.0.0.0

2007-10-30 Thread Daniel Herbison
Hi All! I have a web service deployed on one machine under axis2 and i'm calling it using flex and everything is working great. However when I place the service on another machine under axis2 i can no longer run the services from flex but they do run fine from the browser. Flex is complaining

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread Alex Harui
How did you fix it last time? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lrdvadersith Sent: Tuesday, October 30, 2007 7:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5

RE: [flexcoders] Resizing Browser

2007-10-30 Thread Alex Harui
Your list and parent containers will need to use % widths From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pareek.manish Sent: Tuesday, October 30, 2007 6:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resizing Browser

[flexcoders] Re: Deep binding with Cairngorm question

2007-10-30 Thread Dennis van Nooij
I've created an add-on to Alex Uhlman observe tag (http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm) that not only monitors the settings of a collection but also tracks changes in it. package com.adobe.ac { import mx.events.CollectionEvent; import

Re: [flexcoders] Yahoo maps api for flex 2

2007-10-30 Thread John Robinson
As far as I know they haven't. They're AS2 map stuff has a version that works in Flex, but it uses the old AVM1, and either a js or lc bridge between that and your AS3 flex stuff. John On Oct 30, 2007, at 10:20 AM, Nate Pearson wrote: I thought that Yahoo made a new api for flex 2...maybe

[flexcoders] Re: Yahoo maps api for flex 2

2007-10-30 Thread Dennis van Nooij
http://developer.yahoo.com/maps/flash/flexGettingStarted.html Dennis --- In flexcoders@yahoogroups.com, John Robinson [EMAIL PROTECTED] wrote: As far as I know they haven't. They're AS2 map stuff has a version that works in Flex, but it uses the old AVM1, and either a js or lc bridge

[flexcoders] Memory Leak Queries

2007-10-30 Thread esaltelli
Somewhat of a long post, but bear with me. I've run into some abnormal memory usage that is very hard to explain; wondering if anyone has suggestions...Here's my observations/comments/questions Thanks to the whoever it was that (finally) decided that Flex 3 should have a profiler! The

[flexcoders] Re: Yahoo maps api for flex 2

2007-10-30 Thread Dennis van Nooij
nevermind. Looks like its the old AVM1 version indeed. Dennis --- In flexcoders@yahoogroups.com, Dennis van Nooij [EMAIL PROTECTED] wrote: http://developer.yahoo.com/maps/flash/flexGettingStarted.html Dennis --- In flexcoders@yahoogroups.com, John Robinson jrobinso@ wrote: As far

RE: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread Matt Chotin
There's hopefully going to be a Flex Camp in Boston pretty soon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of superabe superabe Sent: Tuesday, October 30, 2007 4:02 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

[flexcoders] Date oddities

2007-10-30 Thread Scott Melby
My application uses many dates. Dates are always passed between the back end web service and the front end flex app as timestamps, milliseconds since epoch. Yesterday I switched to a dev. box that is running VISTA... now all of the dates in my application are off by the timezoneOffset. I

[flexcoders] Re: API that encapsulates both Native DnD andDragEvents?

2007-10-30 Thread Ivo
I guess the initial attempt seemed easy, I just needed to create helper classes one for the Air project and one for the Web-only project that provide handlers for the DRAG_ENTER, DRAG_OVER DRAG_DROP ( their related NATIVE events) that just handle MouseEvents . On the Air app the helper would need

Re: [flexcoders] Date oddities

2007-10-30 Thread Paul Decoursey
Odd, I've always had to adjust for the timezone, and I've always built on XP or OSX. I just assumed that was the way it was supposed to be. On Oct 30, 2007, at 11:29 AM, Scott Melby wrote: My application uses many dates. Dates are always passed between the back end web service and the

Re: [flexcoders] Date oddities

2007-10-30 Thread Scott Melby
Sorry... forgot to include the obvious in my prior post. Adding it for completeness. Here is how I am creating dates 1) var d:Date = new Date(timeMillis); 2) var d:Date = new Date(); d.time = timeMillis; 3) var now:Date = new Date(); Scott Scott Melby wrote: My application uses many

Re: [flexcoders] Date oddities

2007-10-30 Thread Scott Melby
Paul - Thanks for the response. Maybe your XP builds were resulting in dates that had timezoneOffset = 0. If this is the case, the adjustment would have no effect and you would not notice that you didn't need it. If that is not the case, then I am really confused. Thanks again Scott

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote: I am doing this successfully, by encoding the markup, and keeping it in an attribute(description, below). dest category=Directions to Hotel title=West to

Re: [flexcoders] Date oddities

2007-10-30 Thread Paul Decoursey
Nope, they have an offset of either 300 or 360 based on DST. Are you in an area that doesn't have DST perhaps? I'm not sure. I'd think that it would have to be dependent on the client offset in all cases. On Oct 30, 2007, at 11:46 AM, Scott Melby wrote: Paul - Thanks for the response.

Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread Douglas Knudsen
Atlanta!?!? :) DK On 10/30/07, Matt Chotin [EMAIL PROTECTED] wrote: There's hopefully going to be a Flex Camp in Boston pretty soon. *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Tuesday, October 30, 2007 4:02 AM *To:*

[flexcoders] Text word wrapping

2007-10-30 Thread ninobronzed
I have a mx.controls.Text instance. It is a child of a VBox. I give it a percentWidth = 100, and the text is truncated (cut off, actually. no ellipsis) and doesn't wrap. It only happens when the text is a specific length. So, most of the time it works correctly, only when the text is close to

Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread Ben Marchbanks
Yes, another vote for Atlanta.. Douglas Knudsen wrote: Atlanta!?!? :) DK On 10/30/07, *Matt Chotin* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: There's hopefully going to be a Flex Camp in Boston pretty soon. *From:* flexcoders@yahoogroups.com

Re: [flexcoders] Re: Flash/Flex Event collision on TextField input

2007-10-30 Thread Andriy Panas
Hi all, I want to provide a little bit more information for the solution for this issue, because I was stumbled upon this issue today and thankfully to this topic at Flexcoders mailing list I had received a solid understanding of this particular problem. Imagine that in your setup

Re: [flexcoders] Re: Bug in Proxy

2007-10-30 Thread Derek Vadneau
Hi Johannes, Did Adobe contact you for more info about the Proxy bug?: https://bugs.adobe.com/jira/browse/ASC-2812 I posted the information I had, but the bug is still indicating incomplete and Waiting on Info. Is Adobe waiting for information from you? Or has the bug slipped into the (at least

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
I didn't really fix it last time. I changed the way my code was doing sorts, so the headerRelease was no longer needed. My current problem has to do with something completely different, and I've seen this error in other places as well. At this point, I've seen this error enough times that I'd

[flexcoders] client side image loading

2007-10-30 Thread wouterv2000
Hi, I was wondering if it is possible to use FileReference to load image data into a client side bitmap. I can only find ways to send streams to the server, but I would like to do some manipulation BEFORE sending and image to the server. Regards, Wouter

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote: I am doing this successfully, by encoding the markup, and keeping it in an

[flexcoders] ComboBox test?

2007-10-30 Thread candysmate
While checking for correct user input, I wish to ascertain if a comboBox has had any selection made with it at all. How can I test, via AS3, if any selection has been made please?

[flexcoders] Re: Trigger a function in the main applicatoin mxml from a popup window.

2007-10-30 Thread kalpkat9
Thanks everybody. all you guys are awesome. I was able to control the click events from my main application and was able to change the state of my main application pretty straight forward. I very much followed this example from Abode and is the same as what bailey explained.

[flexcoders] Flex Builder 3 beta 1 expires tomorrow

2007-10-30 Thread Scott Melby
My flex builder 3 beta 1 is expiring tomorrow, or it says it is. So I attempted to upgrade to beta 2. However, there is a bug in beta 2 that prevents DateField item editors from working in DataGrids (https://bugs.adobe.com/jira/browse/SDK-12923) that prevents me from being able to upgrade.

RE: [flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread Alex Harui
Verify errors should be virtually impossible to code up. They are usually caused by incompatible code in a swf when loaded into another swf, where the class definitions used by one swf does not match the other. I've never seen one when all you have is one swf. You'd have to be calling

RE: [flexcoders] Re: Problem importing component from Flash CS3

2007-10-30 Thread Alex Harui
That's a bug. It won't throw an exception in 3.0 version of the integration kit, but requires that you use 3.0. Please file a bug for this issue. A workaround for 2.x would be to wrap the UIMovieClip in a UIComponent and run the effect on the UIComponent wrapper.

RE: [flexcoders] Memory Leak Queries

2007-10-30 Thread Alex Harui
All of the issues listed are fixed in Hotfix 2. Please upgrade to that hotfix. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of esaltelli Sent: Tuesday, October 30, 2007 9:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread Paul Decoursey
What about us folks in the middle of the country, they are always pandering to the coasts. How about Minneapolis or Chicago. On Oct 30, 2007, at 12:11 PM, Ben Marchbanks wrote: Yes, another vote for Atlanta.. Douglas Knudsen wrote: Atlanta!?!? :) DK On 10/30/07, *Matt Chotin*

RE: Re[flexcoders] peater

2007-10-30 Thread Tracy Spratt
Create a custom component containing the checkbox. Pass in currentItem, and a reference to existingData. In a set itemData() method, run your loop, and assign the checkbox selected property value. Below is some sample code. Also, instead of three repeaters, you could use Tile, with

RE: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread Matt Chotin
I thought Leif had done something recently. I'll let the events team know, but you guys should be aware that you can organize these yourselves and we'll help. Check out http://flex.org/camp for more details. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben

RE: [flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Tracy Spratt
I encode it programatically. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, October 30, 2007 9:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: htmlText in text that originates in XML --- In

RE: [flexcoders] ComboBox test?

2007-10-30 Thread Tracy Spratt
myCombo.selectedIndex -1; //true if anything is selected, false if not Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Tuesday, October 30, 2007 1:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] e4X delete question

2007-10-30 Thread Tracy Spratt
I am surprised you are not getting an error. You can delete an XML object but not an XMLList. You will need to loop over the XMLList and delete the nodes individually: for (i:int =0;ip.lenght()... //I never can remember when length is a property or method delete p[i] ... Tracy

[flexcoders] Binding to a subclass of flash_proxy

2007-10-30 Thread Austin Kottke
Hi, Here's what I'm trying to do. Load in an xml file, assign this to a settings singleton which extends flash_proxy and then bind to these properties. Essentially: public function setupXMLProxy( contentToProxy: XML ):void { logger.debug( setupXMLProxy() called. ) var content:XML =

[flexcoders] Re: VerifyError: Error #1025: An invalid register 5 was accessed.

2007-10-30 Thread lrdvadersith
I seem to be pretty good at doing things that shouldn't be doable }:-) A quick search of the project directory reveals only 2 swf files: sane.swf (my project), and playerProductInstall.swf (don't know where this comes from). I get the same behavior in FlexBuilder 3 standalone, and the

RE: [flexcoders] Re: Flash/Flex Event collision on TextField input

2007-10-30 Thread Alex Harui
What version of Flex? Is there a test case and bug for this issue? If not please file one. In looking at the code, the CHANGE event should not be bubbling from TextArea or TextInput. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Text word wrapping

2007-10-30 Thread Alex Harui
Word wrapped text has no natural size. It can be any shape pretty much unless you define one dimension, then we can calculate the other. It is best to update the width of the Text at layout time instead of using %. From: flexcoders@yahoogroups.com

[flexcoders] Replacing Caret character in text

2007-10-30 Thread Amy
I'm trying to work around the bug in Flex that adds carriage returns around html tags in XML, even ones wrapped in CDATA. So, I figure the caret character is the closest match for the (lt;) for my client to easily be able to edit the XML files without having to learn a whole lot of code or

RE: [flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Tracy Spratt
Ok, the customer is always right. ...which instance of a repeater component was clicked... This is not difficult if you repeat a custom component. See snippets below. Tracy Goal: Display a list of items using a complex display for each item, and have each of those items behave like a menu

RE: [flexcoders] Replacing Caret character in text

2007-10-30 Thread Tracy Spratt
Have you considered using the RichTextEditor? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, October 30, 2007 2:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Replacing Caret character in text

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I encode it programatically. They have requested that I avoid creating an editor for them if at all possible, since it involves a lot of other things I've found to be quite problematic in Flex (such as knowing which

Re: [flexcoders] e4X delete question

2007-10-30 Thread Daniel Freiman
Tracy, that's what I thought too, but the live docs says you can delete XMLLists ( http://livedocs.adobe.com/flex/201/langref/operators.html#delete_(XML)). Maybe this is a documentation bug. Another possibility is that the .. is getting in the way. I've had problems with it before where it

[flexcoders] Re: client side image loading

2007-10-30 Thread wouterv2000
I was afraid of this. I seems rather silly to me, I don't understand why one could stream a client file to the server but not into the client itself... Is there anybody here that can explain to my why this is a restriction? Wouter --- In flexcoders@yahoogroups.com, Seth Caldwell [EMAIL

Re: [flexcoders] client side image loading

2007-10-30 Thread Aakarsh Nair
Hi, I had a quick question supposing I have multiple flex applications as embedded objects on an html page. How can I make it so that each flex application isnt 400KB in size and the flex framework is loaded separately and the embbeded objects are loaded separately. I am a complete beginner so

RE: [flexcoders] Flex Builder 3 beta 1 expires tomorrow

2007-10-30 Thread Matt Chotin
Flex Builder Beta 1 will expire no matter what serial at this point since Beta 2 has been released. Sounds like you should use Beta 2 but try to grab a more recent SDK where your bug has been fixed (http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html). Matt From:

[flexcoders] question about flex loading

2007-10-30 Thread aakarshnair
Hi, I had a quick question supposing I have multiple flex applications as embedded objects on an html page. How can I make it so that each flex application isnt 400KB in size and the flex framework is loaded separately and the embbeded objects are loaded separately. I am a complete beginner so

RE: [flexcoders] client side image loading

2007-10-30 Thread Seth Caldwell
Afaik, this isn't possible. You can upload to the server, then download =) You could do it with an AIR app, though. Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wouterv2000 Sent: Tuesday, October 30, 2007 10:24 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] We need help testing web services support in Flex

2007-10-30 Thread Matt Chotin
Over the last year we've received a lot of feedback on our Web Service support and have worked hard to address these issues. With Flex 2.0.1 Hotfix 2 we rebuilt the underlying mechanism which helped a number of customers but also introduced some issues that we've needed to subsequently address.

[flexcoders] Stopping ProgressBar control

2007-10-30 Thread msabljic
Hello flexcoders, I am using ProgressBar control (inderterminate type) for monitoring my upload and after my upload completes i would like to keep ProgressBar control on screen but just to stop it's continous animation but i can't find how to do that? thanks in advance -- Best regards,

RE: [flexcoders] History Management (Flex Builder 2 TFS + FB3 Beta)

2007-10-30 Thread Matt Horn
I'll look into the situation with that lesson. But... if you really want to do the lesson, though, you can change your SDK to 2.0.1 in Flex Builder. Flex Builder will then generate the history management files for you. Not recommended, since deep linking is the new, preferred way to do this sort

RE: [flexcoders] e4X delete question

2007-10-30 Thread matt wicks
Thanks to both - will try it out tomorrow - mtt _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: 30 October 2007 18:30 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] e4X delete question Tracy, that's what I thought too,

[flexcoders] Re: QTP doesn't record any actions.

2007-10-30 Thread bob_breckenridge
The day my LCDS license expired was the day I could not longer record with QTP. Once I got the LCDS license renewed, I was able to record again. --- In flexcoders@yahoogroups.com, Anthony DeBonis [EMAIL PROTECTED] wrote: I am using IE 7.05 and to turn off Tabbing you just: Menu Tools

[flexcoders] Help with XML Data

2007-10-30 Thread markcavins
Ok so here's the skinny: I have this flex app that works fine ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute width=100% viewSourceURL=srcview/index.html mx:Style source=source.css/ mx:Image x=15 y=4 source=images/title.jpg

RE: [flexcoders] client side image loading

2007-10-30 Thread Tracy Spratt
Aakarsh Nair, Please do not hijack a thread for a different question. Rather, start another thread, with a subject that describes your question. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aakarsh Nair Sent: Tuesday,

RE: [flexcoders] Re: Yahoo maps api for flex 2

2007-10-30 Thread Mike Krotscheck
To create and test applications using Yahoo! Flash Maps using the Flex component, you'll need Macromedia Flex 1.5 with the internal JRun4 server or Tomcat server. Note: An enterprising developer can sniff the traffic and reverse-engineer their API. Nobody's done that yet though- I've been busy

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Ok, the customer is always right. ...which instance of a repeater component was clicked... This is not difficult if you repeat a custom component. See snippets below. No, I meant that they clicked say repeater

[flexcoders] Re: Replacing Caret character in text

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Have you considered using the RichTextEditor? Tracy How would that help? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, October 30, 2007 2:22 PM To:

  1   2   >