RE: [flexcoders] Question about error message

2005-05-17 Thread Abdul Qabiz
Hi, you get this error message when you have more than 32KB code in a block. For example: if(..) { //more than 32 kb code } function foo() { //32 KB code } similarly in other types of blocks.. Try to refactor your code... Search the archives of this list for related

RE: [flexcoders] BiDi/right-to-left support in Flex

2005-05-17 Thread Gordon Smith
A TextField, which is the underlying Flash Player object rendering the text, does not support right-to-left scripts such as Hebrew or Arabic. Are you developing applications for these markets? Can you let us know about the demand for them, to help our player team judge the importance of this

RE: [flexcoders] BiDi/right-to-left support in Flex

2005-05-17 Thread Abdul Qabiz
Hi, Macromedia Flash Player doesn't have complete support for RTL. Macromedia Flex applications run in Macromedia Flash Player, so it's not Flex issue. Thanks -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jruud68 Sent: Tuesday, May

RE: [flexcoders] cell render problem

2005-05-17 Thread Abdul Qabiz
When are you calling initCellRenderer? May be data has not yet arrived and this functiong gets called. Are you able to see data in initCellRenderer function? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent:

[flexcoders] XML vs Model?

2005-05-17 Thread Scott Barnes
I've got a external source that pulls in XML file (config). Now, I'm having my own internal debate as to which of the two is betterere? I've noticed no real signficant performance gains (via profiler) with using either, the only thing it kind of brings to the table is that you can access a node

Re: [flexcoders] Cairngorm + Tartan Thread

2005-05-17 Thread dave buhler
Good idea Allen!On 5/16/05, Allen Manning [EMAIL PROTECTED] wrote: Neil, Could you unzip the directory and then rename all of the sub-zips to 'zippo', and email them to us as an attachment if you get the time. I think that might trick the anti-virus software. Otherwise, if you

Re: [flexcoders] Datagrid word wrap- it isnt working.

2005-05-17 Thread Sreejith Unnikrishnan
You have'nt read all the replies to your question, have you? :) Anyways, specify the wordwrap in the mx:DataGridColumn as see below. mx:DataGrid id="dg" width="680" height="320" variableRowHeight="true" mx:columns mx:Array mx:DataGridColumn columnName="Total" headerText="Total reserves"

[flexcoders] Re: BiDi/right-to-left support in Flex

2005-05-17 Thread jruud68
Gordon, we are developing a prototype of an application that would run on a number of different languages, including RTL languages (arabic is likely the most urgent). The lack of RTL support may be a deal-breaker, but it would be helpful if we could tell our potential customer that RTL support

Re: [flexcoders] Flex and Google Maps

2005-05-17 Thread Indiver Nagpal
I came across something like this on http://www.flexauthority.com/samplesIndex.cfm Look under Advanced tab. Indy On 5/17/05, Corey [EMAIL PROTECTED] wrote: Hi All, Has anyone used Flex as a front end for Google Maps? I was thinking of giving this a stab but I have no idea how hard it

[flexcoders] help on HTTP service

2005-05-17 Thread gaurav verma
not able to send data from the mxml to the jsp page i want create a page which takes the values like LOGIN ID and PASSWORD to the another JSP page( this pages validates the loginid from my database) im using the following code : ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: cell render problem

2005-05-17 Thread indiver
It appears that you are value that you are trying to setup agains t the dataProvider is incorrect. I've found that the best way to debug such issues is to turn on debugging for http-services in flex-config.xml, and then look at the flash log for the results returned. Alternately, if you use Flex

[flexcoders] New Moderation Policy - FYI

2005-05-17 Thread Steven Webster
All, Yesterday we realised that yahoogroups now supports a "moderate first post" option to the flexcoders mailing list; this means when someone joins the list, their first post will have to get moderator approval before they are allowed to post again. This should hopefully curtail the

Re: [flexcoders] Re: BiDi/right-to-left support in Flex

2005-05-17 Thread Johannes Nel
this has been requested in every version of the flash player recently and i am not expecting it in the next release either :( On 5/17/05, jruud68 [EMAIL PROTECTED] wrote: Gordon, we are developing a prototype of an application that would run on a number of different languages, including RTL

Re: [flexcoders] cell render problem

2005-05-17 Thread Sreejith Unnikrishnan
If Abdul's query is true about the data arriving later ... you should maybe call the initCellRenderer later. I assume you are calling initCellRenderer on initialize of the application. (I assumed so since there are traces of Steven's post

RE: [flexcoders] Re: cell render problem

2005-05-17 Thread Abdul Qabiz
That might also be the case, so there are two reasons it is not working: 1) function to populate combobox being called before data arrives from server 2) dataProvider is not being set to right type. I have doubt in (1), if it is fine, then you can go ahead anc check for second option.. -abdul

