RE: [flexcoders] script running structure

2006-09-19 Thread Matt Chotin
Hi, These are full classes so there isnt code that executes outside of the class initialization. You should use the different events like creationComplete on the Application to kick off your code. Check the explorer and other samples to see examples. Matt From:

RE: [flexcoders] flash player 9 security?

2006-09-19 Thread Matt Chotin
Yep, -use-network is still a valid flag and depending on where your data is located youll need to set it to true or false. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Monday, September 18, 2006 2:09 PM To:

RE: [flexcoders] Scrollbar thickness

2006-09-19 Thread Matt Chotin
Yep, its a constant and weve filed a bug to get it exposed better. In the meantime you can see some of the work we did in another app to get the scrollbar thinner, youll need to adjust. (three files attached) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: criticla problem charting component - coding axis

2006-09-19 Thread olivier
Hi all! Thank you for your help ! I finally found the problem: The series creation was wrong : my way : aa:AreaSet=new AreaSet(); aa.series=new Array(); //--inserting series this.series=aa; correct way:

Re: [flexcoders] Re: How can I block a TabNavigator ?

2006-09-19 Thread Harish Sivaramakrishnan
Okay, Agree with many here that not allowing the tabs to be clickable in a tabNavigator is a little uncommon usecase, I have a solution for the problem. I have extended TabNavigator to make TabNavigatorX, which achieves exactly what the requirement here is . Use the following code:

Re: [flexcoders] Re: How can I block a TabNavigator ?

2006-09-19 Thread Harish Sivaramakrishnan
PS: Deepa's method will work too, but that would mean the dev needs to write some code on to the main application __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] DragDrop doesn't work properly if component contains SWF Image

2006-09-19 Thread Mozilla By
Hi all, I have a component like this: mx:Box     xmlns:mx=”http://www.adobe.com/2006/mxml”     dragEnter=doDragEnter(event)     dragDrop=doDragDrop(event) mouseChildren=”false”     mx:Image source=@Embed[“icon.SWF”] width=48

[flexcoders] Re: How can I block a TabNavigator ?

2006-09-19 Thread Tim Hoff
Nice component Harish! I could see where this could come in handy for self-guilded or step-based use cases. Perhaps a quiz that only allows you to move forward, but shows your progress via tabs. In fairness to Paul's suggestions though, traditionally people like to be able to navigate using

[flexcoders] Video Conf with Flex

2006-09-19 Thread brownd_92
Hi guys, does anyone know of a flex app which uses FMS and full video conf? Or even a flex component for FMS like the video conf component for Flash and FMS. Ive developed a video conf app using Flash and I want to now use Flex to do the same thing. Cheers David -- Flexcoders

[flexcoders] Example: Creating and using custom tooltips

2006-09-19 Thread n51red
Hello, Somebody asked me to provide an example of how to use arbirary components as tool tips. So here goes: Notes - For a component to be used as a tooltip it must implement the IToolTip interface. I've used a base class (CustomToolTip) for the custom tooltips in this example that takes

Re: [flexcoders] Re: ToolTip Timers

2006-09-19 Thread John Kirby
Title: quote Tim - I have it working now with custom components and effects (just like JamJar). I have it setup now where I can create as many custom tooltips as I want. It also uses the various errorTipBorderStyles. This what I did: 1.) I created my own ToolTip class which extends

[flexcoders] how to set 1px width image to be a 200width application control bar 's backgroundImage

2006-09-19 Thread saicn
Hello ,everyone: I wanna to know how to set 1px width image to be a 200width application control bar 's backgroundImage. i'm sorry for my poor english. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] log console

2006-09-19 Thread julien castelain
i use SOS , it's really cool :)On 9/19/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: That productwas severely updated - I believed the version on ajaxmaker predates Flex release one as you could of guessed based on the name ;-).Release version is posted on

[flexcoders] Problems with TextInput

