[flexcoders] SOAP WebService faultString problem

2006-03-03 Thread Jan L. Nauta
Hi, [Flex 2.0 Beta 1] I'm not getting the faultString when a fault occurs in my SOAP WebService: fault=Alert.show(event.fault.faultstring, 'SOAP Fault'); shows only 'HTTP Request Error'. I found some info about this with google that states that this doesn't work with most browsers, but it

[flexcoders] Detecting Client Country or Location

2006-03-03 Thread Dan
hi, As Actionscript can detect the OS version of the client machine, is there any way that a flex application can detect the country of the client? Since we want to store the information for analysis. Any people come across this before? Any suggestion? Thx Dan -- Flexcoders Mailing List

[flexcoders] Can we remove RemoteObject instances??

2006-03-03 Thread sn197412
Hi. About RemoteObject instances. Can we remove RemoteObject instances like removeChild method?? If we create 100 RemoteObject instances, we can't remove those instances?? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Detecting Client Country or Location

2006-03-03 Thread Martin Wood
I had a brief look into this kind of thing, heres a couple of links : http://www.geobytes.com/ http://www.hostip.info/ basically you will have to rely on another service to give you the answer. thanks, Martin Dan wrote: hi, As Actionscript can detect the OS version of the client

Re: [flexcoders] Dynamic UI question

2006-03-03 Thread Alberto Albericio Salvador
I think I cant use the Tile* components because they resize their tiles to the same width and height: resizing one tile will resize all the the rest. Since I want a vertical list, can I use the List component to create a list with one checkbox on each item and expandable content for each item

Re: [flexcoders] Dynamic UI question

2006-03-03 Thread Alberto Albericio Salvador
got it! I just used the Repeater component without any Tile* component hehe Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Alberto Albericio Salvador escribió: I think I cant use the Tile* components because they resize their tiles to the same width and height:

RE: [flexcoders] Understanding UIComponent

2006-03-03 Thread Stephen Gilson
There is indeed a book - It is called "Creating and Extending Flex Components" and you can find it at: http://labs.macromedia.com/wiki/index.php/Flex:Release_Notes#Beta_1_documentation This page lists the order of events when you create a component:

Re: [flexcoders] DateField and DateFormatter issue.

2006-03-03 Thread Flex Coders
Hi Shigeru,These issues have all been fixed in our internal builds so keep an eye out for the next public drop to resolve this for you.RaghuOn 3/2/06, sn197412 [EMAIL PROTECTED] wrote:Hi.When I use a DateFormatter with a couple of DateFileds, Something remove formatted date text.And also, when

[flexcoders] DragManager issues when running in swf inside a swf

2006-03-03 Thread Karl Johnson
(Flex 1.5, AS 2) My drag and drop code has worked fine for a long time. Today, I took the swf generated by the flex compiler and am loading it inside of a loader control in another flex app. Everything about the inner app works fineexcept for the call to DragManager.doDrag(), which

[flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde
Hi, Using the AS3-Date-Class the first time I recognized that the month is starting at 0 means 0 is January. Is this the expected behaviour? Example: var d:Date = new Date(2006,03,22); trace(date + d); // date Sat Apr 22 00:00:00 GMT+0200 2006 And another date I tried has a different GMT: var

[flexcoders] Getelementbyid and web service result problem

2006-03-03 Thread sinacapho
Dear all, i am very new to Flex and actionscript. I want to know if actionscript have some function by javascript getelementbyid which can locate the object. Also another question is that i want to retrieve one of the record from a set of web service result. it that i need to parse it

Re: [flexcoders] Detecting Client Country or Location

2006-03-03 Thread Michael Klishin
Dan wrote: hi, As Actionscript can detect the OS version of the client machine, is there any way that a flex application can detect the country of the client? Since we want to store the information for analysis. Any people come across this before? Any suggestion? Use server-side

[flexcoders] Catching ChangeEvent 1.5

2006-03-03 Thread Steve Cox
All, Im passing through several arrays to a custom component. Ideally what Id like to do is call a function inside the component when one of these arrays changes. How do I capture the change event ? Cheers, Ste -- Flexcoders Mailing List FAQ:

[flexcoders] Re: JSON support?

2006-03-03 Thread harald_dehn
Hi, look at http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:ap is:libraries#corelib there is a JSON de- and encoder. I didn't test it. Harry --- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: dhirshbe wrote: Is there a convenient way to

[flexcoders] CrossDomain file

2006-03-03 Thread mvbaffa
Hi All, I am using Flex 2 Beta 1. I need to host my swf files in a domain different from the one that reside my webservices. In fact the webservice is installed in my office webserver and I have created at DynDNS to point to my server. I have uploaded the swf compiled by Flex 2 and at the

[flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread harald_dehn
Hello, does anyone know how to write a custom cellrenderer for a datagrid in AS3. All examples i have found using MXML or were written for flash8 (using setValue function). Unfortunealy this approach doesn't work in AS3... Harry -- Flexcoders Mailing List FAQ:

RE: [flexcoders] mx.control.alert

2006-03-03 Thread Deepak Verma
Yes, adding \n \r increases the box size but scrollbar is still there . Any ideas to remove scroll bar From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Friday, March 03, 2006 12:09 AM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] datagrid filter

2006-03-03 Thread deepu_verma
How can I filter data from a datagrid? Is there a function to filter data for the data provider? (I was able to find a Dataset component for Flash which has the capability to filter the data.) -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Character input in a form : strange issue?

2006-03-03 Thread Flex Coders
Hi,I will try to investigate this issue on Flex1.5, but this does not reproduce on Flex2.0:)ThanksRaghuOn 3/2/06, Barrau Antoine [EMAIL PROTECTED] wrote:Hi,i'm currently experiencing a strange issue with flex 1.5i've made the following simple test :mx:Accordionmx:Formmx:FormItemmx:TextInput

Re: [flexcoders] Re: JSON support?

2006-03-03 Thread Darron J. Schall
Hi Harry, Yeah, that's what I was talking about. I wrote that... ;-) -d harald_dehn wrote: Hi, look at http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:ap is:libraries#corelib there is a JSON de- and encoder. I didn't test it. Harry --- In

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Johannes Nel
this is expected behaviour i thinkOn 3/3/06, Sönke Rohde [EMAIL PROTECTED] wrote: Hi,Using the AS3-Date-Class the first time I recognized that the month isstarting at 0 means 0 is January. Is this the expected behaviour?Example:var d:Date = new Date(2006,03,22); trace(date + d); // date Sat

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde
but why is month startingat 0 and day at 1? seems very strange to me. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Johannes NelSent: Friday, March 03, 2006 3:04 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] AS3 Date month starting

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Peter Hall
It's the way it works in AS2, and the way it works in _javascript_. I don't know why it is designed like that, but it is correct. Peter On 3/3/06, Sönke Rohde [EMAIL PROTECTED] wrote: but why is month startingat 0 and day at 1? seems very strange to me. -- Flexcoders Mailing

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Paul Hastings
Peter Hall wrote: It's the way it works in AS2, and the way it works in JavaScript. I don't know why it is designed like that, but it is correct. because java does it that way? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Geoffrey Williams
day and month are constant pointers where as year and date are variable values? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sönke Rohde Sent: Friday, March 03, 2006 9:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] AS3 Date

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Darron J. Schall
Sönke Rohde wrote: Hi, Using the AS3-Date-Class the first time I recognized that the month is starting at 0 means 0 is January. Is this the expected behaviour? Yeah - it's supposed to be like this (and has been like this for a long time). Not a bug, sorry, you'll just have to account for the

Re: [flexcoders] datagrid filter

2006-03-03 Thread jeremy lu
if you are using flex 2, ArrayCollection has a filter property which is handyOn 3/3/06, deepu_verma [EMAIL PROTECTED] wrote:How can I filter data from a datagrid?Is there a function to filter data for the data provider? (I was able to find a Dataset component for Flash which has thecapability

Re: [flexcoders] Understanding UIComponent

2006-03-03 Thread jeremy lu
that chapter is particularly well written, should read it over and over again.On 3/3/06, Stephen Gilson [EMAIL PROTECTED] wrote: There is indeed a book - It is called Creating and Extending Flex Components and you can find it at:

Re: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread jeremy lu
what you want to do with it ?On 3/3/06, harald_dehn [EMAIL PROTECTED] wrote: Hello,does anyone know how to write a custom cellrenderer for a datagrid inAS3. All examples i have found using MXML or were written for flash8(using setValue function). Unfortunealy this approach doesn't work in

Re: [flexcoders] Reading or Embedding SWFs?

2006-03-03 Thread jeremy lu
hi Roger, still eagerly waiting for your tutorial on dynamic class loading and instantiation (application domain and etc) :-)jeremy.On 3/3/06, Roger Gonzalez [EMAIL PROTECTED] wrote: If it doesn't import your frame labels, that's a bug. I don't know of any reason why those would

