RE: [flexcoders] Flex2 - Beta2 Integer to Character Conversion

2006-04-05 Thread Gordon Smith
There are no characters in AS3; there are only Strings, which can have length 1. You can create Strings of any length out of character code integers using the static method fromCharCode() of the String class: String.fromCharCode(65, 66, 67) -> "ABC" - Gordon -Original Message- From:

[flexcoders] FB2: DrawingPad

2006-04-05 Thread JesterXL
Someone mentioned they wanted to draw in Flex 2. Roger mentioned that it'd be valuable if someone wrote a component to do that. This isn't really done, but should help those who want to learn how to do such things via a smaller scoped project. ...or, you can just straight gank the code straig

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread Simeon Bateman
I am pretty late on these conversations, but I use MyEclipseIDE in eclipse as an xml editor and I use Ant to compile my scripts.  I have written alot about about getting flex and mystic running on my mac on my blog.  My post about Ant compiling flex can be seen here http://www.simb.net/blog/inde

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread jeremy lu
Seriously Off Topic:apple just annouced "Boot Camp" which let you dual boot into windows on your mac, so -- 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] Flex 2: Multi-document interface

2006-04-05 Thread jeremy lu
you don't have to start from scratch, everything needed is in the framework, just use buttonbar and panel, should be done in 20 minutes.jeremy.On 4/6/06, dos dedos <[EMAIL PROTECTED]> wrote: Thanks Jesse!  that helps! :)JesterXL < [EMAIL PROTECTED]> wrote: -- Flexcoders Mailing List FA

[flexcoders] Flex2-Beta2 Two Dimensional Binary Arrays

2006-04-05 Thread quasimotoca
Hi: I'm doing a small conversion from Java and I'm trying to convert Java two dimensional arrays to AS3. Basically any type: int[][], String[] [], byte[][] etc... How do I implement 2D arrays in AS3? Cheers, Dave Cook -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

[flexcoders] Flex2 - Beta2 Integer to Character Conversion

2006-04-05 Thread quasimotoca
Hi: I need to do an integer to character conversion. I remember using the simple char() command to convert an interger to it's character representation. It's now deprecated so how do I do it now? Cheers, Dave Cook -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/

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

2006-04-05 Thread Dimitrios Gianninas
We've experienced the same error as well about a year ago with an we build in Flex 1.5 using flash Player 8.0.22. Currently I believe version 8.0.24 is available for download, not sure if this fixes the problem. Another issue we discovered is that version 8.0.22 doesn't allow file upload over H

[flexcoders] F2B2 : Eclipse : Changing the "Documents" location

2006-04-05 Thread grae_hall
I've got My Documents on the root of my C (far more convenient) - windows and all my applications see the My Documents directory as being mapped to mapped to the root of C - but I'm probably not the only person who's had difficulty nailing down exactly how to get Eclipse to point there by defau

[flexcoders] Openning documents in external apps?

2006-04-05 Thread pcolby_flex
Hi Guys, I have a Flex2 app that needs to be able to open some server attachments in the apropriate application. For example, the app may need to show a Word or Excel document. It seems to me that there are three ways to do it: 1. Use navigateToURL() to send the web browser to the document, an

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

2006-04-05 Thread Clint Willard
You are correct. Flex 2.0 obviously does not let you use a class in the source parameter of script. I used include instead and it worked. Thanks. --- In flexcoders@yahoogroups.com, "Clint Willard" <[EMAIL PROTECTED]> wrote: > > > What is this error message mean exactly: > > Classes must not be

Re: [flexcoders] Flex 2: Multi-document interface

2006-04-05 Thread dos dedos
Thanks Jesse!  that helps! :)JesterXL <[EMAIL PROTECTED]> wrote: Not hard, I'd say about 6 hours to get a prototype working.  PopUpManager + TitleWindow 4 teh w1n!   *** Warning: High Ram Usage, save yer work *** http://dev.jessewarden.com/captivate/flexonthedesktop/     - Original

