RE: [flexcoders] Organize Imports

2006-04-05 Thread Matt Chotin
I don't know if copying imports when you copy code is going to make it in. I kinda doubt it but I know what you mean about it being useful. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde Sent: Tuesday, April 04, 2006 5:30 AM

RE: [flexcoders] As2lib regexp doesn't work in Flex

2006-04-05 Thread Matt Chotin
That's a known limitation of Flex 1.5. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stanislav Zayarsky Sent: Tuesday, April 04, 2006 5:12 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] As2lib regexp doesn't work in Flex

RE: [flexcoders] Re: Find Function

2006-04-05 Thread Matt Chotin
In your other column you were using an inline renderer to display text that isn't the column name. You need to use a custom comparator function for that, the default sort is going to be based on the columnName. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Listening to Databind events

2006-04-05 Thread Matt Chotin
The event is going to be mx.events.PropertyChangeEvent which is in the ASDoc. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mvbaffa Sent: Tuesday, April 04, 2006 5:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Listening to

RE: [flexcoders] DataGrid Columnsort - CaseInsensitive

2006-04-05 Thread Matt Chotin
In Flex 2 what youd do is create a Sort object with a SortField for your column and set it to case insensitive. Then in the headerRelease event for that column, assign the sort to the dataProvider and call refresh() on it, then call event.preventDefault() so that the DG doesnt do its own

RE: [flexcoders] Flex2 :: Custom Component :: htmlText in Label freking

2006-04-05 Thread Matt Chotin
Forwarded on, sounds like a Label bug, can you try it just using a Label without being in your custom component? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Tuesday, April 04, 2006 8:19 AM To:

RE: [flexcoders] Flex 2b2: Double click troubles

2006-04-05 Thread Matt Chotin
The click/doubleClick behavior is generally considered correct as its the same as Windows behavior. If you want to know if only a click occurred you should store a variable and use a timer, when the timer fires check to see if doubleClick had fired and if not then execute on your click.

RE: [flexcoders] Large XML Dataset?

2006-04-05 Thread Matt Chotin
If you're really going to ship the application on CD that means the XML file is static right? You could compile the XML data in to an mx:XML source=yourfile.xml / and then it would be sitting there waiting for you. E4X will definitely be the most efficient way to access what you need. But

RE: [flexcoders] How to set wsdl path of webservice at runtime (Flex 1.5)

2006-04-05 Thread Matt Chotin
Setting the WSDL path at runtime isn't really supported. However if the WSDL is going to be the same for whatever server you hit you could create a copy of the WSDL, refer to that file, then change the endpointURI at runtime. Matt -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Can you capture LinkBar mouseOver index?

2006-04-05 Thread Matt Chotin
In Flex 2 you could subclass the LinkBar and override the hiliteSelectedNavItem, that might do what you want. mouseOver with index still wouldn't be exposed as an event though I think. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick

RE: [flexcoders] Scrapblog Builder - New Flex 1.5 Application

2006-04-05 Thread Matt Chotin
Looks great! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carlos Garcia Sent: Tuesday, April 04, 2006 2:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Scrapblog Builder - New Flex 1.5 Application We just launched a beta of

RE: [flexcoders] Re: CursorManager problem?

2006-04-05 Thread Matt Chotin
You probably need to make your test swf subclass Application so that everything can initialize properly. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sufibaba Sent: Tuesday, April 04, 2006 9:42 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
Hi all, I know this is not advanced, but I have a deadline for a FLEX app tomorrow and the client needs to see a login and signup sample. I have a CFC which has a method that checks if the email inputed already exists in the database. The cfc function returns TRUE or FALSE This is the

[flexcoders] DataGrid bugs

2006-04-05 Thread Sreejith Unnikrishnan
Adobe, I have noticed a few bugs with the datagrid. Bug 1If the headerHeight is set to '0', the headerText overlaps the first row content. [I assume this was already on the Flex BugBase] Bug 2If you have a scrollbar on the datagrid, try scrolling down and then resize the