AW: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread Harald Dehn
Hi here ist the sourcecode I am experimenting with Unfortunealy the setValue function (I found a lot of examples for flash 8) doesnt work with AS3. Do have any idea? Regards, Harry package CellRenderer {   import mx.controls.Image;   import mx.controls.Label;  

RE: [flexcoders] SOAP WebService faultString problem

2006-03-03 Thread Carson Hager
Flex 1.5? If so, there is a limitation in the flash player itself that causes the web services to choke if a fault is raised due to the required http 500 status code. If you use the proxy, it will change the status code to 200 so that the flash player can read the fault. This is evidently fixed

RE: [flexcoders] CrossDomain file

2006-03-03 Thread Carson Hager
Where do you have crossdomain.xml? What are its contents? Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY Mobile: 1.703.489.6466 -Original Message- From:

Re: [flexcoders] Reading or Embedding SWFs?

2006-03-03 Thread JesterXL
Because it works consistently with the embedding of the path. Once Flex Builder fails to transcode, it refuses to budge on "re-checking" the embed path. I'll try to send you a re-producible test case by Monday. - Original Message - From: Roger Gonzalez To:

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread JesterXL
Here's the example (CAREFUL!!! TONS OF RAM USAGE!) http://dev.jessewarden.com/captivate/flexonthedesktop/ Here's the background: http://www.jessewarden.com/archives/2005/09/flex_on_the_des.html API for Central ( I have like 5 posters with this, it rocked!)

RE: [flexcoders] Reading or Embedding SWFs?

2006-03-03 Thread Roger Gonzalez
Oh, its a Flex Builder problem. Sheesh, why didn't you say so? That's what you get for being coddled! What, you have someone snuggle you up in a binky and give you some warm milk while you're coding, too? Be a hairy-chested manly programmer and suffer the raw rage of pure unfiltered

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Sönke Rohde
Hi, Using the AS3-Date-Class the first time I recognized that the month is starting at 0 means 0 is January. Is this the expected behaviour? Yeah - it's supposed to be like this (and has been like this for a long time). Not a bug, sorry, you'll just have to account for the

RE: [flexcoders] SOAP WebService faultString problem

2006-03-03 Thread Peter Farland
Are you using the proxy? I think we changed for Beta 2 to return the entire status line from the HTTP error (as it's likely you're running into a 404)... But please submit a test case (or at the very least email me your file) if you want us to check your particular situation. Thanks, Pete

RE: [flexcoders] Can we remove RemoteObject instances??

2006-03-03 Thread Peter Farland
Have you tried calling delete myRo; in a script block of the Application (or component) that declares the RemoteObject? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sn197412 Sent: Friday, March 03, 2006 6:54 AM To: flexcoders@yahoogroups.com

[flexcoders] SOLVED - Re: X-Y Coordinate translation

2006-03-03 Thread thunderstumpgesatwork
OK, so I answered this one myself =) DisplayObject has a function called localToGlobal() that takes a local point, and returns one relative to the stage (global). It also has a 'partner' function called globalToLocal() which does the opposite. So to get a point relative to an ancestor container,

[flexcoders] Clearing Results

2006-03-03 Thread Jeremy Rottman
In my app, I have a section called add sale. When this state is called I use initialize to call a fucntion. This function queries my db and I use another fucntion that populates a text input when the results are returned. With the code below, how can I clear the results of the state. I have

Re: [flexcoders] Reading or Embedding SWFs?

2006-03-03 Thread JesterXL
I use ANT to make mxmlc my automated-bitch with 1 click. The mouse won't hurt you Roger... it's actually pretty pimp if you get a glowing one. - Original Message - From: Roger Gonzalez To: flexcoders@yahoogroups.com Sent: Friday, March 03, 2006 11:03 AM Subject: RE:

[flexcoders] Re: Can we remove RemoteObject instances??

2006-03-03 Thread sn197412
Hi, thank you for replay. But delete myRo; didn't work... myRo still exists in this. (I checked this by a debug mode.) --Shigeru --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: Have you tried calling delete myRo; in a script block of the Application (or component)