RE: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Gordon Smith
By the way, the Flex team considers Dirk's way to be best practice in two regards:   1. Always use the "narrowest" type that will work. If the event is a ResultEvent, don't type it as Event, Object, or *.   2. Don't use fully-qualified class names like mx.rpc.events.ResultEvent (excep

RE: [flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Tracy Spratt
Hey, Nathan. I am very interested in what you are doing with the HTTP handlers. I am using straight asp.net simply as a source for 1.5 HTTPService, and it works fine, but am exploring alternatives. Can you elaborate a bit on what your are doing? Tracy -Original Message- From: flexcoders

Re: [flexcoders] Flash remoting Gateway url

2006-04-05 Thread Jignesh Dodiya
hi, we have faced a same problem once not with flex but with other reason, server didn't responding with xxx.yyy.zzz.aaa format, then we have fixed it by setting some server side domain assignment, may be DNS assignment with names.I am neither sure it may help u or nor this is right plac

Re: [flexcoders] Flex 2: Multi-document interface

2006-04-05 Thread JesterXL
Not hard, I'd say about 6 hours to get a prototype working.  PopUpManager + TitleWindow 4 teh w1n!   *** Warning: High Ram Usage, save yer work *** http://dev.jessewarden.com/captivate/flexonthedesktop/     - Original Message - From: dos dedos To: flexcoders Sent: Wednesday, Apri

[flexcoders] Flex 2: Multi-document interface

2006-04-05 Thread dos dedos
Anyone knows of a Flex 2 implementation of the Windows multi-document interface?For example, you could launch SWFs in separate panels within the same browser window so that you can move, resize and close each panel separately.  If one was to do implement this from scratch, how much work would be

[flexcoders] Flash remoting Gateway url

2006-04-05 Thread Larry Liang
Hi, Whenever you use flash remoting, you need to specify a URL for the remoting gateway. Usually it's something like "http://www.mydomain.com/flashservices/ gateway/" However if I specify my gateway as followings, it does not work. Flash reported that the gateway can not be found. "http://2

Re: [flexcoders] Re: DOT NET 2.0

2006-04-05 Thread Robert Thompson
Nathan, What do you mean by REST backend developed using HttpHandlers? Do you simply mean to use HttpService, and when the load is done parse it like one does in Flash 8.0 Pro right now? Do you have an example. I'm also considering just returning XML documents irregardless of the method; but

[flexcoders] Re: RemoteObject (Beta2)

2006-04-05 Thread Ryan Pieszak
Thanks Matt, that had what I needed. I'm still having one issue.  I'm getting the error: Couldn't establish a connection to 'cfc.mySelect'.  Not sure why.  I'm trying to referene the cfc the same way I would in CF.  Here is the RemoteObject call I'm using...      {acct.selectedItem.data}

Re: [flexcoders] Special Thanks to Matt Chotin

2006-04-05 Thread Judah Frangipane
Jonathan Miranda wrote: > > So, funny little story….my boss is attempting to understand some Flex > and started running through the tutorials here: > http://download.macromedia.com/pub/documentation/en/flex/2/Flex2_beta2_Hands-onTutorials.pdf > > - which I recommend to everyone, it’s a great li

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

2006-04-05 Thread Jennifer Larkin
I have no objection to remote members; the local CFUG has them. But we do need to have a physical presence somewhere in order to have the facilities to support remote members. For those who aren't familiar with the User Group program, a Flex User Group would have monthly meetings-- typically le

RE: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
This worked too Dirk, thanks for your support, much appreciated!! Dirk Eismann <[EMAIL PROTECTED]> wrote: Make sure to type your the event object. Try this:public function handleCheckEmailExists(event:ResultEvent):voidyou'll also need to import the class: import mx.rpc.events.ResultEventDirk.__

Re: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Alexander Tsoukias
This worked. Thanks Doug for your support. ;-)Doug Lowder <[EMAIL PROTECTED]> wrote: I believe you can use either  handleCheckEmailExists(event: mx.rpc.events.ResultEvent):voidor  handleCheckEmailExists(event: *):void--- In flexcoders@yahoogroups.com, "Alexander Tsoukias" <[EMAIL PROTECTED]> wr

