[flexcoders] Re: lockedColumnCount lockedRowCount

2006-12-01 Thread devisbalsemin
Hi, if you are intersted here my code for use GrandTotal into a lockedRow. Devis private function Elabora():void { var token:AsyncToken=dsBaan.fill(conto,byConto,txConto.text,cbAnno.text); token.addResponder(new ItemResponder(

Re: [flexcoders] Spanish language charcaters on button labels

2006-12-01 Thread Igor Costa
Patrick just type the text and it works, remember that in the MXML you have the utf-8 in the definition of xml It's the same happens for us brazilians that has a lot of special characters. regards On 11/30/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I know how to render spanish language

Re: [flexcoders] Drag/Drop - Datagrid. Target is off?

2006-12-01 Thread Igor Costa
Kenny in the target just enable the DropEnable=true On 11/30/06, lostinrecursion [EMAIL PROTECTED] wrote: Hi all, I have a little app I built with some drag/drop functionality that I coded in. I am not using the default and writing my own handlers. Everything is working, meaning all the

Re: [flexcoders] Can't get value after labelfunction

2006-12-01 Thread Igor Costa
It was to the previous thread On 12/1/06, Igor Costa [EMAIL PROTECTED] wrote: Sorry google new shortcut makes me crazy On 12/1/06, Igor Costa [EMAIL PROTECTED] wrote: Kenny in the target just enable the DropEnable=true Regards. On 11/29/06, bsdensmore [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Second problem: how to delete a component out of the storage

2006-12-01 Thread Igor Costa
Matze you just do to set as null. Than you can use the removeChildAt(yoursComponent,numChildren -1); Regards. On 11/29/06, matze.kueby [EMAIL PROTECTED] wrote: Hello, My second question is how to delete a component out of storage. We have some own components (basically forms), which

Re: [flexcoders] building reusable, 'stacking' components

2006-12-01 Thread Igor Costa
Steve Nope you don't have to create 2 or 3 types of version, you just be more reusable as possible just setting the width and height size for percentage. Due to you can uses in other containers that you specifies the sizes and positions. Best. On 11/30/06, Steve Hindle [EMAIL PROTECTED]

Re: [flexcoders] Can't get value after labelfunction

2006-12-01 Thread Igor Costa
Kenny in the target just enable the DropEnable=true Regards. On 11/29/06, bsdensmore [EMAIL PROTECTED] wrote: I have 2 DataGridColumns that use a labelfunction to multiply a couple of fields and display the value in another column. For some reason after the field is updated with the total

Re: [flexcoders] What was second nature has me researching through pages of docs

2006-12-01 Thread Igor Costa
Dj 1. How do I get the length of my UITextField, not 100% - that's just plain silly AN: mx:text id=test/ mx:script import mx.controls.TextField; public var sizeOf:int; public function returnSizeofTextField():void { sizeOf = test.length; trace(sizeOf); } /mx:script 2.

Re: [flexcoders] Re: How to control depth

2006-12-01 Thread Igor Costa
Using the for example public function swap():void { yourComponent.addChildAt(this,numChildren+1); } So it will put in the top of level. regards. On 11/30/06, elevight [EMAIL PROTECTED] wrote: Does anyone know how to control the z-axis of objects? Here's a very short code snippet to

Re: [flexcoders] Return the application name

2006-12-01 Thread Igor Costa
Just create a for loop for it. On 11/30/06, michrx7 [EMAIL PROTECTED] wrote: If I build out a project called InvestorStuff every time the user opens another instance it gives it a new number like: InvestorStuff0 InvestorStuff1 InvestorStuff2 InvestorStuff3 How do I check this value to

Re: [flexcoders] Spanish language charcaters on button labels

2006-12-01 Thread {reduxdj}
Igor, the the values are already encoded for amfphp remoting, sending the strings directly back from php makes them say [UTF String] with no value. so I encode them in the html safe way and it works... Is there a string function to change htmlText to normal text and vica versa, i guess i

RE: [flexcoders] Image Slide Show(Quick One)

2006-12-01 Thread KP
Thanks Lachlan. Well I was also doing same but I got stuck in the images repeating logic .thanks a lot for this one. Kumar :-) _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lachlan Cotter Sent: Friday, December 01, 2006 3:03 AM To:

RE: [flexcoders] {data} current index

2006-12-01 Thread Steve Cox
rowIndex refers to the index of the item in the viewable area within the datagrid; not as the docs say the index of the item in the dataprovider. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dustin Mercer Sent: 30 November 2006 22:39 To:

[flexcoders] Is it possible to show text in XML format in TextArea

2006-12-01 Thread Chen, Ming \(Troy\)
Hi all I want to copy a xml file from clickboard to an TextArea. Can the textArea autorender the text into XML format ? like specify a particular color for each tag? Is it possible? I saw the styleSheet property, does it work with it? appreciate Email:[EMAIL PROTECTED] MSN:[EMAIL PROTECTED]

[flexcoders] Comparing two Dates

2006-12-01 Thread Gaurav Jain
Hi All, I would appreciate if some one can suggest me a quick solution for comparing two dates and finding out which date is greater. Thanks Gaurav

Re: [flexcoders] FDS Stress Testing Framework (Beta) Now Available

2006-12-01 Thread Ralph Hauwert
Hi Matt, That's great. We are just about to deploy a possibly high traffic load-balanced FDS application, in which we are employing AMF and RTMP communications. How far would this enable us to test and asses performance using multiple FDS servers ? Regards, Ralph. On 12/1/06, Matt Chotin [EMAIL

[flexcoders] Re: File I/O Error - Error #2038

2006-12-01 Thread Daryn Nakhuda
I have a similar problem. I can upload a particular file just fine on my local dev environment, but same code running on the production server, with the same file, and I get this I/O Error (not a security/domain error). --- In flexcoders@yahoogroups.com, kristian_wright2002 [EMAIL PROTECTED]

[flexcoders] Bitmapdata draw with BlendMode....result: Player Crash

2006-12-01 Thread maikelsibbald
Does any body know why the use of a blendmode can result into a Player Crash?? /***/ img.draw(p_clip2,mat, new ColorTransform(0, 0, 0, 1, 0, 255, 255, 255),BlendMode.DIFFERENCE);

[flexcoders] Problem with Loader

2006-12-01 Thread pdflibpilot
I am trying to load images into my display object and began with this simple example taken directly from the Help system. Why is it giving me the error undefined property on pictLdr on the lines indicated () ?? import flash.display.*; import flash.net.URLRequest; import flash.events.Event; var

[flexcoders] Set combobox selection to data

2006-12-01 Thread Wally Randall
How do I set the selected value of a combobox to that of the data returned from the database record?

[flexcoders] faultCode = Client.Error.RequestTimeout

2006-12-01 Thread Sergey Kovalyov
Hi All! Is there any constant that contains Client.Error.RequestTimeout string value in framework classes? Actually it's the value of fault.faultCode in FaultEvent instance when request timeout happens. Sergey.

Re: [flexcoders] Flash 9, Binary sockets and Bonjour

2006-12-01 Thread Tom Chiverton
On Thursday 30 November 2006 16:47, Alex MacCaw wrote: I was wondering if it is possible to implement Apple's Bonjour (multicast DNS Service Discovery API) in flash, regarding its new capabilities. Probably not, because you need a local raw socket. Apollo, of course, will have this, and yes,

Re: [flexcoders] Disclosure triangles

2006-12-01 Thread Darron J. Schall
Yes, it's possible. You have to embed the symbol from the Assets.swf that comes with the Flex framework. I'm using CSS to do this in a similar scenario, and my code looks like this: ClassName { disclosure-open-icon: Embed( souce=Assets.swf, symbol=TreeDisclosureOpen );

[flexcoders] uploading an object

2006-12-01 Thread Daryn Nakhuda
I have data in my flex app that I want to send to my server as if it were a upload from a filereference (aka, as a multipart form). Is there a easy way to do that? Basically, I already have a backend servlet that accepts file uploads from my flex app, and from an html browse form, and i'd like

[flexcoders] Re: Comparing two Dates

2006-12-01 Thread bsdensmore
Hi Gaurav, Ed Eustace wrote a Validator to handle this. He sent me a copy but I haven't had a chance to use it yet. I'll be putting it into my app in the next day or so. If you want I can send it to you. Just email me at bsdensmore[at]yahoo[dot]com. Ben --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Can't get value after labelfunction

2006-12-01 Thread bsdensmore
Thanks for trying Tracy. Any ideas of what route I should go? Thanks, Ben --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: While this method works, I do not think it is a good solution. I decided to add a simple functionality of displaying the total weight

RE: [flexcoders] Comparing two Dates

2006-12-01 Thread Dimitrios Gianninas
Use the attached... enjoy Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gaurav Jain Sent: Friday, December 01, 2006 5:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] uploading an object

2006-12-01 Thread Dimitrios Gianninas
Yes, use the FileReference class, it does this. There is an example in the documentation. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daryn Nakhuda Sent: Friday, December

RE: [flexcoders] uploading an object

2006-12-01 Thread Mike Weiland
Daryn, It's possible, but probably not the way you are going about doing it. I've taken 2 different paths to achieve this in the past, the first was on www.CertificateCreator.com when a user saves a certificate the object that describes the certificate is sent to ColdFusion and I convert the

[flexcoders] Re: Comparing two Dates

2006-12-01 Thread bsdensmore
Dimitrios, How do you use this? I'm trying to pass in 2 dates from a textInput but when I try to use the displayDate() method to format the dates and pass them into the compareDates() method it complains about the data types. This is what I'm trying to do: private function compareDates():void {

[flexcoders] Resize children of a Tile container

2006-12-01 Thread Jim Robson
How do you dynamically resize the children in a Tile container? I don't have any problem setting the size when the children are initially added to the Tile. After that, however, they won't resize. I've posted a simple app that illustrates this issue (right-click to view source):

Re: [flexcoders] correct way to create rectangles ?

2006-12-01 Thread Daniel Freiman
The answer to your question is really a question: Can you think of any reason you should be using Sprites. If you are going to want to click on the rectangles, move them, or swap depths, Sprites might make that easier. If they're just going to be drawn and then never change, then using Sprites

[flexcoders] Re: Comparing two Dates

2006-12-01 Thread bsdensmore
Nevermind, My brain is fried from trying to figure out my itemrenderer issue. I was looking at the code wrong. All set. Thanks, Ben --- In flexcoders@yahoogroups.com, bsdensmore [EMAIL PROTECTED] wrote: Dimitrios, How do you use this? I'm trying to pass in 2 dates from a textInput but when

[flexcoders] Re: Charting Questions

2006-12-01 Thread polonycjunk
Ely and Tim, Thanks for all the help! --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: To simulate a border around the rectangular region inside a chart, you can use axisRenderers. This example draws a dark green border inside the axis labels. ?xml version=1.0

[flexcoders] stretch HBox height=100%

2006-12-01 Thread app.developer
The HBox is not stretching vertically 100% when the panel container stretches vertically. Other containers do stretch 100% in the panel container (if the HBox is not involved). Is there a way to get the HBox to stretch vertically when the panel is enlarged vertically? TIA PC

Re: [flexcoders] File I/O Error - Error #2038

2006-12-01 Thread slangeberg
Check the coldfusion server's admin page. There probably is a setting on production server limiting file upload size. -Scott On 11/6/06, kristian_wright2002 [EMAIL PROTECTED] wrote: I've seen a few posts on this error but none of them seem to solve my issue. I'm trying to upload some files

[flexcoders] Re: Chart: Filter point after transformation from global to local

2006-12-01 Thread Claude Hussenet
I have implemented the following and I still have an issue with the windows resizing. It seems that I have to flush something which is related to the segment list which is computed between 2 updates.I am getting an nice fireworks during the window resizing that I don't get during panning or

[flexcoders] Re: What was second nature has me researching through pages of docs

2006-12-01 Thread camlinaeizerous
I haven't tested this but for 4 I would assume something similar to the following should work. var sometext:UITextField; sometext.styleName = UITextField in your style sheet you should be able to now set styles and the font, UITextField{ fontFamily: ...; } if you call it UITextField you may

Re: [flexcoders] Set combobox selection to data

2006-12-01 Thread Yiðit Boyar
i dont know whether there is a better way or not but i've used the fallowing way. assume needed_val is the variable which is equal to the data of the one which should be selected (number in the example) mx:ComboBox labelField='name' dataProvider={blaReq.lastResult.valS.val}

[flexcoders] explorer local file

2006-12-01 Thread Willy Ci
hi, is there a way to browse/explorer local file file system within flex 2.0? I need write a file/folder upload program, I want user to able explorer, then drag and drop local files/folds to create a upload list, so far only thing I found is using fileRef.browse, which is not a user friendly

[flexcoders] About File Uploading !!

2006-12-01 Thread jammilk01
Hi all Now I`m trying to make file upload process. This is my code (down below) -- Flex Code - mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import flash.net.FileFilter; import flash.net.FileReference; import flash.net.URLRequest;

Re: [flexcoders] building reusable, 'stacking' components

2006-12-01 Thread Steve Hindle
Hi Igor, Sizes are fine - I'm already using percentage widths. The problem is sometimes I want the component to use a tabNavigator and sometimes I want it to use a linkBar, etc. The basic criteria is the 'outermost' component on the page should use a TabNavigator, and components inside that

[flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-12-01 Thread Tim Hoff
Hi Sajid, Datasets returned from .Net aren't natively recognized by Flex. To solve this, you can either use a stored procedure with FOR XML AUTO, or cast your dataset to a class. Here is a casting example: http://www.cflex.net/showFileDetails.cfm?ObjectID=418Object=FileChanne\ lID=1

Re: [flexcoders] Flash Player 9 issues on Windows 2005 Tablet PC Edition

2006-12-01 Thread John Dowdell
Steven Toth wrote: Has any testing been done of the Flash Player 9 on Windows 2005 Tablet PC edition? When running our application under Flash Player 7 it responded as expected. However, Flash Player 9 is responding poorly to pen gestures such as textInput focus and double click. We filed

[flexcoders] Component behavior when child of navigation container

2006-12-01 Thread Sergey Kovalyov
Hi All! I create the component using code behind technique (MXML inherited from ActionScript class inherited from framework class, Box in my case). The component contains children defined in MXML and has some properties that have influence on children behavior. I call invalidateProperties() in

[flexcoders] Set selected text in editable cell in DataGrid

2006-12-01 Thread Brian Dunphy
Does anybody know how to set the selected text in an editable cell in a DataGrid? I can't figure out if the editable cells are TextInputs, but I know that setSelection() function does not work. Any help would be appreciated. Thanks, Brian Dunphy

[flexcoders] from Flash AMFPHP to Flex FDS...need advice

2006-12-01 Thread Kevin Merritt
This question may be a little naive, but I am interested in why one would choose to use Hibernate with FDMS? Would it be possible to do Cairngorm/FDMS/MySQL or would Hibernate be required? I am not familiar with Hibernate so I don't completely understand the assets it brings to the

[flexcoders] FDS number NaN

2006-12-01 Thread Jeff Krueger
All, I am finding that when I pass a actionscript class to a remote java object and a number variable type in the actionscript class is set to NaN (Null), that the java class gets set to a 0, instead of a null. Is there something I am missing or something I need to set the number to

Re: [flexcoders] Component behavior when child of navigation container

2006-12-01 Thread Steve Hindle
This sort of thing drove me batty with Flex... I finally ended up doing all init. in createComplete methods for each child container (ie, when a child builds itself, it initializes itself) This means I have to sprinkle if (child != null)... around the parent container though Another problem I

RE: [flexcoders] Re: Can't get value after labelfunction

2006-12-01 Thread Tracy Spratt
Absolutely. Use a custom item object as I proposed earlier. I'll have an example on CFLEX.NET in an hour or so. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bsdensmore Sent: Friday, December 01, 2006 8:44 AM To:

Re: [flexcoders] FDS number NaN

2006-12-01 Thread Douglas McCarroll
Jeff, I'm not sure that this will help you find a solution, but it confirms that this is a known issue: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part1_GetStarted.html Primitive values cannot be set to null in Java. When passing Boolean and Number

[flexcoders] How do you post a large form variable?

2006-12-01 Thread buhlly88
Does anyone know if it is possible to post a long form variable with HTTPService without passing as url variables. I get a Stream Error because my querystring is too long. I've tried method=POST, but it still passes it via the url string. John

Re: [flexcoders] uploading an object

2006-12-01 Thread Daryn Nakhuda
Hi Dimitrios, FileReference works for uploading a local file to the server, but I want a way to upload serialized data that is already within my application, AS IF it were a local file. If there is a way to seed the data in FileReference, instead of using browse(), that would be perfect, but

[flexcoders] Unable to load wsdl using Proxy Service

2006-12-01 Thread Allen Riddle
I am trying to set up my Flex app to use wsdl endpoints in the proxy services configuration. My web services are protected by Acegi, and only allow clients to invoke the services when the authorization cookie is dropped on their machine. When going through the proxy services endpoint, I get an

[flexcoders] Embed or Load PDF File

2006-12-01 Thread mvbaffa
Hi, How can I load, on the fly, and/or embed a PDF in one of the Flex 2 containers or loaders. I have a database of PDF's that should be displayed in my Flex 2 application. I am now working with URL's pointing to these documents that are visualized directly in the browser, but I would like to

[flexcoders] Re: Set combobox selection to data

2006-12-01 Thread camlinaeizerous
--- In flexcoders@yahoogroups.com, Yiðit Boyar [EMAIL PROTECTED] wrote: i dont know whether there is a better way or not but i've used the fallowing way. assume needed_val is the variable which is equal to the data of the one which should be selected (number in the example) mx:ComboBox

Re: [flexcoders] FDS number NaN

2006-12-01 Thread Jeff Krueger
Thanks. I am not using a primitive, I am using Long. I wonder what it does for those. Jeff Douglas McCarroll [EMAIL PROTECTED] wrote: Jeff, I'm not sure that this will help you find a solution, but it confirms that this is a known issue:

RE: [flexcoders] Disclosure triangles

2006-12-01 Thread Gordon Smith
The framework doesn't provide a disclosure component, although it probably should. But there's no reason your Button can't use the same skins that the Tree uses. If you look at the Tree selector in defaults.css, you'll see that they're embedded from Assets.swf: disclosureClosedIcon:

[flexcoders] ways to support multipart/form uploading

2006-12-01 Thread Daryn Nakhuda
In thinking about the problem people are having with, say, taking a camera snapshot and uploading it to a server (without remoting or fms), there are two solutions I thought of that would be really helpful, although perhaps not trivial to implement. I was wondering if anyone has tried the

Re: [flexcoders] uploading an object

2006-12-01 Thread hank williams
I believe the only way to do that would be to write a little javascript and then use external interface to actually send the data to the javascript. Shouldnt be too hard, though I have never tried it. Regards, Hank On 12/1/06, Daryn Nakhuda [EMAIL PROTECTED] wrote: Hi Dimitrios, FileReference

RE: [flexcoders] Re: Styling in Flex is officially ridiculous

2006-12-01 Thread Gordon Smith
It's possible, but not trivial, to style hyperlinks in HTML text in Flex. Here is an example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[

[flexcoders] What is wrong with this component?

2006-12-01 Thread Wally Randall
The following custom component displays the --select-- value but not the contents of the array collection. What is my problem? ?xml version=1.0 encoding=utf-8? mx:ComboBox width=100 rowCount=15 xmlns:mx=http://www.adobe.com/2006/mxml; prompt=--select-- mx:ArrayCollection

Re: [flexcoders] Embed or Load PDF File

2006-12-01 Thread John Dowdell
mvbaffa wrote: How can I load, on the fly, and/or embed a PDF in one of the Flex 2 containers or loaders. I have a database of PDF's that should be displayed in my Flex 2 application. I am now working with URL's pointing to these documents that are visualized directly in the browser, but I

RE: [flexcoders] Re: Can't get value after labelfunction

2006-12-01 Thread Tracy Spratt
That example is posted: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=568 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, December 01, 2006 1:27 PM To:

[flexcoders] Idle Timeout

2006-12-01 Thread app.developer
Anyone dealt with a need to watch for an idle timeout for a user in a flex/flash application? I need something that will watch for key stroke and mouse click inactivity for some amount of time and then timeout, alert them and log out. TIA PC

RE: [flexcoders] What is wrong with this component?

2006-12-01 Thread Tracy Spratt
Wrap the ArrayCollection in mx:dataProvider tags. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Wally Randall Sent: Friday, December 01, 2006 2:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] What is wrong with

[flexcoders] Re: Set combobox selection to data

2006-12-01 Thread camlinaeizerous
??? I guess I'll stay away from the rich text editor my post came through blank. My drop downs are populated form the database as well as the database query that is decided what drop down index is selected. The following is the approach I took. var Cursor:IViewCursor = Drop down

[flexcoders] Synchronised TextArea selection

2006-12-01 Thread Jon Rowland
Hi, I'm trying to write a hex viewer, where one TextArea shows the hex values, and another the ASCII values, e.g. 41 42 43 44 ABCD 45 46 47 48 EFGH I need the TextAreas to show a synchronised selection, so if you select 42 - 45 in the first box, area 1, B-E is selected in the second box.

[flexcoders] Flex Builder 2.0 extension point documentation?

2006-12-01 Thread jruud68
Are the Eclipse extension points defined by Flex Builder described anywhere? com.adobe.flexbuilder.editors.mxml.quickFixProvider and com.adobe.flexbuilder.editors.mxml.contentAssistFactories are among the more interesting sounding ones that I'm not sure how to use.

[flexcoders] VideoDisplay Help

2006-12-01 Thread John Duff
Hoping someone out there will be able to help me with this. The VideoDisplay component uses a VideoPlayer object, which doesn't seem to exist in Actionscript 3. How can it be used in the VideoDisplay component, and how can I use it? I am writing an app and want to have the ability to play a flv

[flexcoders] Re: Set combobox selection to data

2006-12-01 Thread JWOpitz
I just extended mx:ComboBox with similar functionality: http://jwopitz.pastebin.ca/263641 You will also need the ArrayCollectionUtil: http://jwopitz.pastebin.ca/263645 There is still work to be done in both of these but feel free to copy them. --- In flexcoders@yahoogroups.com, Yi�it Boyar

Re: [flexcoders] Embed or Load PDF File

2006-12-01 Thread Darron J. Schall
If you would decide to take this approach, consider the recent articles I've published on my weblog about FlashPaper and Flex 2 integration: How to load FlashPaper Documents in Flex 2 - http://www.darronschall.com/weblog/archives/000249.cfm Batch Convert PDF files to FlashPaper 2 -

Re: [flexcoders] Flash Player 9 issues on Windows 2005 Tablet PC Edition

2006-12-01 Thread Chris Hill
AFAIK there is no Windows 2005 Tablet PC edition. I am running Windows XP Tablet PC edition on this computer, is that what you're talking about? Or are you perhaps running Vista on a Tablet PC? John Dowdell wrote: Steven Toth wrote: Has any testing been done of the Flash Player 9 on

Re: [flexcoders] Synchronised TextArea selection

2006-12-01 Thread Daniel Freiman
Option 1: if you add the event listener to the textArea.systemManagerinstead of the textArea it will register the mouseevents outside of the textArea. Option 2 (maybe): can use textArea.selectionBeginIndex/selectionEndIndex as a source in a binding to a function that sets the selection of the

[flexcoders] Need suggestions to efficiently initialize a set of tightly coupled faceless components.

2006-12-01 Thread Tracy Spratt
I have a set of faceless, data manipulation components, all of which need a direct reference to one or more of the others. They are instanitated using mxml. All are top level, with a unique id. Maintainability, readability, extensibility, reusability, etc are not issues in this situation, but

Re: [flexcoders] FDS number NaN

2006-12-01 Thread Douglas McCarroll
Jeff, Let me get this clear. If I understand correctly you're passing an AS number hoping that it will convert to a Java Long. But your number is set to null, and you'd like it to convert to null on the Java type. Is this correct? Douglas Jeff Krueger wrote: Thanks. I am not using a

[flexcoders] Re: Set combobox selection to data

2006-12-01 Thread JWOpitz
I just extended the ComboBox and created a property that can bind to an object, then internally it will updated the selectedItem: ComboBox http://jwopitz.pastebin.ca/263763 Needed Utility http://jwopitz.pastebin.ca/263764 Let me know if you have any questions on its usage. It still needs some

RE: [flexcoders] Re: Announcing FlexSearch.org !

2006-12-01 Thread Vishwajit Girdhari
Hey Clint This is a cool idea ! Tried url and it worked great for my searches. do add my flex blog for indexing : its http://flexiness.blogspot.com n one suggestion the default search is on forum ... can we have a genric default search and then specialise into forum , blog , doc etc ?

RE: [flexcoders] services-config with multiple endpoints

2006-12-01 Thread Shahlavi, Farid \(NIH/NLM\) [C]
You can create channels dynamically via actionscript like below: mx:Script ![CDATA[ import mx.messaging.ChannelSet; import mx.messaging.Channel; import

Re: [flexcoders] uploading an object

2006-12-01 Thread Daryn Nakhuda
Thanks Mike! I was trying to avoid using remoting, since I'm not using it anywhere else in my application (yet). Basically, I have a file upload to upload your picture, and I wanted to have a webcam snapshot option, that posted to the same existing backend piece. Doesn't sound like that is

[flexcoders] itemRenderer event question

2006-12-01 Thread jeff noyes
if I have a checkbox as an ItemRenderer in a datagrid, how do I determine if it's enabled? mailto:[EMAIL PROTECTED]

RE: [flexcoders] FDS Stress Testing Framework (Beta) Now Available

2006-12-01 Thread Matt Chotin
I think it will give you some sense but I'll be honest that I haven't used the framework myself. If you end up having questions please use the discussion section on the Wiki, the folks who worked on the tool should be monitoring that. Matt From:

[flexcoders] 10 Signs you need to join FlexComponents

2006-12-01 Thread Ted Patrick
1. Extended mx.core.UIComponent lately? 2. Dispatching DOM Events before 10AM? 3. You want a new mx:Form Class. 4. You are dying to know what these do? [Style(name=horizontalGap, type=Number, format=Length, inherit=no)] [Bindable(valueCommit)] [Inspectable(category=General)] 5. You have

[flexcoders] Pan/Scroll chart effect

2006-12-01 Thread Dana Gutride
Hi, I've been trying some panning effects with a chart and I've had some success following the example here: http://www.quietlyscheming.com/blog/charts/interactive-bubble-chart. I'm having trouble doing a couple of things and hopefully I can get a few ideas. My data covers 24 hours, I've added

RE: [flexcoders] Re: Styling in Flex is officially ridiculous

2006-12-01 Thread Lance Linder
I know everyone doesn't have the same needs but we have used HTML text in flash ever since it was supported. The framework in Flex as well as the new VM really made this difficult and in the end we had to override several of the Flex framework classes as well as extend some of the components to

[flexcoders] Re: Flash Player 9 issues on Windows 2005 Tablet PC Edition

2006-12-01 Thread Steven Toth
I apologise. The literal name of it is Microsoft Windows XP Tablet PC Edition 2005. Here is the url to the product page on Microsoft's site. Thanks. -Steven http://www.microsoft.com/windowsxp/tabletpc/evaluation/overviews/defa ult.mspx --- In flexcoders@yahoogroups.com, Chris Hill [EMAIL

Re: [flexcoders] ...UITextField - Setting styleName property doesn't work, or i don't know how use it.

2006-12-01 Thread {reduxdj}
I tried this approach, but using styleName does not give me the expected results... You can use styleName on Text's they work fine but not on UITextField, although it says it's a property of the UITextfield... who knows I'm relatively new at flex and swimming up stream all the time? This is

Re: [flexcoders] Igor: override a resize event or lock a VBox container... no idea how

2006-12-01 Thread {reduxdj}
how do i override a resize event or lock a VBox container not to get smaller as children are removed just uses the override method, please take a look at the help. Igor: I searched through help, there's nothing specific mentioning overriding a method to stop a resize event.

Re: [flexcoders] Matt: Event Propogation - how to bubble up through components??

2006-12-01 Thread {reduxdj}
Matt: Am I doing something wrong because my event listeners aren't triggering anything... the code is all the way at the bottom. If you have a moment. Thanks Patrick Matt Chotin wrote: If you're using UIComponents then it should work, the events should bubble. -Original

[flexcoders] Caingorm model1...amfphp remoting

2006-12-01 Thread {reduxdj}
I hear that model 1 is a great solution for simple data structures where all components can register with a dataprovider class... Does anyone have the link handy on this specific model info over on the labs? Is caingorm named after a mountain by the way? Thanks, Patrick