[flexcoders] Re: a GridTree component for flex 2

2006-03-03 Thread thunderstumpgesatwork
Looks good! I've been thinking I'm going to need something like this too. Any plans to release this as a component at least? If so when? Thanks, Thunder --- In flexcoders@yahoogroups.com, dc [EMAIL PROTECTED] wrote: hi list, just made a GridTree component for next project, please take a

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Clint Modien
wow dood... you weren't kidding about the ram usuage... I saw 450MB used in firefox... good thing i got mad ram...so all you did was run the generated swf through mProjector to make an exe? What were the 2 lines of AS to make it work with the executable? anyplace else I can find some info on

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread JesterXL
Yep. Actually more than 2: // if running in mProjectorif(_global.mSystem != null){var o = _global.mSystem.getDesktopWorkArea();var tW:Number = o.right - o.left;var tH:Number = o.bottom - o.top;_global.mWindow.setPosition(0, 0);_global.mWindow.setSize(tW,

RE: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread Stephen Gilson
If you have the Flex 2.0 Beta, the architecture has changed completely from AS2. You can read about them in the "Developing Flex Applications" book, available here: http://labs.macromedia.com/wiki/index.php/Flex:Release_Notes#Beta_1_documentation The chapters you want are "Using Cell

[flexcoders] IE Update disables Flash

2006-03-03 Thread Clint Modien
Anyone else seen this?http://weblogs.asp.net/jgalloway/archive/2006/03/03/439483.aspxShould I start using FlashObject? -- 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] IE Update disables Flash

2006-03-03 Thread Dave Carabetta
On 3/3/06, Clint Modien [EMAIL PROTECTED] wrote: Anyone else seen this?http://weblogs.asp.net/jgalloway/archive/2006/03/03/439483.aspx Should I start using FlashObject?Clint,Did you see/apply this hot fix released yesterday?http://www.macromedia.com/go/ace0407 Regards,Dave. --

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Clint Modien
Umm is it stable? Have you deployed an app like this? Ran into any weird problems? Is this even legal from a licensing standpoint? Is the swf loaded @ runtime meaning... can I load in a new swf from a web server... (I guess I could write a loader that does nothing but load the main app)? I

Re: [flexcoders] Catching ChangeEvent 1.5

2006-03-03 Thread Abdul Qabiz
Hi,If array's reference changes, you can watch that. But if individual elements are changing you can watch those.What I suggest that instead of uusing raw Arrays, you can wrap these arrays in some class and add/remove elements using the methods of the classs... Check out the flexcoder's FAQ and

[flexcoders] More FB2 strangeness

2006-03-03 Thread Tom Ortega
I'm not sure if this is an eclipse bug or a FB2 bug. When you maximize the code window, it hides the Navigator, Outline and Problems panes. I have multiple mxml files open. When I click on a different file tab, the Navigator, Outline and Problems come back, then I have to click the Maximize

Re: [flexcoders] IE Update disables Flash

2006-03-03 Thread Clint Modien
Awesome... thanks Dave and Adobe.On 3/3/06, Dave Carabetta [EMAIL PROTECTED] wrote: On 3/3/06, Clint Modien [EMAIL PROTECTED] wrote: Anyone else seen this?http://weblogs.asp.net/jgalloway/archive/2006/03/03/439483.aspx Should I start using FlashObject?Clint,Did you see/apply this hot fix

Re: [flexcoders] Flex and URL variables

2006-03-03 Thread Abdul Qabiz
Hi Jesse,I think, even in Flex 1.5 it was quite straight forward. You just need to declare public vars in MXML and then you can pass those vars through query string. F.ex.:##querystring.mxmlmx:Application xmlns:mx= http://www.macromedia.com/2003/mxml mx:Scriptimport mx.controls.Alert;public var

[flexcoders] IOException of ColdFusion + FileReference Class