2006-09-19 Thread Madhuri Chamarty
hi,I have been working on a form where i have to take the id and password from the user validate them.I used 2 TextInput Controls and i have written the followinf code for validationimport mx.controls.TextInput; public function LoginCheck():void{ if((uid.text=='1')

[flexcoders] call function (how-to)

2006-09-19 Thread caruso_canepari
Hi, I'm trying to use and understand Flex Builder. I made up this test function but I don't understand how it can be called onLoad: mx:Script ![CDATA[ import flash.display.*; public function drawer():void{ var mySprite:Sprite = new Sprite();

Re: [flexcoders] Re: Flex + .NET Web Services irritations

2006-09-19 Thread Sam Shrefler
John, I know you had said you were using webServices...but if you can possibly refactor, using WebOrb.NET Standard (free), you can transfer back and forth classes/objects..For more info you can check out http://blog.shrefler.net/?p=6 Hope that could help... Sam On 9/18/06, John C. Bland II

Re: [flexcoders] how to set 1px width image to be a 200width application control bar 's backgroundImage

2006-09-19 Thread Harish Sivaramakrishnan
set the backgroundSize property to 100%, not sure, worth a try!On 9/19/06, saicn [EMAIL PROTECTED] wrote: Hello ,everyone: I wanna to know how to set 1px width image to be a 200width application control bar 's backgroundImage. i'm sorry for my poor english.

Re: [flexcoders] call function (how-to)

2006-09-19 Thread Michael Schmalle
Hi,You could use;mx:Application ... creationComplete=drawer() .../mx:ApplicationPeace, MikeOn 9/19/06, caruso_canepari [EMAIL PROTECTED] wrote: Hi, I'm trying to use and understand Flex Builder. I made up this test function but I don't understand how it can

Re: [flexcoders] call function (how-to)

2006-09-19 Thread Michael Schmalle
BTW,Looking at your code, you cannot do this; mySprite.addChild(lab); addChild(mySprite);You need at least; mySprite.addChild(lab);var wrapper:UIComponent = new UIComponent();wrapper.addChild(mySprite); addChild(wrapper);Peace, MikeOn 9/19/06, Michael Schmalle

[flexcoders] create a research function though google's api,but failed to get any results...

2006-09-19 Thread garylee0709
i used fb2 to create a page that can use google's search webservice,and i think i had wrote the script correctly,but can't get any result,the flex codes are below: mx:WebService id=ws wsdl=http://api.google.com/GoogleSearch.wsdl; result={ti.text='yes'} fault={ti.text='no'}

[flexcoders] Passing Embedded object into Grid Component.

2006-09-19 Thread laidezmon
OK here is what i am trying to do. I have a grid component, and I wanted to display on the grid, a list of ship objects. Think of this like a cruise liner. I am retrieving these objects from a java/hybernate/spring adapter using remote object, and it works ok. I get back an arrayCollection, then

Re[2]: [flexcoders] how to set 1px width image to be a 200width application control bar 's backgroundImage

2006-09-19 Thread Andriy Panas
Hello Harish, Tuesday, September 19, 2006, 3:56:03 PM, you wrote: set the backgroundSize property to 100%, not sure, worth a try! I just tried this path just to validate this approach and it failed to me. I applied the following CSS style to the application: Application {

Re: [flexcoders] Example: Creating and using custom tooltips

2006-09-19 Thread Tom Fitzpatrick
Nick - Great example! One question. I've used your example to implement a custom tooltip on a component that also contains a pie chart. The pie chart has a tooltip as well. Is there any way to temporarily disable to component's overall tooltip while the pie chart tooltip is displaying -

[flexcoders] Setting new dataProvider and selectedIndex properties to HorizontalList simultaneously

2006-09-19 Thread Sergey Kovalyov
Hi All! Unfortunately, setting new dataProvider and selectedIndex properties to HorizontalList simultaneously does not always result in actually selecting particular item. Sometimes the dataProvider changes, but nothing is selected. You could find the simple code sample below. What's wrong with

[flexcoders] using an OCX with Flex

2006-09-19 Thread boy_trike
I am considering re-writing a traditional client-server application in Flex. This will be an INTRANET application and all of the clients have a registered OCX that my app has to communicate with (Interfaces with a phone dialer). My 2 part question is: 1). Am I silly to try to build a

[flexcoders] Implementation of Concept: Grid

2006-09-19 Thread lostinrecursion
Hi all, I wrote up this question a while ago but I realized, after looking at it, that it was poorly posed. As such, it was buried among the graveyard of unanswered posts. I think I have a much better way to represent it: I have a database table which holds the following fields: width length

[flexcoders] Architecting a large, modular Flex application

2006-09-19 Thread derrickgrigg
I just want to bounce this idea/concept off the larger Flex community to see if there are any holes or possibly better solutions. I am currently working with a team of developers on a large, modular Flex application based on the Cairngorm framework. One issue that we are trying to get our heads

[flexcoders] Re: Compiler warning about unused CSS type selector

2006-09-19 Thread tobiaspatton
That's right. I have three related applications and I would like to use a single style sheet for all three. One of the applications does not use the ComboBox control, so reports this warning. I'm hoping there's a switch in flex-config.xml to disable this warning, but can't find one. Tobias.

[flexcoders] Re: idiotic flex fires 2 event handlers for buttons of a substate !!!

2006-09-19 Thread jpc14_99
Thanks Matt. It is an easy workaround, I probably could've fixed it faster if it hadn't of been so late. Sorry for any frustration driven rudeness in my original post. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Flex 2 courses in Ottawa

2006-09-19 Thread jenunderscore
Hey all, I'm new to the list and thought I would take thise opportunity to introduce myself to the group. If there are any other people here from the Ottawa region, I will be attending courses by the New Toronto Group, next week. If you are also attending, feel free to introduce yourselves!

[flexcoders] Search Engine

2006-09-19 Thread s_hernandez01
My skill level in flex 2.0 is intermediate and I was wondering if anyone knew of any resources on how I can build a search engine with the products that I use in my app. I've been reading that the Ajax Bridge is nice to use, but I can not find any getting started tutorials. If anyone knows of a

Re: [flexcoders] Re: Flex + .NET Web Services irritations

2006-09-19 Thread John C. Bland II
I have heard a lot of good things about WebOrb. The next version of the app will be rid of the web services so we'll see what works best.On 9/19/06, Sam Shrefler [EMAIL PROTECTED] wrote: John, I know you had said you were using webServices...but if you can

[flexcoders] Data Binding Question - will both work?

2006-09-19 Thread nwebb
Hi, I've just seen part of a Flex training video that I think is incorrect or outdated (beta 3 was being used at the time)I just want to double-check that this really is the case.The video says that the code below would *not* take full advantage of data binding (ie the data will initially

[flexcoders] Adding buttons to RTE control area.

2006-09-19 Thread mthielman11
OK so I need to add a Rich Text area to my app. It is going to appear in a popup window. Ideally I would like to make the RTE the popup panel on its own and add in a cancle and save button to the area that has the front controls, is this possible?? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Passing Embedded object into Grid Component.

2006-09-19 Thread iviivi_us
Have you tried to use labelFunction ? private function labelFanctionCountry(item:Object):String { return item.port.country; } mx:DataGridColumn headerText=Port Country labelFunction=labelFanctionCountry/ Irina --- In flexcoders@yahoogroups.com, laidezmon [EMAIL

[flexcoders] Re: Passing Embedded object into Grid Component.

2006-09-19 Thread Darin Kohles
As a simple approach to this I'd create an inline renderer for this column as: mx:DataGridColumn headerText=Port Country mx:itemRenderer mx:Component mx:Label text={data.port.country} / /mx:Component /mx:itemRenderer /mx:DataGridColumn In this case the 'data' object is

Re: [flexcoders] Re: Compiler warning about unused CSS type selector

2006-09-19 Thread Darron J. Schall
Have you tried the -compiler.keep-all-type-selectors flag or keep-all-type-selectorstrue/keep-all-type-selectors tag? It might add a tiny bit to the file size (since unused types won't be pruned), but it might eliminate the warnings. There doesn't seem to be a specific compiler option to

[flexcoders] What happened to getTreeNodeAt??

2006-09-19 Thread carl_steinhilber
Well, now I'm stymied. With Flex 1.5, I was able to expand all the nodes of an mx:Tree with something like: function setOpenAll(aryNodes):Void{ var childNode = aryNodes.getTreeNodeAt(0); var aryChildren = aryNodes.getChildNodes(); for (var i =

[flexcoders] Re: Problems with TextInput

2006-09-19 Thread Darin Kohles
I've most often encountered this type of error when I am setting state based properties in mxml. It generally means that I've coded target=someThing instead of target={someThing}. The target wants an object with {} not a string with . I suggest you look at your code to see if you haven't done

[flexcoders] Re: how to set 1px width image to be a 200width application control bar 's backg

2006-09-19 Thread Jack OMelia
Try CSS setting repeat-x (horizontal) or repeat-y (vertical) Jack --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: Hello Harish, Tuesday, September 19, 2006, 3:56:03 PM, you wrote: set the backgroundSize property to 100%, not sure, worth a try! I just

[flexcoders] Re: Passing Embedded object into Grid Component.

2006-09-19 Thread laidezmon
Ah found the problem. Instead of using the dataField attribute for the column, you are supposed to use the labelFunction=calcPortCountry attribute. That was my problem. So in short I still have to create the calcPortFunction, pass in the item in the grid, find the embedded port attribute and

[flexcoders] Re: Problems with TextInput

2006-09-19 Thread Darin Kohles
I've most often encountered this type of error when I am setting state based properties in mxml. It generally means that I've coded target=someThing instead of target={someThing}. The target wants an object with {} not a string with . I suggest you look at your code to see if you haven't done

Re: [flexcoders] Adding buttons to RTE control area.

2006-09-19 Thread Peter Baird
Yes it is. See this article on programming controls in RTE in the livedocs for an example of how it can be done: http://livedocs.macromedia.com/flex/2/docs/0570.html -Peter On 9/19/06 11:40 AM, mthielman11 [EMAIL PROTECTED] wrote: OK so I need to add a Rich Text area to my app. It is

[flexcoders] FP 9 Sandbox Bug Between Firefox and IE?

2006-09-19 Thread Dave Carabetta
Hi. I was wondering if somebody can confirm for me whether or not I've stumbled upon a Flash Player 9 bug. The source code is simply the source code from Ted Patrick's Flex Builder 101 Breeze demo located at http://www.adobe.com/devnet/flex/articles/flextv_flexbuilder101.html. I've also pasted it

[flexcoders] Scale-9 Guide

2006-09-19 Thread fuad_kamal
Does scale-9 only apply to how Flex deals with ordinary (single) images, or can graphic components be preapared in different slices for use with scale-9? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Compiler warning about unused CSS type selector

2006-09-19 Thread tobiaspatton
Thanks for the reply Darron; I had high hopes that you were right, but sadly the warning still appears: mxmlc -source- path=D:\PerforceDepot\galiano\Galiano.Tobias_Patton\Client/classes - compiler.keep-all-type-selectors -include-

[flexcoders] Re: datagrid, custom editRenderer, and labelFunction

2006-09-19 Thread laidezmon
Heres the info from the flex component reference: dataChange event Event object type: mx.events.FlexEvent FlexEvent.type property = mx.events.FlexEvent.DATA_CHANGE Dispatched when the data property changes. When you use a component as an item renderer, the data property contains an

[flexcoders] syntax issue

2006-09-19 Thread bghoward3
i am trying to use a query as follows SELECT * FROM tblUserDirectory, tblUser, tblTeamMember WHERE tblUserDirectory.intUserID = tblUser.intUserID AND tblTeamMember.intUserID = tblUser.intUserID ORDER BY strUserLastName selecting everything form 3 differnt tables, using a master

[flexcoders] Re: syntax issue

2006-09-19 Thread Darin Kohles
When in doubt dump your data to make sure you are getting what you think you are (in a change event handler for instance): import mx.utils.ObjectUtil; trace(ObjectUtil.toString(masterList.selectedItem)); --- In flexcoders@yahoogroups.com, bghoward3 [EMAIL PROTECTED] wrote: i am trying to use

RE: [flexcoders] syntax issue

2006-09-19 Thread Tracy Spratt
When you run that query in Query Analyzer or its equivalent, do you get a table that looks like you expect? If so, then move down the line and in a result handler function, inspect the actual structure and content of the result object. You need to make sure you have the data you

[flexcoders] Re: datagrid, custom editRenderer, and labelFunction

2006-09-19 Thread laidezmon
In the comboBox object, there is an event called 'dataChange'. It is used when the data changes, it fires an event for it. I have not played with this much yet, but I think it might be the path you need to follow to get this thing working. Play with that event on your item renderer object, and

Re: [flexcoders] Flash 8 swc into Flex 1.5

2006-09-19 Thread sam / pixelconsumption
You need to use compc to compile a swc for Flex. The UIObject class Flex 1.5 uses is different from the one Flash put into your swc causing the errors you see. -Sam shawnb457 wrote: I'm tring to install a flash swc into flex 1.5 and I'm getting the error. A linked symbol is incompatible

RE: [flexcoders] Re: criticla problem charting component - coding axis

2006-09-19 Thread Ely Greenfield
Hmmm. That shouldn't work either. It should be: this.series = [aa]; Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of olivierSent: Tuesday, September 19, 2006 1:20 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: criticla problem charting

[flexcoders] Help on a general way to serialize a model and its contents

2006-09-19 Thread greenfishinwater
I have a number of models in my app and as a debugging help have an alert fired by a button, which gives me the content of a model. For example mx:Model id=product product name{fName.text}/name code{fCode.text}/code discountGroup{fGroup.text}/discount /product /mx:Model Would give a

[flexcoders] Re: Compiler warning about unused CSS type selector

2006-09-19 Thread Tim Hoff
Hi Tobias, Instead of using the default ComboBox CSS, you could change it to a custom styleName. You would have to code styleName properties for all of the comboBoxes, but the warning should go away. Looks like you have the same problem with Alert. Of course, you could always cheat by

[flexcoders] FDS Running as a Service?

2006-09-19 Thread Mike Anderson
Hello All, I don't recall this topic ever coming up - but is there a way, rather than double-clicking the FDS Icon to launch the FDS Server, to have it startup on it's own as a service? Of course, in a Server Environment, having to launch a server in this manner is just not realistic - as it

[flexcoders] parsing xml, simple question

2006-09-19 Thread aaron smith
look at this example::?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute creationComplete=init() mx:Model id=txml employees employeefirstnameAaron/firstname /employee employeefirstnameD/firstname /employee

Re: [flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-19 Thread hank williams
What does it mean to alert the index.template page?On 9/15/06, Johannes Nel [EMAIL PROTECTED] wrote: try altering the index.template.html page and then running in debug mode from eclipse?On 9/15/06, hank williams [EMAIL PROTECTED] wrote: Someone must know the answer to this!On 9/14/06,

RE: [flexcoders] Architecting a large, modular Flex application

2006-09-19 Thread Dimitrios Gianninas
Hi, I think you have setup things pretty much the same way I would. Although I have never gone that far... yet :) One thing I did notice which you can change is that you said the entire flex framework gets included in the cairngorm.swc ... doesn't have to be. I build the carngorm.swc using

RE: [Junk E-Mail - LOW] [flexcoders] Re: Compiler warning about unused CSS type selector

2006-09-19 Thread Shannon Hicks
Perhaps more importantly, why the warning? Is there a performance or (significant) filesizepenalty for having unused styles in Flex? I remember styles were an issue with CFFORM. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tobiaspattonSent: Tuesday,

[flexcoders] Custom Component Updates...

2006-09-19 Thread Ken Bromberger
Hi All, I have a custom component, a combo box that I have applied an ArrayCollection filter to that accepts a variable to filter on. I am able to trigger and filter the combo box externally but what I would like to do is have the combo box listen for when its binding changes and

RE: [flexcoders] Help on a general way to serialize a model and its contents

2006-09-19 Thread Dimitrios Gianninas
In Flex 1.5: for( var i in product ) { trace( i + - + product[i] ); } In Flex 2.0: trace( dump: + ObjectUtils.toString( product ) ); Enjoy! Dimitrios Gianninas Optimal Payments Inc -Original Message- From: flexcoders@yahoogroups.com on behalf of greenfishinwater Sent: Tue

[flexcoders] Re: parsing xml, simple question

2006-09-19 Thread aaron smith
ok, so i figured out my first question but I have another question about parsing xml...look at this xmlrss version=2.0 xmlns:dc= http://purl.org/dc/elements/1.1/ xmlns:sy=http://purl.org/rss/1.0/modules/syndication/ xmlns:content= http://purl.org/rss/1.0/modules/content/ employees

[flexcoders] Printing/addChild dilemma

2006-09-19 Thread jlingwai
Hi, In my application I have a chart and a datagrid. I wish to print this in the following order. header(which includes info about the data presented) graph datagrid I know I could have the graph and datagrid printed on seprate pages, but I want it to look better so.I'm using the

Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )

2006-09-19 Thread Douglas McCarroll
Paul Andrews wrote: Hosting Flex isn't a problem, it's FDS that's the problem. ;-) Are there any solutions available for FDS? It sounds like there aren't. :-( Could someone from Adobe comment on whether Adobe is working on this? -- Flexcoders Mailing List FAQ:

[flexcoders] Dyamically selecting Items in a list

2006-09-19 Thread Jeremy Rottman
I am trying to dynamically select the items in a multi select list component. The list that should be selected comes back to me from my database as a comma delimited list, which I convert to an array. I am then trying to compare the array that I made from my list, against a static array of objects

[flexcoders] Flex 2 RPC SSL

2006-09-19 Thread Doug Arthur
I cannot seem to get Flex 2 Remote Objects to work over SSL, I've got a wildcard cert setup with host headers in IIS6.0 and have SSL working properly and confirmed. The problem now is when I try to make a Remote Object call. I've added the SecureAMFChannel SecureAMFEndpoint classes and thes to

Re: [flexcoders] Flex 2.0 Hosting ( Cheap / Inexpensive )

2006-09-19 Thread Brendan Meutzner
I've heard that CFDyanmics is considering it... worth posing the question to them...BrendanOn 9/19/06, Douglas McCarroll [EMAIL PROTECTED] wrote: Paul Andrews wrote: Hosting Flex isn't a problem, it's FDS that's the problem. ;-) Are there any solutions

RE: [flexcoders] Dyamically selecting Items in a list

2006-09-19 Thread Dustin Mercer
Try this What you need to do is add the index to be selected to the selectedIndices array. Here is an example, I didnt try this, but it should work. Let me know if you have problems. var licenseArray : Array = result.licenseStates.split(,); for (var i : int =

[flexcoders] Why are is the Component loader no longer caching objects?

2006-09-19 Thread Dan Diodati
All of a sudden our flex objects are not getting cached when the swf is loaded: 13:46:41,519 INFO [STDOUT] 09/19 13:46:41 INFO Cached Component Loader: component com.sf.sfv4.view.sharkfin.form.SelectReview cannot be cached.13:46:41,597 INFO [STDOUT] 09/19 13:46:41 INFO Cached Component

[flexcoders] Remote Object caching the results?

2006-09-19 Thread vuleman
Hi everyone, I have a page that makes a Remote Object call to the server. Since it's taking too long, i split it up with 2 separate remote object calls. One call will return the summary (which is really fast), while the other RO call will retrieve the detail status (longer). If i look at

[flexcoders] HistoryManagement Problem

2006-09-19 Thread Bjorn Schultheiss
Hi, I can't see what i've missed here. In this code i have a trace in saveState that nevers appears in the console panel. mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" implements="mx.managers.IHistoryManagerClient"width="400" height="100"initialize="init()"

[flexcoders] Re: What happened to getTreeNodeAt??

2006-09-19 Thread wayneposner
You really don't need to do all that. Try this: private function autoExpand():void { assemblyTree.expandChildrenOf(tree.dataProvider[0],true); } Wayne --- In flexcoders@yahoogroups.com, Darin Kohles [EMAIL PROTECTED] wrote: I encountered the same problem and wrote my own version. public

RE: [flexcoders] Flex 2 courses in Ottawa

2006-09-19 Thread David Mendels
Hi Jen, Not sure if they are on this list, but we (Adobe) have about 300 people in Ottawa and a few of them are doing great things with Flex :) Hope the class is great, do report back to the list with feedback. -David -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] UserTransaction JNDI syntax for FDS/Hibernate support

2006-09-19 Thread amalabie
I'm trying to configure the integrated JRun to use it's built-in transaction manager with Data Services. I get a Unable to access UserTransaction error. I suspect that I need to specify the JNDI parameters in jrun-resources.xml. I just need the correct syntax so that Data Services can work with

RE: [flexcoders] UserTransaction JNDI syntax for FDS/Hibernate support

2006-09-19 Thread Jeff Vroom
This error is occuring either because the JNDI lookup for the Transaction Manager is failing, or because the begin call on the UserTransaction is failing. Did you get a stack trace with that exception? You would need to turn on debug logging for the Message.* and DataService.*