[flexcoders] Re: Special Thanks to Matt Chotin

2006-04-05 Thread Alexander Tsoukias
>From me as well, special thanks to Matt Chotin - you make it all worth it! --- In flexcoders@yahoogroups.com, "Clint Modien" <[EMAIL PROTECTED]> wrote: > > Gota second this... You really do make a big difference here. > > Thanks Matt > > On 4/5/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote

RE: [flexcoders] Testing if a variable exist?

2006-04-05 Thread Gordon Smith
if ("idName" in this) - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alpharythms Sent: Wednesday, April 05, 2006 3:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Testing if a variable exist? I imagine this is something simp

Re: [flexcoders] Special Thanks to Matt Chotin

2006-04-05 Thread Clint Modien
Gota second this... You really do make a big difference here.Thanks MattOn 4/5/06, Jonathan Miranda < [EMAIL PROTECTED]> wrote: Seriously though, thanks for the help – you probably post the most here and just a hearty thanks was deserved J __

RE: [flexcoders] Special Thanks to Matt Chotin

2006-04-05 Thread Jonathan Miranda
Seriously though, thanks for the help – you probably post the most here and just a hearty thanks was deserved J _ Jonathan Miranda Stealth Project Manager "Sorry, it's a 'Need to Know' basis only." HealthGrades: Guiding America to Better Heal

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 Ma

[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 if(thi

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 automatical

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 se

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 versio

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 G

[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 >

[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 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 <[E

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 f

Re: [flexcoders] Alert window customize

2006-04-05 Thread sinatosk
The "Alert" component is extended from the "Panel" component. Simply use the "Panel" or "TitleWindow" component and set " borderStyle" property to "solid", "backgroundColor" to "#006699" ( it's the closest colour I could match it too the "Alert" component ) and "backgroundAlpha" to " 0.75" ( or

[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 fun

Re: [flexcoders] Re: GENERAL actionscript question

2006-04-05 Thread Jignesh Dodiya
Have u imported flash.net.Responder or  import 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

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] 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 exa

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

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: flexcoders@yah

[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 handleCheckEmailExists(ev

[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 va

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] 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 http://www.example.com/xml/";>, none of the e4x expressions will work anymore.

[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

[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] 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 pa

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

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. The

[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] 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; i   value[i].headerRenderer = HeadRendererAddRemove as IFactory;   }} -- Flexcode

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.     C

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!  Can’t 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

[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 { var

[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] 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 o

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 columns(val

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 mentio

[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 th

[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; i   value[i].headerRenderer = HeadRendererAddRemove;   }} Error #1034: Type Coercion failed: cannot convert HeadRendererAddRemove$ to mx.core.IFactory tks... -- Flexcoders Mailing

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: fle

[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

[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 mx.core::Container/mx.core:Container::createChildren

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}); } publi

[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

[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 t

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 h

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 fi

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: [flexcode

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

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 –f

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 Sho

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

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

[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] 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] [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() {  

[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 for

[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: http://groups.yahoo.com/g

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 cc Subject RE: [flexcoders] Re: Find Function

[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: ht

[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: http://groups.ya

[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 p

[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 Li

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: 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: http://www.macromedia.com/2003/mxml"; xmlns:view="com.sonopia.sonoportal.controls.siteBuilder.portletEditor.*" panelBorderStyle="roundCorners"> It works correctly when placed as a r

[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 fo

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 s

[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: http://groups.yahoo.com/group/flexcoders/file

[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

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: http://livedocs.macromedia.com/lab

[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

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: 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 > parame

[flexcoders] Vertical tabs

2006-04-05 Thread leo4beer
Hi all, This is my first post to this list  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: http://www.mail-archive.

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;            }   el

  1   2   >