2006-03-03 Thread sn197412
Hi. When a file upload to ColdFusion via FleReference Class, ColdFusion has IOException Error like below. (I just tried a sample at flashplatform's SVN in Macromedia Labs.) Is this FlashPler8.5's bug?? (My current FlashPlayer's version is 8,5,0,212.) 03/04 02:34:18 error Corrupt form data:

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Gordon Smith
January being month 0 in the Date class is required by the ECMA-262 standard that we're following, since we want AS3 to be compatible with Ecmascript. Dunno what's going on with the GMT. That looks weird. BTW, you should be passing numbers, not strings, to the Date constructor. - Gordon

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Scott Langeberg
Actually, I think Konfabulator only supported XML and _javascript_. No HTML and no Flash, as far as I know. All your layout tags were in the xml doc.ScottOn 3/2/06, JesterXL [EMAIL PROTECTED] wrote: How do they differ from Kapsules? http://www.kwidgets.com/ Basically, Kapsules used: -

RE: [flexcoders] Button height and width in CSS?

2006-03-03 Thread Gordon Smith
By design; x, y, width, and height are regular properties, not styles. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pablo Apanasionek Sent: Friday, March 03, 2006 5:39 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Understanding UIComponent

2006-03-03 Thread Gordon Smith
Please be aware that some of it is changing for Beta 2. For example, the 'initialize' event is going to be dispatched AFTER the children have been created. A new 'preinitialize' event will be dispatched before. Also, 'initialize' and 'creationComplete' are going to be deferred for panes

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Rich Tretola
Hey Jesse Why does this use so much RAM ? RichOn 3/3/06, JesterXL [EMAIL PROTECTED] wrote: Here's the example (CAREFUL!!! TONS OF RAM USAGE!) http://dev.jessewarden.com/captivate/flexonthedesktop/ Here's the background:

Re: [flexcoders] xml files embedded in swf?

2006-03-03 Thread Abdul Qabiz
Yeah, it should not be copied when you are embedding it. But FB might be assuming things, it might be copying every linked document(structure) to bin...I think, you can file a bug, if it is not already known. -abdulOn 2/28/06, Jan L. Nauta [EMAIL PROTECTED] wrote: Hi Abdul,Ok, so this is

RE: [flexcoders] Button height and width in CSS?

2006-03-03 Thread Gordon Smith
Are you aware that if you want a bunch of 100 x 30 buttons, you don't have to specify width=100 height=30 on every one of them? Just make a 2-line custom component that defines default values for these properties and then use it instead: MyButton.mxml: ?xml version=1.0

Re: [flexcoders] Security sandbox violation

2006-03-03 Thread Abdul Qabiz
Hi,How are you making AMFPHP connection? Are you using carlaabreu.com/../gateway.php or www.carlaabreu.com/../gateway.php ?I think, if you are trying to access data from a sub domain to main domain, it might be problem...Not sure, check the security whitepaper for the Maths behind it...-abdul

[flexcoders] Re: Understanding UIComponent

2006-03-03 Thread Dmitry Miller
Bill, hi You have mentioned a diagram for AS2. Do you happen to have a link to this diagram? Thanks, --- Dmitry -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Re: AS3 Date month starting at 0?

2006-03-03 Thread Doug Lowder
I believe the timezone change (GMT+0200 in one date, GMT+0100 in the other) is because the two dates cross a DST boundary. Your system is probably set set to a zone that supports daylight savings time. Doug --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: January

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread JesterXL
Because when I recorded it, I had Captivate do real-time recording. It uses hardware accerlation to ensure that every frame is recorded at 30 frames per second. Thus, that's about a 3 meg PNG per frame, 30 frames a second, for a 1 minute demo. Thus, that's 10 billion gallons of RAM. The

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread JesterXL
Stable? Yes. Deployed? No. Weird problems? No. Legal? Depends. Yeah, if you made a Flash SWF, you could then load like Central did: loadMovie("http://server.com/your.mxml.swf"); - Original Message - From: Clint Modien To: flexcoders@yahoogroups.com Sent: Friday, March 03,

RE: [flexcoders] Button height and width in CSS?

2006-03-03 Thread Pablo Apanasionek
Gordon, that was exactly my decision after your reply. Thanks! ---Pablo Gustavo Apanasionek De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Gordon SmithEnviado el: Viernes, 03 de Marzo de 2006 15:10Para: flexcoders@yahoogroups.comAsunto: RE: [flexcoders] Button

[flexcoders] Need to deploy Flex 2.0 with Flash Player 8.0

2006-03-03 Thread Stephane B.
Hello everyone, Im building my Flex 2.0 online portfolio which is, by itself, more design than logic oriented with the exception of some Flex 2.0 samples from Explorer. Since downloading Flash Player 8.5 requires registration under Macromedia Labs, I would like to deploy this

[flexcoders] 1.5 datagrid - toggle cell editable property

2006-03-03 Thread Griffin, Michael \(FEB\)
Title: Message Working with the 1.5 grid and I have a columnthat hasa button in each row that has to make just the cells in that row editable when clicked. As a starting point I assume I have to have the grids editable property set to true, and the rows editable properties set to false

Re: [flexcoders] Getelementbyid and web service result problem

2006-03-03 Thread Manish Jethani
On 3/3/06, sinacapho [EMAIL PROTECTED] wrote: i am very new to Flex and actionscript. I want to know if actionscript have some function by javascript getelementbyid which can locate the object. Just refer to the element by its ID! Application Button id=button1 label=Click to Grow

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Clint Modien
Thanks for the tips jess.. I'll let you know how it goes.On 3/3/06, JesterXL [EMAIL PROTECTED] wrote: Stable? Yes. Deployed? No. Weird problems? No. Legal? Depends. Yeah, if you made a Flash SWF, you could then load like Central did: loadMovie(http://server.com/your.mxml.swf);

Re: [flexcoders] Flex and URL variables

2006-03-03 Thread JesterXL
Aye, but that's one way. You need to use Kevin's code for the reasons you stated; deep linking. - Original Message - From: Abdul Qabiz To: flexcoders@yahoogroups.com Sent: Friday, March 03, 2006 12:50 PM Subject: Re: [flexcoders] Flex and URL variables Hi Jesse,I think, even in

RE: [flexcoders] Need to deploy Flex 2.0 with Flash Player 8.0

2006-03-03 Thread João Fernandes
Stephane, You cannot play Flex 2 swf inside flash player 8. If you need really flex, try then Flex 1.5. Regards, João Fernandes Sistemas de Informação Programador Informático Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax

Re: [flexcoders] datagrid filter

2006-03-03 Thread Manish Jethani
On 3/3/06, deepu_verma [EMAIL PROTECTED] wrote: How can I filter data from a datagrid? Is there a function to filter data for the data provider? Flex 2.0? http://mannu.livejournal.com/324821.html For Flex 1.5, I had written a FilteredDataProvider class that I've lost the source to. Maybe

Re: [flexcoders] Button height and width in CSS?

2006-03-03 Thread Manish Jethani
On 3/3/06, Gordon Smith [EMAIL PROTECTED] wrote: By design; x, y, width, and height are regular properties, not styles. But you can make them work like CSS! http://mannu.livejournal.com/299285.html Manish -- Flexcoders Mailing List FAQ:

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Peter Hall
Gordon, >From what I can tell, Date is perfectly happy to take a string in its constructor. This is new in AS3... Peter On 3/3/06, Gordon Smith [EMAIL PROTECTED] wrote: January being month 0 in the Date class is required by the ECMA-262 standard that we're following, since we want AS3 to be

[flexcoders] Re: SOAP WebService faultString problem

2006-03-03 Thread Dave Wolf
I know in Flex 1.5 the issue (if you are not using the proxy) is that the SOAP spec tells the server to return an HTTP status of 500 for a SOAP fault. The issue is the player (XML Class?) doesnt fully parse the message when it receives the 500. If you use the proxy, this 500 is remapped to a 200

[flexcoders] Re: Authentication with Macromedia Flex

2006-03-03 Thread Dave Wolf
Yup exactly. There are two flavors of challenge. The ulgy gray browser box is called BASIC. You can also use FORM and use anything you want. Either HTML or as Carson said, a flex form that posts to j_security_check. There are some minor differences between them both, but theyre effectively

Re: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread jeremy lu
as Stephen said, setValue is not needed anymore, the whole structure changed, Using Cell Renderers and Cell Editors is a must read.On 3/4/06, Stephen Gilson [EMAIL PROTECTED] wrote: If you have the Flex 2.0 Beta, the architecture has changed completely from AS2. You can read about

Re: [flexcoders] Re: a GridTree component for flex 2

2006-03-03 Thread jeremy lu
the component will be released in swc format afer I finished the project and got time to refurbish the code, about a month later, will post again then. jeremy.On 3/4/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Looks good! I've been thinking I'm going to need something like this too.Any

Re: [flexcoders] IE Update disables Flash

2006-03-03 Thread John Dowdell
For what it's worth, I figure we're in for a few weeks of less-than-fully-accurate reporting out there, as new people learn of the browser change. If you could spread the word of the Adobe Active Content Developer Center, which links to the Flex technote and other resources, then that would

RE: [flexcoders] DragManager issues when running in swf inside a swf

2006-03-03 Thread Matt Chotin
This is a known issue because the drag and drop stuff is static and therefore doesnt often play nice across loaded swfs. In the Flex app that does the loading try putting a specific reference to the DragManager to make sure it gets loaded correctly. So for example, in your initialize

RE: [flexcoders] Getelementbyid and web service result problem

2006-03-03 Thread Matt Chotin
If the WebService has an id you should be able to reach it just by id. If you're in the same file it's basically already sitting there, just refer to it as if the id was a declared variable name. If it's in another MXML file though you'll need to get to that MXML file (by the ids of the

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Gordon Smith
Sure, it's perfectly happy to coerce a string like 2006 to the number 2006. But if you pass 2006 it wouldn't have to coerce anything. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Hall Sent: Friday, March 03, 2006 1:01 PM

[flexcoders] Flex 2.0 Dashboard Project

2006-03-03 Thread sergiosergiomon
Hello everyone! I had already posted here asking for a tutorial on how to build a dashboard like the sample on the Adobe/Macromedia Flex page. Being advised to look at the sample alreade in the Welcome page of Flex 2.0, I decided to go ahead, but being novice to Flex I really need a STEP BY STEP

[flexcoders] eval gone in AS3, how to get reference to movieclip via target name?

2006-03-03 Thread Boon Chew
Hi all,With the _eval being gone in AS3, does anyone know how to get to the reference of a movieclip (via the target name string) without using _eval (e.g. "_level0.mc1.mc2.mc3") ? I know we can instantiate an object from a class name string via the _global namespace but not positive about

RE: [flexcoders] DragManager issues when running in swf inside a swf

2006-03-03 Thread Karl Johnson
Thanks much for the reply Matt. This was supposed to be put in the application initialize event of the parent flex app (the one that has the loader control)? I tried in both and didn't have any luck. A colleague had suggested setting _lockroot="true" on the loader object but that didn't

Re: [flexcoders] Re: RIA Certified Developer/Architect

2006-03-03 Thread nirav
Hi, Slightly off-topic, but here goes: On the topic of certification, how about creating a community driven Flex certification? We have a project - www.opencerti.com - where we have started out with PHP certification. I was talking to my team and they were excited to contribute to a

RE: [flexcoders] Does AS have an equivalant of Java's 'Abstract'

2006-03-03 Thread Richard Leggett
Yeah I don't think interfaces fit the bill here, but I've found that as long as you throw an error (especially in AS3) it works pretty well as a rough approximation of what abstract might do. :) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sauro, NickSent: 22

[flexcoders] Hello All

2006-03-03 Thread Adrian Lynch
Just a quick test email to see if it's working from my mail client. I've had trouble with Yahoo in the past. Adrian Lynch http://www.halestorm.co.uk/ Spring clean out: http://www.adrianlynch.co.uk/selling/ -- Flexcoders Mailing List FAQ:

RE: [flexcoders] eval gone in AS3, how to get reference to movieclip via target name?

2006-03-03 Thread Gordon Smith
Whoa not only is there no eval(), there's no _target, no _level0, and no _global! Plus, you should almost always use Sprite instead of MovieClip. So what are you really trying to do? Are you using Flex or just pure AS3? Where are you getting a string like sprite1.sprite2.sprite3

RE: [flexcoders] Flex 2.0 Dashboard Project

2006-03-03 Thread Rob Rusher
Sergio, I did a presentation at MAX last year on building a dashboard. The preso is based on Flex 1.5 but it can at least get you started. http://www.robrusher.com/1/2006/03/Flex-15-Dashboard-Tutorial.cfm Rob Rusher RIA Consultant Macromedia Certified Flex Instructor e:[EMAIL PROTECTED]

[flexcoders] How to add Icon to MenuItem?

2006-03-03 Thread flexhtoo
I want to konw how to add icon to menuitem, and then How to customize the MenuCellRenderer? There are right way or not? MainMenu menuitem label=slick menuitem label=MenuItem A menuitem label=SubMenuItem 1-A / menuitem label=SubMenuItem 2-A /