RE: [flexcoders] soap-env Namespace problem

2006-12-12 Thread Peter Fein
The prefix is specified as an argument to the Namespace constructor. The Namespace variable name (I used "soapenv") does not have to be the same as the prefix. Also note the namespace operator :: comes after the . This should work: var env:XML = new XML(ENVELOPE.toString()); var soapenv:N

Re: [flexcoders] Re: Firefox - TextInput Bug

2006-12-12 Thread Yiðit Boyar
this is a known problem of new firefox. it sometimes. can not focus on the address bar and i don't think this bug is related to flash player. - Original Message From: camlinaeizerous <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, December 13, 2006 12:56:05 AM Subjec

RE: [flexcoders] Re: Need light shed on Array issue

2006-12-12 Thread Matt Chotin
I'd recommend going through with the debugger too. Step into every function so that you can make sure you see what's going on, including stepping into the binding code. I can't remember what's going on off-hand, but Doug may be right that what you're seeing is a re-assignment to the same value, s

[flexcoders] Need help intercepting a specific event for DataGrid

2006-12-12 Thread Mike Anderson
Hello All, I am trying to figure out how to intercept the event that gets broadcasted, *just before* the DataGrid accepts a Mouse-Click, which in-turn, highlights a Row. I've done things like "override functions" in the past, to accomplish similar goals of modifying built-in behaviors, but in thi

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Unfortunately, my specific example is in a much bigger project. It will take a bit of work to construct an example, and because I will be out for the better part of tomorrow, I will not get to it until thursday. But I will get you an example. Regards Hank On 12/12/06, Belinda Nambooze <[EMAIL PR

[flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-12 Thread Renaun Erickson
Patrick, The examples I created were done quick and are used as my initial test apps for AMF0/3 backends. They are very basic and do not mean to show any particular method of doing something. There are a lot of different ways of creating, calling and handling events with RemoteObject's. The in

[flexcoders] Re: How to assign dataset returned by .Net web service to Flex?

2006-12-12 Thread sdavisbscs
Hello Mike. Our company is utilizing Flex for a project and we are all new to Flex but .NET is really our specialty. I am interested in the examples you may have returning the DataSet or DataTable back from the .NET WebService. We have experienced challenges with the DataSet returned by our

RE: [flexcoders] file download doesnt work?

2006-12-12 Thread Tony Dulin
Dimitrios, import flash.net.*; Use the sendToURL(urlRequest) command. Tony D Dimitrios Gianninas <[EMAIL PROTECTED]> wrote: Yup tried that too :) I've tried GET, POST and using the servername, localhost and my direct IP, no go. If I call my servl

Re: [flexcoders] Flex Utilities available

2006-12-12 Thread Diego Guebel
Really good stuff mate, I'll give it a try cheers, Diego. On Wed, 13 Dec 2006 16:13:09 +1300, efeminella <[EMAIL PROTECTED]> wrote: > If anyone is interested I have compiled my utilites package and made > it available for other Flex developers to use as needed. > > The utils package contains c

[flexcoders] Re: file download doesnt work?

2006-12-12 Thread dubreeze2001
Dimitrios, This should work for you: import flash.net.*; var url:String; url="http://localhost:7001/billing/servlet/FileSvlt?operation=";; url +="DOWNLOAD&fileId=2"; var urlRequest:URLRequest = new URLRequest(url); sendToURL(urlRequest); Tony D --- In flexcoders@yahoogroups.com, "Dim

[flexcoders] Re: How to assign dataset returned by .Net web service to Flex?

2006-12-12 Thread sdavisbscs
Hello Mike. Our company is utilizing Flex for a project and we are all new to Flex but .NET is really our specialty. I am interested in the examples you may have returning the DataSet or DataTable back from the .NET WebService. We have experienced challenges with the DataSet returned by our

Re: [flexcoders] Flex Utilities available

2006-12-12 Thread Bjorn Schultheiss
Thanks, Looks good, Will look into the iterator pattern more. Bjorn On 13/12/2006, at 2:13 PM, efeminella wrote: If anyone is interested I have compiled my utilites package and made it available for other Flex developers to use as needed. The utils package contains common utility API's such

Re: [flexcoders] Chart inside a datagrid

2006-12-12 Thread arpan srivastava
Hi , Maybe you can send just an array of column names in the itemrenderer by setting the properties for itemrenderer and in the itemrenderer you pick out values of those column names from the data property. i suppose the values for which you are plotting the chart are in a single row. -

[flexcoders] soap-env Namespace problem

2006-12-12 Thread Shannon
This code works just fine: var envelope:XML = http://aplaud.com/ns/0.1/tts/profile"; xmlns:tf="http://aplaud.com/ns/0.1/tts/format"; xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/";> {SomeHeadXML} {SomeBodyStuff} ; var url:String = "http://my_domain/bleh.php";; var callback:Function = h

[flexcoders] accessing a checkbox in datagrid

2006-12-12 Thread jeff noyes
Im using a itemRenderer that is a checkbox. The checkbox is a component that is a seperate mxml file. Inside my datagrid, how do I determine if the checkbox is enabled?

[flexcoders] Flex Utilities available

2006-12-12 Thread efeminella
If anyone is interested I have compiled my utilites package and made it available for other Flex developers to use as needed. The utils package contains common utility API's such as various Iterators, a HashMap implementation, an Introspection package, a DeepCopy util as well as Sorting and System

RE: [flexcoders] Re: Flex and .net webservices

2006-12-12 Thread Robin Burrer
Hi Sam, Remoting is definitely a good alternative and would probably make things a bit easier. I'm not programming the .net side of things though and the guys who are working on the backend are not too keen on using a technology which is not established standards yet. I had a look at Fluor

RE: [flexcoders] file download doesnt work?

2006-12-12 Thread Dimitrios Gianninas
Yup tried that too :) I've tried GET, POST and using the servername, localhost and my direct IP, no go. If I call my servlet directly in a browser, the download works like a charm: http://localhost:7001/billing/servlet/FileSvlt?operation=DOWNLOAD&fileID=5 I'm sure its something very very small