RE: [flexcoders] help on HTTP service

2005-05-17 Thread Abdul Qabiz
Hi, Make sure LOGINVALIDATE.JSP has XHTML rather than HTML i.e. make sure all tags have end tags or closed properly. You can return a xml string from LOGINVALIDATE.JSP. It's better to create a separate LOGINVALIDATE.JSP for flex only, I mean if you are using LOGINVALIDATE.JSP for a html

RE: [flexcoders] XML vs Model?

2005-05-17 Thread Abdul Qabiz
They are similar things IMO. If you specify a source file for XML or Model tag, source (xml)file is compiled into swf. So no loading on runtime but a large initial swf size. P I think, Model should be good at performance because it is simple Object not a XMLNode. Let's see, what other people

[flexcoders] Re: embed flash symbol problem

2005-05-17 Thread joao_m_fernandes
Thanks, It worked just fine. João Fernandes --- In flexcoders@yahoogroups.com, Wilfred LEUNG [EMAIL PROTECTED] wrote: Use this syntax: [Embed(source=/images/icons/mensagens.swf, symbol=icon_info1)] var icon_info:String; Wilfred -Original Message- From:

[flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Tim Blair
Morning all, We're having severe issues with components within a Flex-generated SWF being displayed corrupt. The problem is that this doesn't happen all the time, and I can't seem to find a reproducable method of forcing the corruption. Examples of the sort of thing we're seeing can be seen

[flexcoders] Image not being resized in mx:Image tag

2005-05-17 Thread Tim Blair
Hello, I'm having trouble with images not resizing to fit the mx:Image tag specfied (and also with SWFs not resizing to fit the appropriate mx:Loader). An example can be seen at the following URL, where the image (green boxes) *should* be contained within the grey box top right:

[flexcoders] How to render cell to be in edit mode dynamically through cell renderer

2005-05-17 Thread Pradeep
I am trying to use a Custom Date Cell Renderer which goes in edit mode only when cell gains focus on it. Otherwise a label displays formatted Date value. Following is the code for the DateRenderer :- import mx.core.UIComponent import mx.core.UIObject import mx.controls.DateField import

[flexcoders] Disappearing images in custom cell renderer

2005-05-17 Thread Tim Blair
What is it with me and images at the moment...? Anyway, I'm having trouble with displaying thumbnails in a custom cell renderer within a TileList component. The code for the cell renderer is displayed below (AssetThumbnail.mxml) and the line that defines the TileList is also shown

Re: [flexcoders] Flex and Google Maps

2005-05-17 Thread Jeff Steiner
corey, Manish did this a while back and posted the sample on Flex Authority. Look in the Samples section under Advanced. Jeff http://www.flexauthority.com - Original Message - From: Corey [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, May 16, 2005 10:13 PM Subject:

RE: [flexcoders] Re: BiDi/right-to-left support in Flex

2005-05-17 Thread David Mendels
Hi, We understand the need for RTL/Bi-Di text and want to get this into the Flash Player as soon as possible. However, it is not in the upcoming release, so it will be some time before this can happen. Please don't make any plans assuming we will be able to make it work. I know this is

[flexcoders] combobox selectedIndex

2005-05-17 Thread Shlomi Cohen
Title: Mercury Email Signature Hi Does anyone know how to set an initial selected index on a Combo (for edit dialog for example) i have tried this code and it doesn't work . mx:ComboBox id="intervalCMB"dataProvider="{intervals}" selectedIndex="2" /thanks Shlomi

Re: [flexcoders] combobox selectedIndex

2005-05-17 Thread Sreejith Unnikrishnan
Title: Mercury Email Signature Shlomi, There's nothing wrong with the code that you have posted below. Only reason why I think this would not work is if you have only 2 items in the ComboBox! If not, try this as well mx:ComboBox id="intervalCMB"dataProvider="{intervals}"

RE: [flexcoders] combobox selectedIndex

2005-05-17 Thread Allen Manning
Title: Mercury Email Signature Shlomi, One possibility is that you are setting the index of the combobox before the databinding fires. Thus: 1. It attempts to set the index to 2. 2. It sees the dataprovider has length 0. 3. It silently fails at runtime. some time goes by 4. The

[flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Corey
Hi Jeff, Thanks for the information. I figured someone had done something like this already. I can use what Manish has started to do what I need. Thanks, Corey --- In flexcoders@yahoogroups.com, Jeff Steiner [EMAIL PROTECTED] wrote: corey, Manish did this a while back and posted the

[flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Corey
Hi Jeff, I tried to view the code from FlexAuthority.com for the google maps and it pops up a window but never loads the content in the window. Do you know where I can view the code for this flex based google maps? Thanks, COREY --- In flexcoders@yahoogroups.com, Corey [EMAIL PROTECTED]

Re: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread JesterXL
I've seen it with Canvas containers, but that was because the author didn't specific x and y positions for the controls. Are you using an event to redraw/reposition elements in the containers of the Accordion? - Original Message - From: Tim Blair [EMAIL PROTECTED] To:

Re: [flexcoders] How to render cell to be in edit mode dynamically through cell renderer

2005-05-17 Thread Jim Laing
Hey Pradeep, I've done this very thing using the date field as a cell renderer, so it is possible, but I did it using a subclass of the DataGrid instead of event listeners. Using event listeners instead is an interesting approach, and if you can get it to work, would be superior to using a

Re: [flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Manish Jethani
On 5/17/05, Corey [EMAIL PROTECTED] wrote: Do you know where I can view the code for this flex based google maps? http://manish.revise.org/flash/flex/gmap.zip Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from

Re: [flexcoders] Disappearing images in custom cell renderer

2005-05-17 Thread Manish Jethani
On 5/17/05, Tim Blair [EMAIL PROTECTED] wrote: [...] 2. displays correctly, then after a second or so vanishes; 3. nothing is displayed. [...] asset = Asset(oItem); What happens if you set 'source' directly instead of using binding? Try it. Yahoo! Groups Links * To visit your

RE: [flexcoders] Development of components with AS

2005-05-17 Thread Erik Westra
Title: Message This is a great help (the trick with fdb). In order to make it somehow more workable i run fdb.exe like this: fdb.exe http://adresfdb.log Then when fdb is running i type: list package.Class:1 3 This will put the whole class in the fdb.log file. In order to get

Re: [flexcoders] Image not being resized in mx:Image tag

2005-05-17 Thread Manish Jethani
On 5/17/05, Tim Blair [EMAIL PROTECTED] wrote: I'm having trouble with images not resizing to fit the mx:Image tag specfied (and also with SWFs not resizing to fit the appropriate mx:Loader). See if this helps: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg06839.html Yahoo!

[flexcoders] Turn Off Caching in Flex

2005-05-17 Thread Libby
Is there a way to turn off caching in Flex? I have stuff coming up in my browser whose objects I deleted two iterations ago : ) Makes it hard to do development. The problem occurs in FB as well as Eclipse. I found this on the web: cache-mxmlfalse/cache-mxml for the flex-config file, but evidently

Re: [flexcoders] help on HTTP service

2005-05-17 Thread Manish Jethani
On 5/17/05, gaurav verma [EMAIL PROTECTED] wrote: i want create a page which takes the values like LOGIN ID and PASSWORD to the another JSP page( this pages validates the loginid from my database) im using the following code : [...] this is returning a error HTTP SERVICE FAULT. A start tag

Re: [flexcoders] Turn Off Caching in Flex

2005-05-17 Thread Manish Jethani
On 5/17/05, Libby [EMAIL PROTECTED] wrote: Is there a way to turn off caching in Flex? I have stuff coming up in my browser whose objects I deleted two iterations ago : ) Makes it hard to do development. The problem occurs in FB as well as Eclipse. If you load images and such from Flex, then

[flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Corey
Hi Manish, Thank you very much for the code. Corey --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/17/05, Corey [EMAIL PROTECTED] wrote: Do you know where I can view the code for this flex based google maps? http://manish.revise.org/flash/flex/gmap.zip

[flexcoders] PrintJob frustrations

2005-05-17 Thread Battershall, Jeff
I'm trying to print some charts along with a header. In my app, the header (a GridRow) is hidden until the print function is called, but for some reason I CANNOT get the item to show in time to be sent to the printer. I tried setting up a separate function to show the header and then have the

RE: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Tracy Spratt
Yes, actually, I get this behavior every week or so, and it is also with an accordion container and standard VBox and HBoxes. I don't have any idea what causes it however. For me, simply refreshing the app corrects the problem so mine is a rendereing issue and not a compile issue. Tracy

RE: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Tracy Spratt
And by the way, shouldn't we move this to flexcoders? This forum is pretty much defunct. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, May 17, 2005 11:58 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

RE: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Tracy Spratt
Yes, actually, I get this behavior every week or so, and it is also with an accordion container and standard VBox and HBox. I don't have any idea what causes it however. For me, simply refreshing the app corrects the problem so mine is a rendering issue and not a compile issue. Tracy

RE: [flexcoders] PrintJob frustrations

2005-05-17 Thread Battershall, Jeff
Using setInterval/clearInterval seems to be a good workaround, unless someone else has something better. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Tuesday, May 17, 2005 11:29 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Question about error message

2005-05-17 Thread Tracy Spratt
You often will not find the offending code in your own source though. Sometimes it is in the way the flex compiler generates the underlying AS classes. This has been thoroughly discussed, but here are a few pointers: mxml files with large amounts of UI code PLUS moderate

RE: [flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Tracy Spratt
I got this to work on flexauthority, but it was extremely slow. Are you sure you gave it enough time? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Sent: Tuesday, May 17, 2005 11:08 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Sjors Pals
I got a similar problem a few months ago when i changed the width of a h-slider programmatically. I did try everything but in the end i made 2 sliders with corresponding values and instead of resizing i did a show/hide trick. Will try or i can setup a sample which reproduces it. Greets, Sjors

RE: [flexcoders] help on HTTP service

2005-05-17 Thread Tracy Spratt
Call your JSP from a browser. You will easily be able to see where the xml is invalid Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gaurav verma Sent: Tuesday, May 17, 2005 2:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] XML vs Model?

2005-05-17 Thread Tracy Spratt
One of my issues with Model is I had trouble determining how the xml was going to be deserialized into the object. What happens to attributes? What happens to child nodes and text nodes? Since I was comfortable with xml I mostly stuck with that. I haven't even needed the available Xpath library

Re: [flexcoders] Re: Flex and Google Maps

2005-05-17 Thread Manish Jethani
On 5/17/05, Tracy Spratt [EMAIL PROTECTED] wrote: I got this to work on flexauthority, but it was extremely slow. The way to make it fast is to cache the generated JPEGs on the server. The GIF-to-JPEG conversion is what takes up most of the time. Yahoo! Groups Links * To visit your group

[flexcoders] Cairngorm 0.99

2005-05-17 Thread Steven Webster
http://www.iterationtwo.com/open_source_cairngorm.html Any questions, we'll answer them tomorrow ... team iteration::two are off to the bar:-) We shall have a drink at the bar on behalf of the rest of the Cairngorm Project Team as well (in fact, Ilya/Matt/Dirk/Romain/Jimmy, could you

RE: [flexcoders] Serious corruption in Flex-generated SWF

2005-05-17 Thread Tim Blair
Are you using an event to redraw/reposition elements in the containers of the Accordion? On some of the views that are effected I'm using events to clear out what's shown, but others are simply displayed. I'm also having the same problem with components in a TabNavigator component, so it's

Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread David Aden
stephen, great and thanks! One thing before the pub (if you're not already gone) -- could you check the release notes PDF -- I'm getting a message that it is corrupt and can't be repaired. The install directions are fine. ta, d On 5/17/05, Steven Webster [EMAIL PROTECTED] wrote:

Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread David Aden
never mind -- downloading and opening it worked fine, just opening from within Firefox didn't work. d On 5/17/05, David Aden [EMAIL PROTECTED] wrote: stephen, great and thanks! One thing before the pub (if you're not already gone) -- could you check the release notes PDF -- I'm getting a

[flexcoders] Re: cell render problem

2005-05-17 Thread Rajesh Jayabalan
Hi Sree, That helped an another solution that I found was to use combo.dataProvider = parentDocument.clTypeSrv.result.types.type; in my setValue method of the cell renderer. Now my combobox is showing up fine, but it is not selecting any thing by default and when I select some option and

Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread dave buhler
The link is for the .95 release. On 5/17/05, Steven Webster [EMAIL PROTECTED] wrote: http://www.iterationtwo.com/open_source_cairngorm.html Any questions, we'll answer them tomorrow ... team iteration::two are off to the bar:-) We shall have a drink at the bar on behalf of the

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Shlomi Cohen
Hi great guys , thanks i think you forgot some resources (procust images) at the assets/products of the store sample. and the installation guide needs to be fixed regarding the DB path , the default ..\\db\\ in store.cfg is not working. (and i have tried all combinations -:-) i had

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Stacy Young
Links for both 0.95 and 0.99 are there Stace p.s. nice work lads! J From: dave buhler [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 17, 2005 2:20 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm 0.99 The link is for the .95 release. On

[flexcoders] TitleWindow show event

2005-05-17 Thread Jeff Beeman
I've got a TitleWindow popup that appears when a button is clicked. When the window appears, I want to set focus on a TextInput component that is in the TitleWindow. I assume that the event I'm looking for is show - but it doesn't seem to be broadcasting that event when the TitleWindow is popped

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Ryan Scott Jones
CHEERS!!! Ryan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster Sent: Tuesday, May 17, 2005 12:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm 0.99

RE: [flexcoders] Is there a way to schedule something with Flex

2005-05-17 Thread Tracy Spratt
Sure, but you will need to build it. Id create an associative array consisting of and id as key/property name, and, as the value, either simple time number, or an object if you want to store more complex data. Var oOpSpec:Object = new Object(); oOpSpec.datetime = scheduledDateTime;

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Tracy Spratt
I'd use creationComplete of the TitleWindow instead. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Beeman Sent: Tuesday, May 17, 2005 2:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TitleWindow show event I've got a

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Matt Horn
Works like a charm: ?xml version="1.0" encoding="utf-8"?mx:TitleWindow xmlns:mx="http://www.macromedia.com/2003/mxml" closeButton="true" width="200" click="this.deletePopUp();" creationComplete="setMyFocus()"mx:Scriptfunction setMyFocus() {form1.setFocus();}/mx:Scriptmx:TextInput

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Steven Webster
i think you forgot some resources (procust images) at the assets/products of the store sample. We didn't forget, we chose not to ship the images it's in the Installation guide how to copy them from Flexsamples. and the installation guide needs to be fixed regarding the DB

Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
This works, but my code in my main app doesn't work... imagine that alskdjflajdlksfjl kasfdlaksj dfliasjdlifj o asdlfj ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; initialize=initApp(); mx:Script ![CDATA[ function initApp() {

RE: [flexcoders] TitleWindow show event

2005-05-17 Thread Jeff Beeman
That was far too easy /** * Jeff Beeman **/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Horn Sent: Tuesday, May 17, 2005 12:35 PM To:

RE: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread Jose Lora
Maybe the signature of your function is not the right one, try using : private function onMyLabelFunction (item , columnName) : String { From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Tuesday, May 17, 2005 3:20 PM To: Flexcoders

[flexcoders] Custom Component Help

2005-05-17 Thread Jason
Hello! I'm getting started with a custom Flex component (based on ComboBox), and running into a bit of difficulty. I bought, the developing rich clients with macromedia flex book, and have to say it comes very close in helping but I'm still stuck. BTW thanks Steve Alistair for writing a

Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
Can someone explain why this doesn't work with the labelFunction? ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"mx:Script![CDATA[ import mx.utils.Delegate; function test(item, colName){return "cow";} function doStuff(){var d =

Re: [flexcoders] DataGrid.labelFunction

2005-05-17 Thread JesterXL
Just a guess looking at the Flash code (if someone could confirm in the REAL Flex classes which I haven't got). - it seems mx.controls.listclasses.SelectableRow has it's owner property set when it's created to know scope. This scope is used to call labelFunction. - SelectableRow is the

Re: [flexcoders] XML vs Model?

2005-05-17 Thread Indy Nagpal
Performance-wise I find that both to be equivalent. But mx:Model provides a much easier way to access nodes of an xml document (and most of the times, the easier, the better!). But I agree with Matt's observation that mx:XML serves a better dataProvider for the Tree control. Indy On 5/18/05,

Re: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Sean McKibben
I'm having some trouble getting my Services.mxml to work with .99.I keep getting errors like:Error /com/cadpo/shared/business/Services.mxml:4Namespace http://www.iterationtwo.com/cairngorm has not been associated with component manifest.Error /com/cadpo/shared/business/Services.mxml:4No type for

[flexcoders] Displaying dynamic HTML file in a Flex Window

2005-05-17 Thread Brett Palmer
We have a Flex application that needs to integrate with a third party web (JSP) application. We would prefer displaying the HTML pages from the third party application in a child Flex windows (like a dialog box) to make the applications appear as one. Is there a Flex component that can display

Re: [flexcoders] XML vs Model?

2005-05-17 Thread Scott Barnes
Thanks All! :) I think XML is the best buy for my situation but will keep the above opinions in the back of the mind for future use. On 5/18/05, Indy Nagpal [EMAIL PROTECTED] wrote: Performance-wise I find that both to be equivalent. But mx:Model provides a much easier way to access nodes of

RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread Jeff Beeman
Title: Message This is very exciting! Im especially excited about the double-dot and wildcard operators. Thanks for this update, as itll help with planning for future projects. Keep em coming! /** * Jeff Beeman

RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread James Ward
ROFL! Come on Gordon! If you are going to accidentally leak info, can you make it a bit juicier? ;) Maybe something about some super-secret project or the Adobe buyout or Flex 2 release dates. This is good info, but not *that* exciting! Still laughing... :) -James On Tue, 2005-05-17 at

RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread Gordon Smith
OK, OK. Next time I'll try to leak something that will get me fired. Somebody on the list can give me a job as a Flex developer. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of James Ward Sent: Tuesday, May 17, 2005 5:24 PM To:

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Dimitrios Gianninas
Hi, You must add the appropriate entry for the cairngorm-manifest.xml in the flex-config.xml (portion in red below): namespace uri="http://www.macromedia.com/2003/mxml" manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace namespace uri=http://www.iterationtwo.com/cairngorm

RE: [flexcoders] Hibernate 3

2005-05-17 Thread Dimitrios Gianninas
Haven't done it yet... been using Hibernate 2.1.8 for now in the integration layer with Flex as the presentation layer. It shouldn't be any different. What problem are you experiencing? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Rich Tretola [mailto:[EMAIL

[flexcoders] Re: Custom Component Help

2005-05-17 Thread alex_harui
I could be wrong, but I think you are trying to specify data for a component in xml. The only way I know to do this is to specify a property of type XML then assign it and pick it apart. Here's a mini- example: Test.MXML alexButton xmlData

[flexcoders] Re: DataGrid.labelFunction

2005-05-17 Thread alex_harui
The DataGrid has a labelFunction property that it inherits from its base classes, but it does not use it. Instead each column has a labelFunction property that you want to set. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ *

[flexcoders] Re: combobox selectedIndex

2005-05-17 Thread alex_harui
The code snippet worked fine for me if the intervals property is an array of strings. Is it possible you are initializing intervals from a web service call? If so, you have a timing problem in that the selected index was set long before the data arrived (actually it thought it had zero rows

Re: [flexcoders] Re: DataGrid.labelFunction

2005-05-17 Thread JesterXL
Thank you very much; after testing it works like a charm. However, I must take this opportunity to urge Macromedia to release the Flex component classes for Flex 2.0. I could have spent 2 hours effectively debugging my problem, perhaps less, rather than flailing and flying blind. -

RE: [flexcoders] RemoteObject source= bug?

2005-05-17 Thread Matt Chotin
Yeah, RemoteObject requires the classname to be set at compile-time in the tag, no binding allowed. Thats a bug that it didnt raise a compiler error. In 2.0 were trying to allow a lot more runtime tweaking of all of our services including RemoteObject to allow things like this. Matt

[flexcoders] Announcing Flex Style Explorer

2005-05-17 Thread Jae Hess
Not sure if you have heard the news: Announcing Flex Style Explorer http://www.markme.com/mc/archives/007740.cfm Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL

RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread Hans Omli
Title: Message I don't suppose we'll be reading part 2 of this email via FlexCoders then. ;-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon SmithSent: Tuesday, May 17, 2005 5:15 PMTo: 'flexcoders@yahoogroups.com'Subject: RE: [flexcoders] E4X in Flex

Re: [flexcoders] Announcing Flex Style Explorer

2005-05-17 Thread Jeff Tapper
very nice! At 10:26 PM 5/17/2005, you wrote: Not sure if you have heard the news: Announcing Flex Style Explorer http://www.markme.com/mc/archives/007740.cfmhttp://www.markme.com/mc/archives/007740.cfm -- Yahoo! Groups Links * To visit your group on the web, go to: *

[flexcoders] Explaining Flex Log In and User Role Functionality to Java Developers

2005-05-17 Thread Leif Wells
Here's the deal. I have a client putting together a (fairly large) Flex application; actually the company that I work for is putting together the Flex portion and the client and another vendor is putting together the J2EE back-end. So they come to me and say How are we handling logging in a

Re: [flexcoders] Explaining Flex Log In and User Role Functionality to Java Developers

2005-05-17 Thread dave buhler
Hi Leif, I had presented a similar question a few days ago regarding Flex and CF7 which runs on j2EE. I can share with you what I know, but I am also looking to learn more about security with Remoting, myself. You should be able to attach setCredentials to your Remote Call. I know

Re: [flexcoders] Announcing Flex Style Explorer

2005-05-17 Thread JesterXL
That's awesome! Thanks for the link. - Original Message - From: Jae Hess [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, May 17, 2005 10:26 PM Subject: [flexcoders] Announcing Flex Style Explorer Not sure if you have heard the news: Announcing Flex Style Explorer

RE: [flexcoders] Explaining Flex Log In and User Role Functionali ty to Java Developers

2005-05-17 Thread Matt Chotin
Do you have a copy of the Developing Rich Clients book? The Integration Tier section (primarily chapters 20 and 21) would probably help you out. The docs talk about setting up your J2EE server with authentication support here:

Re: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread Jeff Steiner
That is flat out increadible. I can't wait! Jeff http://www.flexauthority.com - Original Message - From: Jeff Beeman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, May 17, 2005 5:04 PM Subject: RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML This is very

Re: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-17 Thread Scott Barnes
heheheheheheh thats funny. I had to do a double take and thought am i reading the right list here or... Nice work ;) On 5/18/05, Hans Omli [EMAIL PROTECTED] wrote: I don't suppose we'll be reading part 2 of this email via FlexCoders then. ;-) From:

Re: [flexcoders] Explaining Flex Log In and User Role Functionality to Java Developers

2005-05-17 Thread Scott Barnes
Like Dave said, you could use setCredentials over the pipe to access remote methods, but for those who are anti-letting-client-side-have-username-password-stored-locally you can still leveridge existing session scope compliance. In that, you can make your backend handle its security model

Re: [flexcoders] Explaining Flex Log In and User Role Functionality to Java Developers

2005-05-17 Thread Leif Wells
Dave, thanks for replying. The link you provided for the livedocs takes me to a page about containers. Since that is not the point we were discussing, I can only imagine that something is wrong with that link. ;-) (either that or Gmail is misinterpreting the link) If you could provide the

Re: [flexcoders] RemoteObject source= bug?

2005-05-17 Thread Scott Barnes
Robin Hilliard asked a nice question regarding this last night, in that will this get around whitelist security? or is it stored elsewhere and acts as a filter before allowing remote calls to be made? On 5/18/05, Matt Chotin [EMAIL PROTECTED] wrote: Yeah, RemoteObject requires the

Re: [flexcoders] SynergyFLEX Framework Presentation.

2005-05-17 Thread Will Sargent
Scott Barnes wrote: For those who have emailed me asking for the latest build, i've uploaded a public preview / alpha build of the framework via my blog tonight. URL: http://www.mossyblog.com/archives/473.cfm Feedback welcomed. What is the rationale for SynergyFLEX? How does it compare