AW: [flexcoders] DataGrid bugs

2006-04-05 Thread Harald Dehn
Hi, I found another bug: Bug 5 If you have a scrollbar with the verticalScrollposition 0 and click on a column header. You get an ListEvent.ITEM_CLICK where rowIndex != 0. In my opinion the rowIndex of the header should always be 0. Harry Von:

RE: [flexcoders] Organize Imports

2006-04-05 Thread Sönke Rohde
Of course copying all imports while refactoring will do the job but comfortable workflow is a different thing. For me this is a must-have for a professional coding environment like JDT or FDT. Are there chances this is going to be integrated in beta3 or flex 2 final? Can I put this feature on the

RE: [flexcoders] Listening to Databind events

2006-04-05 Thread Sönke Rohde
This will come with beta3? Currently PropertyChangeEvent isn't documentet anywhere. Can you give a code example? Cheers, Sönke -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Wednesday, April 05, 2006 8:02 AM To:

[flexcoders] Re: Security sandbox violation using PHP, APACHE MYSQL

2006-04-05 Thread lift69boy
Matt...we are definitely getting close ! I added entry mysql.default_port = 80 into my PHP config run flex project guess what, no flash error (but no data !). I run PHP query it doesnt connect to db. I try http://127.0.0.1:80/mysql in the browser no joy. I'm beginning to feel a twinge of

Re: [flexcoders] Re: Security sandbox violation using PHP, APACHE MYSQL

2006-04-05 Thread Oriol Gual
Why have you set the mysql default port to 80? 80 is the port for web servers usually and I wouldn't recommend to have mysql at it. The mysql default port is 3306.Another question, have you tried to access your php script without Flex? Just to make sure it's working properly. Oriol. --

[flexcoders] Flex 2.0 b2: DataGrid ( selectedIndex property )

2006-04-05 Thread tyombria
Hello. In DataGrid i can't select item by setting selectedIndex property. Only dg.selectedIndices = [ requiredIndex ] works. I think it's a bug. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Getting at the bound reference Flex 2.0b2

2006-04-05 Thread sourcecoderia
Is it possible, or does anyone know of a way to get at the binding information for a component in order to get the name of the object, or item it is bound too. For example mx:TextBox text={Myvalue} / I would want to get the text={ Myvalue }, Myvalue, or something like that. Just to read it

[flexcoders] [WAS] Scrapblog Builder - Demo crashes browser using 8.5 beta2 flash player