RE: [flexcoders] Form-based auth on Websphere

2006-12-12 Thread Dimitrios Gianninas
Things to try: 1) set the remote credentials on the ro in the core app for test to see if it works 2) why have two SWFs? 3) the second swf doesnt have a credential info to pass to the server and since you locked down the RO it is failing Dimitrios Gianninas RIA Developer Optimal Payments

Re: [flexcoders] Flex vs. JSP

2006-12-12 Thread greg h
Jyoti, You might want to check out this article by one of Adobe's stellar Flex Java Integration Evangelists, Christophe Coenraets: Providing a Flex Front End to Your Struts Applications http://www.adobe.com/devnet/flex/articles/struts.html The article was published pre Flex 2. Meaning during t

[flexcoders] data being dragged

2006-12-12 Thread Yaison Alcantara
Hi coders, This is comun Drag and Drop question very important. How can i know the data being dragged?. How can i add (after the dragdrop) the data being dragged to an array collection?

Re: [flexcoders] Fade from one color to another

2006-12-12 Thread dorkie dork from dorktown
Darron, Thank you. Yes, I found your site. I was wondering if you'd notice that. ;) On 12/9/06, Dustin Mercer <[EMAIL PROTECTED]> wrote: Dorkie, Sorry I didn't get back to you earlier, been away from email. The reason that grayish color appears is because of the way I am doing the fade.

RE: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Belinda Nambooze
Hi Hank, I'm not able to reproduce the issue where selectedIndex doesn't work. Could you email me a code snippet showing the bug? Thanks, Belinda Flex QA SDK From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Tues

[flexcoders] Question on controlling DataGrid Row selections, and how to code it

2006-12-12 Thread Mike Anderson
Hello All, I have a DataGrid in which I only want to allow users to select a PARTICULAR Row when it's in "editable" mode. What I mean by this, is the DataGrid will have many entries within it's DataProvider - but in order to edit any records, the user will have to highlight a Row, and click a pro