2006-04-05 Thread Muzak
The demo (http://www.scrapblog.com/demo) crashes the Flash Plugin (8.5 beta2). Does so at the same place each time, right after the narrator says 'add a link to another website if you want'. I've done some video integration with Flex Builder 2 beta 2 and often ran into browser crashes (but hard

Re: [flexcoders] [WAS] Scrapblog Builder - Demo crashes browser using 8.5 beta2 flash player

2006-04-05 Thread Carlos Rovira
Yes Muzak,I report some days ago a FP8.5 browser crash while viewing Grant Skinner Incomplet that makes heavy use of new flash 8 features and video.On 4/5/06, Muzak [EMAIL PROTECTED] wrote: The demo (http://www.scrapblog.com/demo) crashes the Flash Plugin (8.5 beta2). Does so at the same

[flexcoders] Re: Large XML Dataset?

2006-04-05 Thread wayneposner
--- In flexcoders@yahoogroups.com, Evert | Collab [EMAIL PROTECTED] wrote: Is there any chance you can split up the xml in multiple categories. Or maybe with a 'global xml index' of some kind? Evert Could you please explain what you mean by global xml index? Wayne -- Flexcoders

[flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Nathan W. Phelps
Yes, this is indeed possible and you will not need the server with Flex 2. However, just a heads up, the webservice stuff is pretty slow (and has a lot of odd behaviors right now in the beta) and I've started to migrate from using WebService to using HTTPService with a REST backend developed

Re: [flexcoders] GENERAL actionscript question

2006-04-05 Thread Richard Turner-Jones
Looks like the parenthesis are in the wrong place Try: function checkEmailExists():void { if (srv.checkEmail({email:userEmailInput.text}) == true) { submitSignup.enabled = true; } else { submitSignup.enabled = false; } } or even better function

[flexcoders] convert string to date -

2006-04-05 Thread venkat eswar
hi,how to convert a string format like "22-4-2006" to date in flex 2.0 ? New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Getting a Security Error Accessing URL on accessing a web service

2006-04-05 Thread Sandeep Malik
Hi All, I am using Flex 2.0 beta 1 framework (no Data Services) to invoke a web service deployed on JBoss 4.0.3. When I connect to web service I get an alert saying that security error accessing url. Some details: 1. I have written a crossdomain.xml as well with allowed domain as 127.0.0.1 2.

Re: [flexcoders] GENERAL actionscript question

2006-04-05 Thread Sonja Duijvesteijn
I'm not sure how Coldfusion gives results back, but i would assume the true or false is a string and not a boolean. public function checkEmailExists():void { if ((srv.checkEmail({email:userEmailInput.text })) ==true){ submitSignup.enabled = true; } else {

[flexcoders] Vertical tabs

2006-04-05 Thread leo4beer
Hi all, This is my first post to this list #61514; I was wondering if it's possible to create vertical tabs in Flex (I'm on 1.5). Thanks in advance, Leo4Beer -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Large XML Dataset?

2006-04-05 Thread wayneposner
--- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: I had some of the same issues reading XML over HTTP. If your XML is dynamically generated by a server (via JSP, CF, ASP, etc.), you can do what I did, which is to essentially pass your search values as parameters

Re: [flexcoders] GENERAL actionscript question

2006-04-05 Thread Richard Turner-Jones
whoops, sorry, I left the public out of the function public function checkEmailExists():void { ... Richard Richard Turner-Jones wrote: Looks like the parenthesis are in the wrong place Try: function checkEmailExists():void { if (srv.checkEmail({email:userEmailInput.text}) == true) {

[flexcoders] Re: Listening to Databind events

2006-04-05 Thread mvbaffa
Thanks Matt When will this be avaiable Can we use now --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: The event is going to be mx.events.PropertyChangeEvent which is in the ASDoc. Matt -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] convert string to date -

2006-04-05 Thread Oriol Gual
Just do this:var date:Date = new Date(22/5//2006) or var date:Date = new Date(2006,5,22)Remember that months go from 0 (January) to 11 (December) not 1 to 12.BTW, try to look at the documentation before asking, I think it's all quite good explained: Date doc:

[flexcoders] Sliding Windows in Different Layers

2006-04-05 Thread mvbaffa
Hi everybody, I would like to show a sliding panel, or title window, in a different layer. I am not an expert in flash but i know that we can put images or animations in different layers so that they can be shown overlaped. I would like to show a properties windows in my flex application that

[flexcoders] Flex 2.0 b2: DataGrid ( verticalScrollPosition property )

2006-04-05 Thread tyombria
If I populate dataGrid and then set dataGrid.verticalScrollPosition property content of dataGrid will have zero scroll position. Scrollbar in dataGrid will have scroll position which i've set. I think it's a bug. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Sliding Windows in Different Layers

2006-04-05 Thread jeremy lu
you might need PopUpManager.createPopUp() On 4/5/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody,I would like to show a sliding panel, or title window, in a differentlayer. I am not an expert in flash but i know that we can put imagesor animations in different layers so that they can be

[flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Bolo Michelin
Hello everyOne :)i try to follow this post to setup Flex 2 on my mac (with tiger)http://www.gskinner.com/blog/archives/2005/12/easily_compile.html when i did that4) Verify that everything is working by copying the HelloAS3.as included with flCompile to your home directory, and executing the

[flexcoders] RE: Second instance of TitleWindow with Repeater inside doesn't resize

2006-04-05 Thread Sergey Kovalyov
You can also try out this code for pop up: ?xml version=1.0 encoding=utf-8? mx:TitleWindow xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns:view=com.sonopia.sonoportal.controls.siteBuilder.portletEditor.* panelBorderStyle=roundCorners mx:Repeater

Re: [flexcoders] cloning was: in operator (F2B2)

2006-04-05 Thread jeremy lu
hi Darron, I did use regiserClassAlias() to register the VO to correct class. but it only works for copy of single VO, not a collection of VOs. (this is same as the example in livedoc, it's just copying one VO named eg) any idea ? On 4/5/06, Gordon Smith [EMAIL PROTECTED] wrote:

[flexcoders] Re: Form dataProvider

2006-04-05 Thread pepe_perez_perez_perez
Please disregard this, I'm feeling stupid. It was only a mx:Binding back to the ArrayCollection. Pepe. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

[flexcoders] Second instance of TitleWindow with Repeater inside doesn't resize

2006-04-05 Thread Sergey Kovalyov
Hi Flexcoders! I have the TitleWindow with Repeater inside and when I create two instances of it using PopUpManager.createPopUp() or one as fixed Panel and another one as pop up, the second instance doesn't resize upon Generate button click that means changing dataprovider. Somewhen, not in this

[flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Zoltan Csibi
Fluorine dotnet remoting gateway supports both .net 1.1 and 2.0 The current version handles .net 2 nullable parameter types, the next update will handle mapping to generic collections. Support for AMF3 will be available in a week probably. Zoli -- Flexcoders Mailing List FAQ:

[flexcoders] Alert window customize

2006-04-05 Thread lancert82
I want to customize the Alert window. When the alert window opens, the background is blurred, but i don't like that, so i want to give it an other color or maybe fully transparant ... You have something in 'styles' and that is 'modalTransparency' ... Thx :) -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Re: Find Function

2006-04-05 Thread naresh . mepani
Sorry to be a bit dim, what do you mean by custom comparator function. Thanks for any help Matt Chotin [EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 05/04/2006 07:01 Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject RE:

[flexcoders] The replacement for the DataSet

2006-04-05 Thread Manuel Saint-Victor
So is the DataSet entirely deprecated- actually gone- in ActionScript 3. I remember someone mentioning that it wasn't recommended for use with Flex 1.5 a few months ago but will it be entirely replaced by using a model is AS3? Mani -- Flexcoders Mailing List FAQ:

[flexcoders] Problems with flex custom authentication using flex, jboss with tomcat 5.5

2006-04-05 Thread jfournet
We seem to be having problems getting custom authentication to work with the custom authentication module supplied with flex for use with tomcat. Apparently it is not compatible with tomcat 5.5. Apparently the structure of the tomcat valve api has changed. Has anyone found a resolution

[flexcoders] [Q]F2B2: Classes must not be nested??

2006-04-05 Thread Clint Willard
What is this error message mean exactly: Classes must not be nested I've search and found the error code but no discription, reason why, or any solutions. The class is not nested that I know of: class ShoppingCart{ var items : Array; var total : Number = 0; function ShoppingCart() { items=new

Re: [flexcoders] Re: Large XML Dataset?

2006-04-05 Thread Evert | Collab
Lets say... you have 10 records, aa ab ac ad ae ba bb bc bd be you could create an xml file which tells you all records that start with a* can be fetched from a.xml but yea, this is overly simplified. Well, in short.. see where you can split up your xml and if its needed create a central xml

[flexcoders] OutOfMemoryError

2006-04-05 Thread Kim Reddington
I have a large application that I've been running for over a year. All of a sudden the app stopped running. I am getting an OutOfMemory Error when I tried to run in any browser. My first thought was it must have been the changes I've made. Luckily, we are using CVS, so I grabbed a version

Re: [flexcoders] [Q]F2B2: Classes must not be nested??

2006-04-05 Thread Sonja Duijvesteijn
You cannot make a class in the mxml, by using mx:Script source=ShoppingCart.as/ you put that code basically right there in the file. So, it's an include, instead of an import. Try this mx:Application xmlns:mx= http://www.adobe.com/2006/mxml xmlns=* initialize=initApp() verticalGap=0

Re: [flexcoders] [Q]F2B2: Classes must not be nested??

2006-04-05 Thread Oriol Gual
Have you defined a package before the class?2006/4/5, Clint Willard [EMAIL PROTECTED]: What is this error message mean exactly: Classes must not be nested I've search and found the error code but no discription, reason why, or any solutions. The class is not nested that I know of: class

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Peter Baird
Title: Re: [flexcoders] Flex 2 on Mac OS X Yes, the method has changed a bit in recent versions of Flex 2. Now the command line for your file should read as follows: java -jar flex/lib/mxmlc.jar -load-config flex/frameworks/flex-config.xml -file-specs 'helloas3.as' Note the key change is

Re: [flexcoders] OutOfMemoryError

2006-04-05 Thread Joshua Garnett
I'm not sure if this is related, but when running large Flex 1.5 apps I'd get an OutOfMemory Error from Tomcat. If you open up the Tomcat monitor and then goto the Java tab you can adjust the memory settings. I've set Initial Memory Pool to 64 and Maximum Memory Pool to 512. After making those

RE: [flexcoders] Listening to Databind events

2006-04-05 Thread Matt Chotin
http://livedocs.macromedia.com/labs/1/flex20beta2/langref/mx/events/PropertyChangeEvent.html -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sönke Rohde Sent: Wednesday, April 05, 2006 1:13 AM To: flexcoders@yahoogroups.com Subject: RE:

RE: [flexcoders] OutOfMemoryError

2006-04-05 Thread Peter Farland
Hi Kim, How are you compiling the application? The reason I ask is that it's not clear from your email what is reporting this error or where/how it is reported to you... When you say that you tried to run it in a browser, are you relying on the webtier compiler by browsing to a .mxml

RE: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Tobias Patton
You can avoid the java jar stuff if you download the Flex 2 SDK from labs.adobe.com. They provide shell scripts (mxmlc and compc) that wrap all that stuff up very nicely. Also, because the scripts run from the bin/ directory, they will find the default flex-config.xml without you having

[flexcoders] Flex2B2 : buttons on the panel header

2006-04-05 Thread bhaq1972
Hi i wanted to get some ideas/answers for the following. in flex 1.5 i had a extended panel which was based on Christophe Coenraets example where he added mulitiple buttons on the header. He uses the createClassObject() method, and then positions the button in the header. 1) will i still have

[flexcoders] Help on Illegal assignment to function

2006-04-05 Thread parinda_b_patel
I am getting this compiler error:Illegal assignment to function. I read the compiler error docs for Flex 2 which explains this error as error code 1168. But I do not understand how those 2 print statements in the explaination are different. Anyways so here is my code in which I am getting Illegal

RE: [flexcoders] GENERAL actionscript question

2006-04-05 Thread Kelly @ Dekayd Media Inc.
Unless something has changed in Flex 2 that I am not aware of, you need to define a result handler for Remote Object call and do the check in there. RO Calls are asynchronous. Something like: public function checkEmailExists():void { srv.checkEmail({email:userEmailInput.text}); }

[flexcoders] Re: CursorManager problem?

2006-04-05 Thread sufibaba
Matt, I've just tried extending mx.core.Application but I get this error. Do you know what the problem might be? TypeError: Error #1006: Call attempted on an object that is not a function. at mx.core::Container/createBorder() at

[flexcoders] Re: Large XML Dataset?

2006-04-05 Thread Doug Lowder
In that case I think your best bet is what Evert suggested: split your XML into multiple smaller, more manageable files. The splitting could take place either on your server that generates the original XML or as a separate process prior to saving theXML to CD. You could probably even incorporate

RE: [flexcoders] Help on Illegal assignment to function

2006-04-05 Thread Gordon Smith
In AS3, if a class has declared a method at compile time, you can't reset that method at runtime to be a different function. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of parinda_b_patel Sent: Wednesday, April 05, 2006 8:39 AM To:

[flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread Bruno Martins
How I can fix this: public override function set columns(value:Array):void {for(var i:Number = 0; ivalue.length; i++ ){ value[i].headerRenderer = HeadRendererAddRemove;}} Error #1034: Type Coercion failed: cannot convert HeadRendererAddRemove$ to mx.core.IFactory tks... -- Flexcoders

[flexcoders] Re: OutOfMemoryError

2006-04-05 Thread Kim Reddington
Peter, I am running the application in Flex 1.5 and have installed Flex 2.0 for a different project. It doesn't matter how I run the app, I always get an OutOfMemory Error. I've tried running from Flex Builder, by typing the mxml filename in the browser address field, by bringing up

RE: [flexcoders] What upload servlet at server side to use along with FileReference class?

2006-04-05 Thread Oscar . Cortes
I am getting the same error that Andriy reports below. However, the uploads works fine. Carson, where can I find more information about Flash Player sending the request twice. I am assuming that this is a known problem. I found others forums where they talk about this error and some of them

Re: [flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread Bruno Martins
Hi Jeremy, The error was fixed but the headerRenderer won't be displayed. Tks... On 4/5/06, jeremy lu [EMAIL PROTECTED] wrote: hi Bruno, try this see if it works :-) On 4/6/06, Bruno Martins [EMAIL PROTECTED] wrote: How I can fix this: public override function set

[flexcoders] Re: Security sandbox violation using PHP, APACHE MYSQL

2006-04-05 Thread lift69boy
Matt...we are definitely getting close ! I added entry mysql.default_port = 80 into my PHP config run flex project guess what, no flash error (but no data !). I run PHP query it doesnt connect to db. I try http://127.0.0.1:80/mysql in the browser no joy. I'm beginning to feel a twinge of

[flexcoders] SOT: Flex UG for SF Bay Area?

2006-04-05 Thread Jennifer Larkin
Someone has requested that I start a Flex User Group for the SF Bay Area. How many people here are in the area and if so, do you think you would attend? If you are not in the area and you could view our meetings online, would you attend? It seems like SF would be the perfect place to start a Flex

[flexcoders] Problem assigning Ascii codes into Links

2006-04-05 Thread misiofasol
Hey, I have a problem with assigning strings holding ascii codes into links. This is what I am doing right now to force links to display character instead of ascii code for that character: public static function someFunction ( str ) : String {

RE: [flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Lance Linder
Support for AMF3 will be available in a week probably. Zoli Sweet! Cant wait to give it a try! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] Re: OutOfMemoryError

2006-04-05 Thread Carson Hager
Take Tomcat out of the picture and test with mxmlc after adding the following argument to the java.args argument in jvm.config located in the same directory as mxmlc. -Xmx512m Note that args on that property are space delimited. Run mxmlc again and see if you run out of memory.

Re: [flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread jeremy lu
hi Bruno, try this see if it works :-)On 4/6/06, Bruno Martins [EMAIL PROTECTED] wrote: How I can fix this: public override function set columns(value:Array):void {for(var i:Number = 0; ivalue.length; i++ ){ value[i].headerRenderer = HeadRendererAddRemove as IFactory;}} --

[flexcoders] Re: Security sandbox violation using PHP, APACHE MYSQL

2006-04-05 Thread lift69boy
Hi Oriol I've reset to 3306. I've run my php script in the browser it works fine. If I call a simple (no db read) php script from flex, no error is returned which indicates that the security is fine between flash the php, both localhost:80/. This only leaves security issues in accessing my

RE: [flexcoders] What upload servlet at server side to use along with FileReference class?

2006-04-05 Thread Carson Hager
We spoke to MM Support about this some time ago and they confirmed that the player will often send an incorrect second request. We were seeing this and wanted to make sure that we weren't doing something wrong. It turns out that we were not. As I mentioned, we look for IOException and ignore.

Re: [flexcoders] SOT: Flex UG for SF Bay Area?

2006-04-05 Thread Jignesh Dodiya
is this for local people only or remote person also can be the member?? On 4/5/06, Jennifer Larkin [EMAIL PROTECTED] wrote: Someone has requested that I start a Flex User Group for the SF BayArea. How many people here are in the area and if so, do you think youwould attend? If you are not

[flexcoders] Populate datagrid columns via titlewindow text input boxes

2006-04-05 Thread rgwilson26
I am working on an app with a datagrid and button where the user will click a button to display a titlewindow with various intput boxes to populate rows in the datagrid. At the moment I can only get one object to populate (the very first column and no others) the dg. My question is how can I

[flexcoders] Re: Populate datagrid columns via titlewindow text input boxes

2006-04-05 Thread Doug Lowder
You could dispatch a single event with all the necessary data. Otherwise, you would have to replace the individual column data, rather than using dgLessonsLearned.replaceItemAt(), which replaces the entire row. Ex: (Main app) ... (in showPopUp()) t.addEventListener(infoUpdate, this);

[flexcoders] F2B2: Namespaces breaking E4X

2006-04-05 Thread ben.clinkinbeard
The title pretty much says it all. Using the example code here you can see what I mean. http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:E4X:overview If you change the root node to something like employees xmlns=http://www.example.com/xml/;, none of the e4x expressions will

RE: [flexcoders] Re: OutOfMemoryError

2006-04-05 Thread Peter Farland
Yep, as Carson said, I'd be interested to see what happens when you change the maximum memory allocation size for the jvm.config file used by mxmlc? I'm also interested to see whether other simpler applications cause this error? If it still happens then, would it be possible to prepare a

[flexcoders] Re: Populate datagrid columns via titlewindow text input boxes

2006-04-05 Thread Doug Lowder
To auto select the first row of a datagrid, try: creationComplete={myDG.selectedIndex = 0} --- In flexcoders@yahoogroups.com, rgwilson26 [EMAIL PROTECTED] wrote: I am working on an app with a datagrid and button where the user will click a button to display a titlewindow with various

[flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
Hi Kelly, As always u got it right. It works fine ;-) but I am getting this error in the compile panel parameter 'event' has no type declaration and its talking about this line: public function handleCheckEmailExists(event){ I even tried it like this: public function

RE: [flexcoders] F2B2: Namespaces breaking E4X

2006-04-05 Thread Tobias Patton
Try putting this in your function before making any e4x calls default namespace = http://www.example.com/xml/; Tobias. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Wednesday, April 05, 2006 12:06 PM To:

RE: [flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread Gordon Smith
I think you need to do value[i].headerRenderer = new ClassFactory(HeadRendererAddRemove); - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bruno Martins Sent: Wednesday, April 05, 2006 10:53 AM To: flexcoders@yahoogroups.com

[flexcoders] Flex/ActionScript/Java and UML

2006-04-05 Thread Oscar . Cortes
Has anyone have any UML diagrams examples that show the interaction among mxml components, action script classes and Java? --- This e-mail message (including attachments, if any) is intended for the use of the individual or

RE: [flexcoders] F2B2: Namespaces breaking E4X

2006-04-05 Thread Gordon Smith
Well, you'd have to change the E4X expressions to specify the appropriate namespace. In XML you can put various namespaces on various tags, and E4X completely supports this. I don't have any examples at the moment, but I'd expect our docs to cover this somewhere. Maybe someone else can post an

Re: [flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread Bruno Martins
Thanks Gordon and Jeremy... On 4/5/06, Gordon Smith [EMAIL PROTECTED] wrote: I think you need to do value[i].headerRenderer = new ClassFactory(HeadRendererAddRemove); - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bruno MartinsSent:

Re: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Jignesh Dodiya
Have u imported flash.net.Responder orimport mx.rpc.remoting.RemoteObject. Not sure for CF but it generally required when u use remoting with AMF... On 4/6/06, Alexander Tsoukias [EMAIL PROTECTED] wrote: Hi Kelly,As always u got it right.It works fine ;-) but I am getting this error in the

[flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
Yes and I still get it. here is what I have in my code: import mx.managers.PopUpManager; import flash.net.Responder; import mx.rpc.remoting.RemoteObject; import flash.events.Event; import mx.events.ValidationResultEvent; import Members; public

Re: [flexcoders] Alert window customize

2006-04-05 Thread sinatosk
The Alert component isextended fromthe Panel component.Simply use the Panel orTitleWindow component and set borderStyleproperty to solid, backgroundColor to #006699( it's the closest colour I could match it too the Alert component) and backgroundAlpha to 0.75 ( or what ever transpancey you

Re: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Jignesh Dodiya
hi, try this. may be solved, just rewrite the sentence as follow public function handleCheckEmailExists(event:Object):void{ On 4/6/06, Alexander Tsoukias [EMAIL PROTECTED] wrote: Yes and I still get it. here is what I have in my code: import mx.managers.PopUpManager; import

[flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
still the same. can this be a bug maybe?! --- In flexcoders@yahoogroups.com, Jignesh Dodiya [EMAIL PROTECTED] wrote: hi, try this. may be solved, just rewrite the sentence as follow public function handleCheckEmailExists(*event:Object*):void{ On 4/6/06, Alexander Tsoukias [EMAIL

[flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
I think its a bug, because everytime I run the app it adds another line with the same error. So now I have 6 of these errors all pointing to the same problem. !A --- In flexcoders@yahoogroups.com, Alexander Tsoukias [EMAIL PROTECTED] wrote: still the same. can this be a bug maybe?! ---

[flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Doug Lowder
I believe you can use either handleCheckEmailExists(event: mx.rpc.events.ResultEvent):void or handleCheckEmailExists(event: *):void --- In flexcoders@yahoogroups.com, Alexander Tsoukias [EMAIL PROTECTED] wrote: I think its a bug, because everytime I run the app it adds another line

RE: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Dirk Eismann
Make sure to type your the event object. Try this: public function handleCheckEmailExists(event:ResultEvent):void you'll also need to import the class: import mx.rpc.events.ResultEvent Dirk. Von: flexcoders@yahoogroups.com im Auftrag von Alexander Tsoukias

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Bolo Michelin
Hello Tobias,i am not sure to understand all :)You can avoid the "java –jar" stuff if you download the Flex 2 SDK from labs.adobe.com. They provide shell scripts ("mxmlc" and "compc") that wrap all that stuff up very nicely.I must dowload The Flex 2 SDK so I delete my folder with my last

Re: [flexcoders] Flex 2.0 b2: DataGrid ( selectedIndex property )

2006-04-05 Thread sinatosk
thanks for this fix :p... thought it was just me... yes I've bumped into this problem too... I also have problem with multiple selections ( using shift key... the indexes appearing out or range/bounds ) On 4/5/06, tyombria [EMAIL PROTECTED] wrote: Hello.In DataGrid i can't select item by

RE: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Tobias Patton
What do you have on your Mac now? If you copied over the FlexBuilder installation from a Windows machine, you can just take mxmlc and compc from the bin directory of the sdk and copy them into the FlexBuilder bin directory. If you run mxmlc from the bin directory, it will

[flexcoders] Testing if a variable exist?

2006-04-05 Thread alpharythms
I imagine this is something simple that I am missing but is there a way to test a variable to see if it exist. Specifically I have several components with IDs. So I can access them like this.idName or this[idName]. I need to way to know if this[idName] is a valid variable. I've tried

RE: [flexcoders] Special Thanks to Matt Chotin

2006-04-05 Thread Matt Chotin
Flex (and the Flex team) is all about making you look good for your boss J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sent: Wednesday, April 05, 2006 2:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Special Thanks to

  1   2   >