Re: [flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-12 Thread Patrick Mineault
Nice stuff Renaun! A couple things: in the mx:RemoteObject tag you could declare an mx:method and have result and fault bound to the method and not to the service itself. Why are you using ArrayUtil.toArray in the complex example? Finally, in the BookVO class you don't need to import flash.net.reg

[flexcoders] Re: DataProvider as an Array of String

2006-12-12 Thread jmorpher03
Hi Samina, Here's a sample. Is this what you were looking for ? http://www.adobe.com/2006/mxml"; layout="absolute"> one two three four five

Re: [flexcoders] Not a flex question neccessarily... extracting SWF size with a php command

2006-12-12 Thread Rich Rodecker
getimagesize() is supposed tow ork with swfs: http://php.net/getimagesize On 12/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > > > Hi, no fan of Ajax here, is there a way to extract the swf size: > height & width, through php? Anybody done this before? > > Thanks, > Patrick > >

[flexcoders] Canceling Drag Drop

2006-12-12 Thread tnirenstein
In my code, I want to be able to cancel the drag and drop functionality if the user hits the Escape Key. I can successfully capture the fact that the user has hit Escape during the Drag and Drop sequence but once I am there, how do I cancel Drag and Drop? Thanks in advance!

Re: [flexcoders] Timeline execution speeds of embedded Flash Assets

2006-12-12 Thread Patrick Mineault
My guess is that the frame rate of your Flex app is higher than the one of the swf. Flash always uses the frame rate of the host swf to play a loaded movie. What you could do is lower stage.frameRate once you go on the 360 tab and get it back to higher value when you exit the tab or close the wind

[flexcoders] Erroneous Sandbox Error

2006-12-12 Thread iondisc
I have a flex2 swf I'm loading with SWFObject. It's a form that does a basic POST to a web form on another domain. I have a crossdomain.xml file in place with permission for the domain. It works in Firefox, Safari, and IE7 just wonderfully But in IE6 it throws a 2048 error. Sandbox security

[flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-12 Thread Renaun Erickson
Patrick, Nice! I have taken the code and created some quick examples. They can be found here: http://renaun.com/flex2/posts/AMFPHP1_9Example.html http://renaun.com/flex2/posts/AMFPHP1_9ComplexExample.html Notes: You can get the source by right clicking on the examples. It was written for PHP5

RE: [flexcoders] Re: Scrolling TileList?

2006-12-12 Thread Steve Kellogg @ Project SOC
Tim (or Anyone). I was able to get this to SORTA work, but I'm having a hard time getting it to work PERFECTLY. It looks like I need to use a combination of the MEASURED HEIGHT , and HEIGHT of the tilelist and canvas to make it work correctly, but I can't see to get it right. Does a

[flexcoders] DataProvider as an Array of String

2006-12-12 Thread Samina
I am trying to set the dataProvider of a PrintDataGrid object. I want the dataProvider set to a Array of Strings (as opposed to objects) called the reportArray. Basically I am trying to print out all the strings in an Array. I was wondering how I would be able to do that. What would my column be ca

[flexcoders] Unable to set ItemRenderer's value back to DataGrid's dataProvider

2006-12-12 Thread jmorpher03
Hi, I have a Custom ItemRenderer, which displays a TextInput or a Label based on another column's value in the DataGrid. Here's the sample for the ItemRenderer: MyItemRenderer.mxml http://www.adobe.com/2006/mxml "> In my Main.mxml , the DataGrid is as f

[flexcoders] Timeline execution speeds of embedded Flash Assets

2006-12-12 Thread shuell2000
Hey everyone, this is my first question to the list. I have recently released an Online Auto Dealer Inventory browser written in Flex 2 for several dealership websites. When viewing a single vehicle we allow them to see the vehicles gallery which includes a 360 degree spin animation. These anima

Re: [flexcoders] Debug Flash Player 9 for Intel Mac

2006-12-12 Thread aspentreemedia
I gave it another try on the download page but I get the error that I'm trying to install the PPC version and not the universal binary for Intel Macs. I guess I'll try and download Flex Builder and see if I can get the new version that way. Mike - Mike Weiland Aspen Tree Media (877

[flexcoders] Re: title window to tilewindow communication

2006-12-12 Thread wayne_badu_johnson
Hi There are many ways to do this, depending on how you have instantiated your TitleWindows. It sounds like you could communicate via the main app that spawns the titlewindows. The following might be of some help. // titleWindowCommunication.mxml http://www.adobe.com/2006/mxml"; layout="abso

Re: [flexcoders] Shuffle items in Repeater

2006-12-12 Thread Lachlan Cotter
Ah, excellent. I was trying repeater.currentIndex, but this throws an exception when used any time other than instantiating time. On 13/12/2006, at 3:56 AM, Ralf Bokelberg wrote: bringToTop( event.target.data )

RE: [flexcoders] many-to-many managed association in Hibernate destination

2006-12-12 Thread Jeff Vroom
Hi Douglas, (snip) 3. Jeff said that I should set the association properties for my filmActors destination as one-to-one. I'm guessing that this should be many-to-one, but am not sure. I've tried both it doesn't help my current problem, but I'd love a definitive answer on which this s

[flexcoders] SQL Insert operation fails silently

2006-12-12 Thread nall_daniel
My sub-form in a CF Wizard generated form is not inserted into the database. I have a purchase form with a main form and a subform (datagrid). Main form is based on a table and subform on a related table. The form was generated by using the CF Wizard in Flex Builder. For a new purchase, the cre

[flexcoders] Re: Firefox - TextInput Bug

2006-12-12 Thread camlinaeizerous
I never noticed that before but yes it is happening and it is definitely strange. --- In flexcoders@yahoogroups.com, "Jerome Clarke a.k.a sinatosk" <[EMAIL PROTECTED]> wrote: > > Ye I get the same problem too. I'm using firefox 2.0 what you using? > > http://examples.adobe.com/flex2/consulting/st

Re: [flexcoders] Re: Connect to FB2 Debugger from SDK compiled swf

2006-12-12 Thread Bjorn Schultheiss
Chris, Instead of using my build dir i place all compiled debug modules into my shell app's bin dir. I then debug the shell app in FB2 and everything works. My app is also destined for a java app server but i have so far no need to test it from a localhost address as it runs fine from file:

[flexcoders] Chart inside a datagrid

2006-12-12 Thread jnewport
Wondering if anyone has seen a tutorial or example of how to place a chart inside a dataGridColumn? I assume it would be via itemRenderer, but not sure how you would set the data property to accept multiple values. Maybe its just as easy as sending the dataGridColumn an array of values to plot on

RE: [flexcoders] Re: FDS - class cast exception - lazy loading relationship

2006-12-12 Thread Jeff Vroom
We do have a bug fix release coming out pretty soon that should have the fixes to several FDMS bugs. It won't have the fix for this problem because we found it too late unfortunately. We can also produce hotfixes for any other problems though I think that requires going through our regular

Re: [flexcoders] Firefox - TextInput Bug

2006-12-12 Thread Jerome Clarke a.k.a sinatosk
Ye I get the same problem too. I'm using firefox 2.0 what you using? http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html then just select form elements and go from there to test it :p On 12/12/06, polonycjunk <[EMAIL PROTECTED]> wrote: I tried submitting this me

[flexcoders] title window to tilewindow communication

2006-12-12 Thread bghoward3
i have an app that spawns a title window that title window spawns a 2nd titlewindow i need to call a function in the first title window from the second one and parentDocument doesnt cut it any direction appreciated thanks

Re: [flexcoders] Embedding XML document in Actionscript

2006-12-12 Thread Diego Guebel
try: I hope that helps, Diego On Wed, 13 Dec 2006 10:54:44 +1300, tobiaspatton <[EMAIL PROTECTED]> wrote: > Hello list; > > I can't do this in MXML: > > > > But I can't do this in ActionScript > > [Embed( 'Data/Summary.xml' )] > private var summary : XML > > (I get this compiler error: Emb

[flexcoders] Change styleName on selectedItem

2006-12-12 Thread Joe
Can someone please give me an example of how to change the style name of a selected item in a list.

[flexcoders] Re: Embedding XML document in Actionscript

2006-12-12 Thread tobiaspatton
Thanks Roger; I figured that out through some sneaky use of the debugger. Tobias. --- In flexcoders@yahoogroups.com, "Roger Gonzalez" <[EMAIL PROTECTED]> wrote: > > You always need to embed onto a variable of type class or string. Using > [Embed] on XML is actually an undocumented trick, I b

RE: [flexcoders] Embedding XML document in Actionscript

2006-12-12 Thread Roger Gonzalez
You always need to embed onto a variable of type class or string. Using [Embed] on XML is actually an undocumented trick, I believe, but it works something like this: [Embed('Data/Summary.xml')] private var summaryClass:Class; If I remember correctly, it creates a class with a (static?) "data"

[flexcoders] Embedding XML document in Actionscript

2006-12-12 Thread tobiaspatton
Hello list; I can't do this in MXML: But I can't do this in ActionScript [Embed( 'Data/Summary.xml' )] private var summary : XML (I get this compiler error: Embed only supported with variables of type Class or String. ) Any workarounds?

RE: [flexcoders] file download doesnt work?

2006-12-12 Thread Brian Holmes
Not Sure if this will work Dimitrios, But I seem to remember having similar issues and reading somewhere that the constructor of the Url Request expected a url as a string. var req:URLRequest = new URLRequest("http://localhost : 7001/billing/ servlet/FileSvlt ") ; req.meth

[flexcoders] Re: file download doesnt work?

2006-12-12 Thread Doug Lowder
So does: req.url = "http://localhost:7001/billing/servlet/FileSvlt";; mean that your client and server are one and the same? Does it work if you use a DNS name or IP instead of localhost? --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: > > Yup tried that

RE: [flexcoders] file download doesnt work?

2006-12-12 Thread Dimitrios Gianninas
Yup tried that too... I'm perplexed! Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy Sivec Sent: Tuesday, December 12, 2006 10:26 AM To: flexcoders@yahoogroups.com Subject: R

[flexcoders] Re: Need light shed on Array issue

2006-12-12 Thread Doug Lowder
Hi Robert, I believe that is because Array.slice() returns a new Array object, which the binding to fire when assigned to slicedRegionData.source, whereas the second version is just setting slicedRegionData.source to the same value. Change the line: slicedRegionData.source = regionData; to

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Problem solved. Someone offlist sent me a solution, which appears to be that setting selectedIndex doesnt work, but setting selectedItem does work. So the work around for the bug is dont use selectedIndex. Regards, Hank On 12/12/06, hank williams <[EMAIL PROTECTED]> wrote: > By the way, again,

[flexcoders] Re: Trying to use a mx:model populated by XML file and then as source to ArrayCollection to populate datagrid

2006-12-12 Thread Doug Lowder
That issue is because pets.xml is generating an Object when there is a single item, instead of an Array (which it will do when there ai more than one pet defined). Take a look at mx.utils.ArrayUtil.toArray() is the docs for some code that will ensure you are always dealing with an Array. - Do

Re: [flexcoders] Re: Flex and .net webservices

2006-12-12 Thread Diego Guebel
Hi Sam, I've made the same decision :D What about nullable boolean and the rest of the possible types? cheers, Diego. On Wed, 13 Dec 2006 09:51:43 +1300, Sam Shrefler <[EMAIL PROTECTED]> wrote: > Diego: > > First: Compare...I haven't used WebOrb at all past that. So my table > consists of

[flexcoders] Firefox - TextInput Bug

2006-12-12 Thread polonycjunk
I tried submitting this message around 9Am but still hasn't gone through. I'm posting this again. The Bug: Accessing a compiled .swf file containing a TextInput Box through Mozilla FireFox. Click on the address bar, click on the text input box, click on the address bar again, and then start typ

Re: [flexcoders] Re: Flex and .net webservices

2006-12-12 Thread Sam Shrefler
Diego: First: Compare...I haven't used WebOrb at all past that. So my table consists of: Free vs Paid - i've chosen free at this point. WebOrb looks like an awesome product always being updated, but ihaven't had the need/chance to use it yet Second: Nullable objects! Ah yes...something I b

Re: [flexcoders] Shuffle items in Repeater

2006-12-12 Thread joe . g . james
That's what I needed. Thank you ! Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are no

Re: [flexcoders] Re: Flex and .net webservices

2006-12-12 Thread Diego Guebel
Hi Sam, I've read your tutorial, good stuff. I've been using flourine for a while in different projects but I haven't got the chance to use weborb. As you've tried both of them, I was wondering if you can make a comparison table or a pro and cons of each of them. It would be great. BTW, how do

[flexcoders] Re: Trying to use a mx:model populated by XML file and then as source to ArrayCollection to populate datagrid

2006-12-12 Thread Christina Burnham
--- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > I missed the syntax problem but, interestingly enough, the app works > without the tag - although I'm not sure why. Tracy is > correct, the columns property is an Array so it should contain an > tag when declar

[flexcoders] Not a flex question neccessarily... extracting SWF size with a php command

2006-12-12 Thread dj
Hi, no fan of Ajax here, is there a way to extract the swf size: height & width, through php? Anybody done this before? Thanks, Patrick

Re: [flexcoders] Need light shed on Array issue

2006-12-12 Thread Robert Moss
Sorry for bumping this, just hoping someone has an idea.   Thanks, Robert>>> "Robert Moss" <[EMAIL PROTECTED]> 12/8/2006 4:47 pm >>> In Adobe's dashboard sample app, http://www.adobe.com/devnet/flex/samples/dashboard/  it assigns a charting component's dataProvider to an ArrayCollection's sour

RE: [flexcoders] FlexBuilder error: Removing Compiler Problem Markers, Marker id:3705 not found

2006-12-12 Thread Tracy Spratt
Have you tried cleaning the project? Clening removes all generated files, and is the first thing to try if you have issues like this. Go Menu, Project, Clean. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rachel Maxim Se

RE: [flexcoders] Flex vs. JSP

2006-12-12 Thread Tracy Spratt
1) Yes, the presentation layer is exactly what Flex is designed for. You can use JSP to generate the html wrapper for the Flex generated SWF if you want. This is often done if you want to pass values into the Flex app, via flashvars, when it starts up. And this is generally more flexible than

Re: Re: [flexcoders] Debug Flash Player 9 for Intel Mac

2006-12-12 Thread Greg Newman
Brian, I'm running FF2.0 but can't tell if it's a universal or not. Mozilla's site doesn't give any information on it from what I can find either. About FF doesn't tell either. When I installed I don't remember it telling me it was PPC only. On 12/12/06, Brian Dunphy <[EMAIL PROTECTED]> wrote:

RE: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Tracy Spratt
I have never used selectedIndex, because of the very flat vs hierarchical dichotomy you mentioned. I have had good results using e4x XML as the dataProvider for my trees. Whe I need to select an item programmatically, I use an e4x selection expression to find the node, then set the selectedItem

Re: [flexcoders] Re: Default value for combo boxes

2006-12-12 Thread Clint Tredway
99% of the time, thats what you want, the prompt is just there to prompt the user to choose something... and since it disappears after a choice has been made, I dont have to add logic to catch when they choose the prompt... my 2 cents On 12/12/06, Ralf Bokelberg <[EMAIL PROTECTED]> wrote: The

[flexcoders] Can I export XML from client to a new html page

2006-12-12 Thread Vikas Bhatia
>From flex I can open up a new html page. Is it possible to populate that page with the xml already present on the client. The use case is that for every grid I want to provide a csv and xml download without going back to the server to fetch the same data. What I would like to do is open up the n

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Johannes Nel
when selecting something in a tree you get a treeevent, this has a refrence to the item in the dataprovider. On 12/12/06, hank williams <[EMAIL PROTECTED]> wrote: I dont quite understand. I am trying to set the selectedItem in the tree control. There is no concept of selection in the dataprov

[flexcoders] Rendering Problems with Tree Scrolling

2006-12-12 Thread cypherhat
I was wondering if anyone has experienced the following: 1. Load a tree control with enough nodes to allow scrolling. 2. Expand a node and scroll up and down really fast with the mousewheel. 3. Rendering issues ensue: nodes fail to render and sometimes many labels seem to be drawn on top of each o

Re: [flexcoders] Animated Gif Support, why not yet? - feature request for the "Profile Page Gone Bad"

2006-12-12 Thread John Dowdell
{reduxdj} wrote: > I know this seems silly, animated gif support in flex - why not? The Adobe Flex Framework, Flex Builder IDE, and Flex Data Services run on your machines. What runs on the enduser's machine is the Adobe Flash Player. Adobe Flash Player hasn't worked directly with external an

[flexcoders] Express FDS Stops after 1 hour

2006-12-12 Thread Manohar Madhusudan Joshi
We have setup our app in FDS Express version (trial). But finding that FDS stops after 1 hour. So, it stops calling fill and create methods. Has anyone seen this behavior ? We have tomcat 5.0 and jdk 1.4.2_08

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
On 12/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: > And since it is a property that can be read and written we should be able to set the list of which items are open and which are closed. What are you talking about here? > If they intended to make it work such that setting openItems jus

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
On 12/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: > And since it is a property that can be read and written we should be able to set the list of which items are open and which are closed. What are you talking about here? > If they intended to make it work such that setting openItems jus

[flexcoders] Re: Default value for combo boxes

2006-12-12 Thread Doug Lowder
The prompt element can't be selected directly from the combobox control itself, but it _can_ be selected programmatically by setting the combobox's selectedIndex to -1 from, say, the click handler of a reset button. Sometimes that's a good fit, sometimes maybe not so good, but it's one more al

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Michael Schmalle
And since it is a property that can be read and written we should be able to set the list of which items are open and which are closed. What are you talking about here? If they intended to make it work such that setting openItems just adds to a list of open items then they should have made it

Re: [flexcoders] Flex Caching Option.

2006-12-12 Thread Ralf Bokelberg
I don't know, if the flash player supports this properties. Another method to control cacheing is to append the version to the url of the swf. Whenever you change this version string, the url changes and so the swf is downloaded again (when you load/refresh the page). Cheers, Ralf. On 12/12/06,

Re: Fw: [flexcoders] how to make my own keyboard shortcuts in flexbuilder/eclips

2006-12-12 Thread shemeshkale
i have seen this, but this not what i meant. it is a list of predefined shortcuts that come with Eclipse. i want to know how can i make my own. like i said: i want that pressing alt+k will write "koko kilshon" how? --- In flexcoders@yahoogroups.com, bora <[EMAIL PROTECTED]> wrote: > > Hello shem

[flexcoders] Flex Caching Option.

2006-12-12 Thread gubbi_manju
Allowing an Flash deployer to decide if an flex application should be placed in a disk cache created and controlled by Flash Plug-in. The only time a Flex application gets downloaded after caching is when it is updated on the server; otherwise the swf is always available for fast loading. Th

Re: [flexcoders] Re: Default value for combo boxes

2006-12-12 Thread Ralf Bokelberg
There is a little difference though. In contrast to a real element the prompt element can not be choosen by the user. Once the user has choosen something from your combo, she cannot go back to the default state. Cheers, Ralf. On 12/12/06, stephen50232 <[EMAIL PROTECTED]> wrote: --- In flexco

[flexcoders] Form-based auth on Websphere

2006-12-12 Thread baardos
Hi, I have a problem with FORM based auth on Websphere or rather what happens afterwards when I a remote object calls a destination. To give some background: The app is splitted in two applications (separate .swf files): 1. login screen 2. core app The core app is in protected area. When a user

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
By the way, again, just to be clear, the selectedIndex setter seems to inherit from ListBase.as instead of from something in the tree family. Regards, Hank On 12/12/06, hank williams <[EMAIL PROTECTED]> wrote: > > > On 12/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > I th

[flexcoders] Re: Browser to Flex Debugger connection

2006-12-12 Thread Mike Morearty
Just opening the HTML file isn't enough to begin a debugging session. When you click Flex Builder's "debug" icon, Flex Builder does two things: It launches your browser, *and* it starts listening on a particular socket, waiting for the Flash player to start talking to it. If you just open the HTM

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
On 12/12/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: Hi, I think you should take a look at the; import mx.controls.treeClasses.HierarchicalViewCursor; import mx.controls.treeClasses.HierarchicalCollectionView; classes I don't think the 'underpinnings' are incorrect. It's just conceptuall

[flexcoders] Re: Trying to use a mx:model populated by XML file and then as source to ArrayCollection to populate datagrid

2006-12-12 Thread Doug Lowder
I missed the syntax problem but, interestingly enough, the app works without the tag - although I'm not sure why. Tracy is correct, the columns property is an Array so it should contain an tag when declared in mxml. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrot

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
I dont quite understand. I am trying to set the selectedItem in the tree control. There is no concept of selection in the dataprovider so I dont know how I could set the set a selected item in the data vs the view. Selection is a view only concept. Hank On 12/12/06, Johannes Nel <[EMAIL PROTECTE

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Michael Schmalle
Hi, I think you should take a look at the; import mx.controls.treeClasses.HierarchicalViewCursor; import mx.controls.treeClasses.HierarchicalCollectionView; classes I don't think the 'underpinnings' are incorrect. It's just conceptually there are differences that present themselves in that col

RE: [flexcoders] How to draw a circle at a point in a line chart?

2006-12-12 Thread Ely Greenfield
Hi Sandeep. See my post on drawing into a chart here: http://www.quietlyscheming.com/blog/charts/easy-custom-charts/ Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sandeep Malik Sent: Monday, December 11, 2006 8:32 PM To:

Re: [flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread Johannes Nel
use .item of the treeEvent to get the model and use selectedItem in the tree to set according to model. so what i am basically saying is do your iteration over the dataprovider and code according to the data vs the view. On 12/12/06, hank williams <[EMAIL PROTECTED]> wrote: Here's the issue.

[flexcoders] Re: another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Just to elaborate on this, and to be absolutely clear, you *cannot* use selectedIndex on a tree with open leaves and get an accurate result. The reason for this is that the internal routine commitSelectedIndex uses an iterator that to find the item to select. But the iterator on the tree is exactl

[flexcoders] Re: Default value for combo boxes

2006-12-12 Thread stephen50232
--- In flexcoders@yahoogroups.com, "Clint Tredway" <[EMAIL PROTECTED]> wrote: > > there is an attribute called prompt for a combo box. use that to place that > text as the first line... now it will disappear once a selection is made. > > On 12/12/06, Van De Velde Hans <[EMAIL PROTECTED]> wrote: >

RE: [flexcoders] Re: How to disable a mouse over?

2006-12-12 Thread Van De Velde Hans
That's not exactly what I meant. I'll try to rephrase the problem : it's when a very large timeblock is "cut" by a grid line, and you roll over the grid line : then you roll off the timeline block button below and I want to stay on the timeline block button below. -Original Message-

RE: [flexcoders] Flex vs. JSP

2006-12-12 Thread Saheta, Jyoti
1) The app to build : will be java based that would communicate with web services to fetch and store data to back-end. Since the app will also include some rich components like Grid, I evaluated FLEX. So, I was looking if it is possible to replace the jsp presentation layer completely w

RE: [flexcoders] Re: problem with a "for each" loop

2006-12-12 Thread Peter Farland
When you say "all props" are you talking about completely dynamic properties (again, note that these loops only take properties dynamically added at runtime into consideration). I did a test and I only see dynamic property names or their values returned in either a "for loop" or "for each in" loo

Re: [flexcoders] Shuffle items in Repeater

2006-12-12 Thread Ralf Bokelberg
If you use binding, all you need to do is changinge the dataProvider. Here is a little example: snip http://www.adobe.com/2006/mxml"; layout="vertical" creationComplete="onCreationCom

[flexcoders] another bug in tree... or am I missing something

2006-12-12 Thread hank williams
Here's the issue. You have a tree that has certain leaves open. You get a selectedIndex from a tree lets say its 9. This means that the 10th visible slot on the screen is selected, regardless of what is or isnt open. Its 10 rows from the top of the screen. Then, you put that captured selectedInd

[flexcoders] changewatcher and XML

2006-12-12 Thread Johannes Nel
hi when i go changewatcher.canWatch(this,"someXMLObject"); the result is true. however when i do add a watch it never fires (code sample below) and when i use the getEvents method the object returned is empty. whats up with this seeming contradiction, and how does binding then work on XML object

  1   2   >