RE: [flexcoders] FDS

2007-04-16 Thread Dirk Eismann
Yes - if that could be an optional mode that would be very useful IMHO. Dirk. It sounds like this is the kind of approach you are looking for? Does anyone else think that would be useful? Jeff

[flexcoders] Debugging

2007-04-16 Thread kumarpal jain
Hi All, I want to get some general knowlege about debugging in flex how to use the debugger in FLEX and when our application is integrated with dotnet we need to debug some functionality in flex. can some one throw some light on this. Thanks Kumar

RE: [flexcoders] Inline MXML event handlers - weak reference?

2007-04-16 Thread Dirk Eismann
Alex, I think your explanation should find it's way into the product's documentation. I often wondered if inline event handlers are good or bad in terms of reference management when it comes to dynamically removing / adding MXML based components. Dirk.

[flexcoders] Flex Prelaoder: Swfloader

2007-04-16 Thread Giles Roadnight
Hi All I am building a preloader to load our large flex app - the prelaoder displays some information and has some alpha tweens. The initial way I did that was to load the main swf directly into a hidden swf loader object. When the pre-loader tweens had finished the load bar and tween objects

[flexcoders] How to manage 2 applications with different output folders in one project?

2007-04-16 Thread Sergey Kovalyov
Hi All! I have two applications: client and administrator area. They have a lot of common classes, therefore I have created two Flex Projects (MyApplication and MyApplicationAdmin) and one Flex Library Project (MyApplicationFlexLibrary) and placed all the classes they use together into the

[flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Paolo Bernardini
I found that if you try to do a for in loop for a custom class it won't work. *for* (*var* i:String *in* ItemVO*){* * trace*(ItemVO[i]); // it won't trace anything. } this is my custom class, (I've tried with other as well) * package* com.leader.store.vo { *import*

[flexcoders] [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread iiley
Hi folks: We are happy to announce new AsWing packaged version here. Hope you likes. __ *==AsWing A2 1.0=* ――�C All planned *components *finished, they are: JButton, JToggleButton, JRadioButton, JCheckBox, JPanel, JScrollBar,

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Tom Chiverton
On Sunday 15 Apr 2007, simonjpalmer wrote: 'scuse the ignorant question, but what is a CI system? In this context, 'Continuous Integration' would be my guess. Something that checks out your current code, compiles it, tests it, and then reports back. You'd generally set this up to run every

Re: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, Paolo Bernardini wrote: *for* (*var* i:String *in* ItemVO*){* * trace*(ItemVO[i]); // it won't trace anything. } Please take the *'s out next time :-) Maybe you want for (i in ItemVO){ trace ItemVO[i] } -- Tom Chiverton Helping to paradigmatically exploit

Re: [flexcoders] Debugging

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, kumarpal jain wrote: I want to get some general knowlege about debugging in flex how to use the debugger in FLEX The fdb command line debugger has a built in tutorial - start it up to see it. -- Tom Chiverton Helping to centrally aggregate six-generation experiences

Re: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread shaun
Paolo Bernardini wrote: I found that if you try to do a for in loop for a custom class it won't work. *for* (*var* i:String *in* ItemVO*){* * trace*(ItemVO[i]); // it won't trace anything. } [snip] *public* *class* ItemVO *implements* IValueObject [snip] The for in loop only

[flexcoders] updateTransform question on BubbleSeries

2007-04-16 Thread simonjpalmer
anyone know what I have to alter to force a BubbleSeries to go through updateTransform? I have a situation where a user action causes the radius of one of my bubbles to change. I trap the change and I want to cause the bubble chart to redraw itself taking into account the new radius. I can't

RE: [flexcoders] How to manage 2 applications with different output folders in one project?

2007-04-16 Thread Stembert Olivier (BIL)
In FB, I think it's not possible. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Monday, April 16, 2007 10:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to manage 2 applications with different output

[flexcoders] Re: [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, iiley [EMAIL PROTECTED] wrote: *==AsWing A3 0.8=* What's the advantage of the AsWing A3 component set over the Flex 2 components or the new Flash CS3 component set? Stefan

Re: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Paolo Bernardini
sorry for the * it was a copy and past problem. Thanks Shaun, for your explanation. I need the for in loop not to add new properties to my object, but to iterate through its properties and add them to a new object. On 16 Apr 2007 04:39:03 -0700, shaun [EMAIL PROTECTED] wrote: Paolo

[flexcoders] Re: Tree labelField and hiding leaf nodes

2007-04-16 Thread pgp.coppens
I have a similar requirement. I need to hide all leaf nodes from the tree and display them in a separate list control. Would anyone have any suggestions or pointers to get me started. Thanks, Peter --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there I have a

Re: [flexcoders] Re: [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread Michael Schmalle
The interface... I'm sure this is aimed at Java developers that know java and want a running start (I guess). Peace, Mike On 16 Apr 2007 05:12:44 -0700, Stefan Schmalhaus [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, iiley [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Tree labelField and hiding leaf nodes

2007-04-16 Thread Michael Schmalle
Hi, I answered a question like this last week, try looking into the dataDescriptor property. You can do a whole bunch of nice stuff creating your own dataDescriptor. To get you started, subclass DefaultDataDescriptor and override the getChildren() method. Only return the nodes you want

RE: [flexcoders] Re: user configuration file

2007-04-16 Thread Tracy Spratt
Or have the app load a userconfig.xml file using HTTPService. This takes only a few lines of client-side code and no server-side code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, April 12, 2007 5:29 PM

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Johannes Nel
a poroper continues integration system provides a build nuimber for you when you use cruisecontrol for example the main problem with just incrementing a file/number for your builds comes to the fore when you have multiple people working on a project. either you have to commit this number via a

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Johannes Nel
this is CI http://www.martinfowler.com/articles/continuousIntegration.html i also recomend you look at www.eyefodder.com for some tips. On 13 Apr 2007 08:03:15 -0700, bhaq1972 [EMAIL PROTECTED] wrote: Thanks Johannes. Can you suggest one. At the moment we just take the bin folder generated

[flexcoders] Coming from Laszlo background - anyone know some migration tips?

2007-04-16 Thread Andrew
I've been living in the Laszlo world for a few years now, and coming around to Flex has been pretty jarring. While the languages are somewhat similar, I keep bumping into differences and am kind lost in kinda grokking Flex. Anyone know enough about both to post a comment like It's like Laszlo only

[flexcoders] Datatip date scaling problem:

2007-04-16 Thread Zhu Haifeng
Hi, I am trying to plot a simple scalable line chart with date as x-axis and some value as y-axis. I used DateTimeAxis for the x-axis and it is able to nicely scale the labels to fit the axis width when I scale the data range. However, as the label rescales, so does the date in the datatip:

Re: [flexcoders] Debugging

2007-04-16 Thread bjorn -
What do you mean? You can debug your flex application the normal way in Flex Builder by adding breakpoints and hitting F11. As for .NET you'll have to debug that serverside in Visual Studio or whatever you use. - Bjørn On 16 Apr 2007 00:06:44 -0700, kumarpal jain [EMAIL PROTECTED] wrote:

[flexcoders] Binding ArrayCollection to HTTPService method=POST

2007-04-16 Thread tweakfreak33
Hi All, Firstly apologies for posting all this code! I have the following app that works fine, it's displays data from a mysql db in a datagrid, and also allows a user to insert a new record in the db... #START SNIP## ?xml version=1.0

[flexcoders] Question list

2007-04-16 Thread arokyzxc
hello I'm newer to flex, i have following question here: 1.is any method or document that let me easy view all api description corresponding to a specified class. 2.when i open a source file (ex: DataGrid.as) in flexBuilder,why i can't see the outline of DataGrid class in outline view?

[flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread bjorn -
Hi guys, I've got a simple text module which looks like this: ?xml version=1.0 encoding=utf-8? mx:Module xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute mx:Script ![CDATA[ import com.myapp.MyEventDispatcher; import com.myapp.MyTestEvent;

[flexcoders] ComboBox icon

2007-04-16 Thread hrund1k
Hi guys! I need to display an icon in the header of ComboBox for selected item. It's easy to display icons in dropdown list, but i can't find a way to display icon in the header for selected item. Thanks!

[flexcoders] REPOST - Checkboxes in a DataGrid

2007-04-16 Thread zzberthod
Hello, I'm using SOAP services that generate XML result. I need to feed a Flex dynamic list with the XML result. I try to use the XMLCollection AS object and I display it in a DataGrid. But I've got some problems. I just need to insert graphical elements (ex: MXML checkbox) into the list.

[flexcoders] Re: Datatip date scaling problem:

2007-04-16 Thread g_odds
Try setting your own function as the chart's datatip function. I'm pretty sure it's detailed in both the Live Docs and the language reference. --- In flexcoders@yahoogroups.com, Zhu Haifeng [EMAIL PROTECTED] wrote: Hi, I am trying to plot a simple scalable line chart with date as x-axis

Re: [flexcoders] Re: [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread iiley
Good question Stefan. :) I'm thinking about this question for a long time too, well, since I'v not seen Flash CS3 component set yet, and I'm not very familar with Flex 2 components(Although i'v read their source code a lot). Here's some guessings: 0. AsWing is Open Source, AsWing A2 is in

Re: [flexcoders] Question list

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, arokyzxc wrote: 1.is any method or document that let me easy view all api description corresponding to a specified class. Adobe's LiveDocs: http://livedocs.macromedia.com/flex/201/langref/index.html -- Tom Chiverton Helping to challengingly generate interdependent

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, bjorn - wrote: Anyone know what might cause this? Googling the error didn't help me much Any luck if you import it in your code (but don't use it) ? Or creating a dummy variable of that type ? -- Tom Chiverton Helping to carefully coordinate value-added data on:

Re: [flexcoders] Multi-axis chart

2007-04-16 Thread Mikhail Shevchuk
Anybody? I need to display several line series, but the distribution of Y values can vary very much. So, I want to show these lines neatly, and scale each of them separately. 2007/2/28, Mikhail Shevchuk [EMAIL PROTECTED]: As far as I can see, it can draw only two axis max. I need three axes,

RE: [flexcoders] Question list

2007-04-16 Thread Petro Bochan
Hi, Because it's not part of your project. Try opening any other external .as file and you'll get the same result. Cheers, Petro 2.when i open a source file (ex: DataGrid.as) in flexBuilder,why i can't see the outline of DataGrid class in outline view?

Re: [flexcoders] Re: Versioning swf files for bug reporting

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, Johannes Nel wrote: a poroper continues integration system provides a build nuimber for you when you use cruisecontrol for example So does (for instance) SVN. This doesn't help getting said number to display on screen in the Flex app though. -- Tom Chiverton Helping

Re: [flexcoders] Multi-axis chart

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, Mikhail Shevchuk wrote: I need to display several line series, but the distribution of Y values can vary very much. So, I want to show these lines neatly, and scale each of them separately. Err, yes ? So scale them (client or server-side). It's only math and a for loop.

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread bjorn -
Thanks for the tip .. I did try that already though, and it didn't make any difference. On 16 Apr 2007 06:23:20 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 16 Apr 2007, bjorn - wrote: Anyone know what might cause this? Googling the error didn't help me much Any luck if you

RE: [flexcoders] Re: Tree labelField and hiding leaf nodes

2007-04-16 Thread Peter
Thanks Mike. That works. I guess I was originally confused by the less than obvious (documented) interaction/difference between dataProvider and dataDescriptor. Peter _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Monday, April

Re: [flexcoders] REPOST - Checkboxes in a DataGrid

2007-04-16 Thread Erik Price
On 4/16/07, zzberthod [EMAIL PROTECTED] wrote: I just need to insert graphical elements (ex: MXML checkbox) into the list. Example: - The first column is a checkbox (for selection of the line) - The second is the `name' column - Third is `date'

Re: [flexcoders] Coming from Laszlo background - anyone know some migration tips?

2007-04-16 Thread Cortlandt Winters
Hi Andrew, I can offer some thoughts. Your description is pretty much on the money there. It's more formal and a bit more rigid, with both the pros and cons that come with that. One thing I can definitely suggest. Focus on As3 rather than the flex user interface framework itself at first.

[flexcoders] Re: Odd behavior when calling DataService.getItem for multiple items.

2007-04-16 Thread parkerwhirlow
Thanks Jeff this worked. This use of toString for generating a key, is this documented somewhere that I missed? If not, I'd like to request that a small paragraph be added that describes the requirements/behaviors of identity properties when used with Data-Management... are there other places I

Re: [flexcoders] Newbie - Hosting requirements

2007-04-16 Thread Kevin
There are no specific hosting requirements to serve the front end SWF files from your server. Any webserver will do that. It's the backend that you need to be concerned about, however, Flex is extremely Flexible when it comes to backend integration so there is not one answer. For

[flexcoders] JSP Tag Library - FDS 2.0.1

2007-04-16 Thread Dave Kotter
I am getting the following error using the JSP Tag Library working with FDS 2.0.1. 17:22:06,821 INFO [STDOUT] [2007-04-13 17:22:06,821] ERROR org.apache.catalina. core.ContainerBase.[jboss.web].[localhost].[/].[jsp] - Servlet.service() for ser vlet jsp threw exception

[flexcoders] dataGrid - process each item

2007-04-16 Thread darylgmyers
How can I go about processing each dataGrid item? I need to validate all items at time of update. I can walk through each item using the dataProvider but I can not find a way to know which dataGrid item to validate from just the dataProvider's information.

[flexcoders] dataGrid - process each item

2007-04-16 Thread darylgmyers
How can I go about processing each dataGrid item? I need to validate all items at time of update. I can walk through each item using the dataProvider but I can not find a way to know which dataGrid item to validate from just the dataProvider's information.

[flexcoders] Re: Help need to update datagrid value dynamically

2007-04-16 Thread Vinoth
Please give me sample code -Vinoth --- In flexcoders@yahoogroups.com, shaun etherton [EMAIL PROTECTED] wrote: Hi, Vinoth Babu wrote: Hi All, I have a datagrid, data's are from external XML file. Once .swf file is created. I changed few values in XML reopend .swf file, it's

[flexcoders] Re: [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, iiley [EMAIL PROTECTED] wrote: Good question Stefan. :) I'm not familiar with Java/Swing, so thank you very much for your comprehensive answer! I learn something new every day on this mailing list - which is just fantastic. Stefan

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread Robert Cadena
Hi Bjorn, when you load the module, what ApplicationDomain are you passing to the the IModuleInfo? and how do you construct it if you are passing it as a param? /r http://www.searchcoders.com/flex/search/module http://www.laflex.org/ - Los Angeles Flex Users Group bjorn - wrote: Thanks for

[flexcoders] Simple ComboBox Event Question

2007-04-16 Thread Patrick Lemiuex
Flex Community: click=processQuery(WhatGoesInHereToHandleThisEvent); and how do i access it in the method processQuery as as well. Thanks for your help, Patrick

Re: [flexcoders] How to manage 2 applications with different output folders in one project?

2007-04-16 Thread Clint Modien
Create 2 projects or use ant to build your flex project. On 16 Apr 2007 01:30:27 -0700, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I have two applications: client and administrator area. They have a lot of common classes, therefore I have created two Flex Projects (MyApplication and

RE: [flexcoders] Simple ComboBox Event Question

2007-04-16 Thread Alex Harui
click=processQuery(event) public function processQuery(event:MouseEvent):void { ... } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Lemiuex Sent: Monday, April 16, 2007 10:15 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] PDF Preview

2007-04-16 Thread Clint Modien
I've used the links below to display a pdf in flex. Make sure you read the comments. http://www.deitte.com/archives/2006/08/finally_updated.htm http://www.deitte.com/archives/2007/04/using_multiple.htm On 13 Apr 2007 16:33:51 -0700, Kevin [EMAIL PROTECTED] wrote: I know this has been asked

RE: [flexcoders] REPOST - Checkboxes in a DataGrid

2007-04-16 Thread Alex Harui
And there's a checkbox example here: http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende.htm l From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Price Sent: Monday, April 16, 2007 8:25 AM To:

RE: [flexcoders] for in loop dosen't work on custom class

2007-04-16 Thread Alex Harui
Check out mx.utils.ObjectUtil, especially getClassInfo From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paolo Bernardini Sent: Monday, April 16, 2007 5:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] for in loop dosen't work

RE: [flexcoders] REPOST - Checkboxes in a DataGrid

2007-04-16 Thread Tracy Spratt
Here is an example of a checkbox itemRenderer that addresses the problem you describe. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zzberthod Sent: Monday, April 16, 2007 5:27 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Re: denying GETs on .NET WSDL web service file...

2007-04-16 Thread Clint Modien
Shot in the dark, and untested, but what about using basic auth and setCredentials on the webservice? On 13 Apr 2007 13:24:57 -0700, scott_flex [EMAIL PROTECTED] wrote: tried it, instead of calling the .loadWsdl() method, i just set the wsdl property so it at least know where the service

RE: [flexcoders] Flex Prelaoder: Swfloader

2007-04-16 Thread Alex Harui
Is there a reason you couldn't subclass or customize DownloadProgressBar and specify it in the preloader option of mx:Application? If the animation slows down while the app inits, you can try incrementally creating the componets in the first screen of the app.

RE: [flexcoders] REPOST - Checkboxes in a DataGrid

2007-04-16 Thread Tracy Spratt
Oops: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=559 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, April 16, 2007 1:34 PM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Re: PDF Preview

2007-04-16 Thread Doug Lowder
Related to option 2, you can use FlashPaper: Batch Convert PDF files to FlashPaper 2 http://www.darronschall.com/weblog/archives/000250.cfm How to load FlashPaper Documents in Flex 2 http://www.darronschall.com/weblog/archives/000249.cfm --- In flexcoders@yahoogroups.com, Kevin [EMAIL

Re: [flexcoders] 360Flex vs. Adobe MAX - which would you attend?

2007-04-16 Thread Clint Modien
Save up... manage your schedule... go to both. 360 is the food. MAX is the air. ;) On 11 Apr 2007 13:24:05 -0700, Leif Wells [EMAIL PROTECTED] wrote: I believe that anyone who makes their decision to attend either 360Flex or MAX solely based upon the sessions for the event is making a

RE: [flexcoders] JSP Tag Library - FDS 2.0.1

2007-04-16 Thread Peter Farland
What JVM are you using? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave Kotter Sent: Monday, April 16, 2007 12:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] JSP Tag Library - FDS 2.0.1 I am getting the following

[flexcoders] Slightly Off Topic - AMFPHP 1.9 bug or something else is odd

2007-04-16 Thread patricklemiuex
Uncommenting out the commented line produces an error, where nothing is being returned to remoting. Any one have issues with this? foreach ($demos as $key =$props){ $value['demos'][$key] = $props;

[flexcoders] Problem using RSLs in enterprise app

2007-04-16 Thread eric_swann2000
I'm having a problem using a combination of modules/RSLs in my application. I have a project that is split into modules and RSL's. * There is a basic shell application. * There are 4 common component projects which are used by all other projects. These are set up as components referenced

[flexcoders] Looping through sorted ObjectProxy

2007-04-16 Thread bjorn -
I'm getting a sorted ObjectProxy from a server. In my debugger it looks like this: obj.stats = Object (@b90e661) [51] = Object (@b90e541) [52] = Object (@b90e361) [1] = Object (@b90e121) [2] = Object (@b90e9e1) (its week numbers linked to Objects, btw). However, when I use for() like this:

[flexcoders] Button bar enabled=false drawing oddity

2007-04-16 Thread Daniel Grace
When a button bar is enabled, the only rounded edges are the very left and the very right. I really like this look. I set my enabled = false when the buttons make no sense and *gasp* the internal buttons are now rounded on both sides! Test case: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Newbie - Hosting requirements

2007-04-16 Thread simonhamelech
As a C#/C++/SQL non-web programmer I was really wanting to use this as a learning experience (but with some practical output), rather than farming the task out to an outsourced web developer. The task in question is both a front end and back end for a web page where potential users would sign up

[flexcoders] Re: White box problem with custom scrollbar skins SOLVED

2007-04-16 Thread Paul Whitelock
I ran into the scrollbar white box problem also and this posting helped, but there is a problem with the workaround. While it will work if the scrollbars are static, if they are dynamically added and removed then an error will occur when the scrollbars are removed because they will attempt to

Re: [flexcoders] Re: Newbie - Hosting requirements

2007-04-16 Thread Kevin
sound like a easy job for PHP MySQL (although those aren't the only options.) Almost every host out there (except for the most basic) have PHP MySQL installed so you should be fine wherever you go. There are no additional requirements other than the database server-side language.

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread bjorn -
Robert, thanks for leading me onto the correct path :-) The problem has to do with security. If I set the module url to a local path (c:\..) instead of localhost, I'm able to load it. Strange error message for security issues, don't you think? Well, now it's soon on Google at the least. - Bjørn

[flexcoders] expand entire tree?

2007-04-16 Thread joshua gatcke
Does anyone know how to expand a tree on initialize? I have tried the following with no avail: private function setPageListTree():void{ pageListTree.openItems(pageListTree.dataProvider.getItemAt(1)); pageListTree.expandItem(pageListTree.dataProvider.children(), true);

[flexcoders] Re: expand entire tree?

2007-04-16 Thread Oscar Cortes
Try adding validateNow() just before calling expandChildrenOf myTree.validateNow(); Oscar Cortes http://holaflex.ocortes.com http://holaflex.ocortes.com --- In flexcoders@yahoogroups.com, joshua gatcke [EMAIL PROTECTED] wrote: Does anyone know how to

Re: [flexcoders] expand entire tree?

2007-04-16 Thread Christophe Herreman
Hi Joshua, try this: var dp:XML = tree.dataProvider[0]; tree.openItems = dp..node; Note that this code works for a dataprovider with a root node and with node as the nodenames. regards, Christophe joshua gatcke schreef: Does anyone know how to expand a tree on initialize? I have tried the

[flexcoders] Re: Correct way to determine MP3 length in ms and determine when sound starts pl

2007-04-16 Thread wdsnapper
Can anyone out there help out with this issue of determining accurately the length of an MP3 file being played? --- In flexcoders@yahoogroups.com, wdsnapper [EMAIL PROTECTED] wrote: Hello, The flash.media.Sound class has a length property that says it contains the length of the current

[flexcoders] Re: Help need to update datagrid value dynamically

2007-04-16 Thread Oscar Cortes
Try with HttpService, there are plenty of examples in the help. --- In flexcoders@yahoogroups.com, Vinoth [EMAIL PROTECTED] wrote: Please give me sample code -Vinoth --- In flexcoders@yahoogroups.com, shaun etherton shaun@ wrote: Hi, Vinoth Babu wrote: Hi All, I

RE: [flexcoders] Re: Bubble charts with only one bubble

2007-04-16 Thread Ely Greenfield
What happens if you replace the radiusAxis with a LinearAxis with baseAtZero =true? i.e., try a BubbleChart configured like this: BubbleChart radiusAxis LinearAxis / /radiusAxis Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Creating an object from a class name

2007-04-16 Thread Matt Maher
I bet this is easy. I have MainView as a string and I need to create an object of that type... for example var myObject:Object = new GetObjectFromString(MainView); I know, that line of code is a mess. Got any help for me?! Thanks!!

Re: [flexcoders] Is it possible to resize a Cursor dynamically?

2007-04-16 Thread Rick Schmitty
Thanks for the replies guys. I didnt see Troy's post at first and made a hack of a solution to use a popup window (just a SWFLoader) that followed the mouse cursor around the stage. Not exactly skinnable, but I can load different swfs for each cursor I need on demand I'm going to give Troy's

Re: [flexcoders] Newbie createPopUp problems

2007-04-16 Thread Brian Hegeman
check the Problems View for the error. Window Show View. It's in the General category. This should show what errors exist in your app. HTH On 4/16/2007 3:29 PM, fredsells wrote: I've copied various examples of using PopUpManager.createPopUp but cannot get it to work. I'm running from Eclipse

Re: [flexcoders] JSP Tag Library - FDS 2.0.1

2007-04-16 Thread Dave Kotter
It is working now. It was a user error. Sorry for the post. - Original Message From: Peter Farland [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 16, 2007 11:38:04 AM Subject: RE: [flexcoders] JSP Tag Library - FDS 2.0.1 What JVM are

[flexcoders] EnhancedButtonSkin release

2007-04-16 Thread Daniel Wabyick
Hey all ... Just wanted to let you know I released an improved version of the halo button skin, providing for much finer control over gradient colors and individual corner radii. It should be useful I posted a little blog article introducing it in more detail, and also created a mini style

[flexcoders] Bad quality after encode video to FLV

2007-04-16 Thread nowak_petr
Hi, I'm fighting with bad quality of FLV video after encoding with use of Riva FLV Encoder or ffmpeg. Imho encoding parameters are ok: bitrate 1600 kbit/s. AVI source is perfectly clear. And FLV result has visible artefacts. I tried On2 Technologies Flix PRO demo but something is wrong because

RE: [flexcoders] Problem using RSLs in enterprise app

2007-04-16 Thread Alex Harui
I believe this is a shared code problem. Try defining a state in the main app. You can read up on modules, applicationdomains, etc on my blog http://blogs.adobe.com/aharui/2007/03/modules.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: denying GETs on .NET WSDL web service file...

2007-04-16 Thread scott_flex
can try it, don't have time right this minute, but it's not something i have thought of or tried, seems like a pretty good idea. --- In flexcoders@yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: Shot in the dark, and untested, but what about using basic auth and setCredentials on the

[flexcoders] Flex accessing ColdFusion Remoting service on a seperate server?

2007-04-16 Thread Bill Brown
I am trying to get a Flex application to read a getAll() method from a ColdFusion Remoting service on a seperate server. My current (working) set-up has the Flex .swf on the same server as the ColdFusion Remoting service. I would like to host the .swf on a different server, yet still access the

Re: [flexcoders] Re: Zooming in on the x-axis of the AreaChart

2007-04-16 Thread Patrick Lemiuex
This looks great. I see how do it with binding a regular array to the chart and controlling the data length with an hslider, but what if I am binding an arrayCollection? My vo.date objects for instance. The date comes back from the database as strings like Nov 1, 2007, I am not

[flexcoders] Re: expand entire tree?

2007-04-16 Thread joshua gatcke
Thanks Christophe, that worked wonders.

Re: [flexcoders] Bad quality after encode video to FLV

2007-04-16 Thread Muzak
http://www.adobe.com/devnet/flash/articles/selecting_video_encoder.html http://www.adobe.com/devnet/flash/articles/encoding_video_04.html For best quality you'll want to use the ON2 VP6 codec which is supported by: Flash 8 video encoder (comes with Flash 8) Flix Pro Squeeze 4.3 (and

Re: [flexcoders] Bad quality after encode video to FLV

2007-04-16 Thread Thijs Triemstra | Collab
You can also try the flv encoder that comes with Flash 8 Pro, you can download a trial on adobe.com.. That one also does On2 and never broke down here. I never tried the flix pro demo but heard alot of people complaning about it.. Thijs On Apr 16, 2007, at 11:27 PM, nowak_petr wrote:

Re: [flexcoders] Re: Zooming in on the x-axis of the AreaChart - Solved

2007-04-16 Thread Patrick Lemiuex
After a few minutes I got this working It's as making a temporary array collection and looping through the hSlider max value and then setting the dataprovider of my area chart to the new copy of my array collection! On Apr 16, 2007, at 3:25 PM, Patrick Lemiuex wrote: This looks great.

[flexcoders] Need advice on which Method to Override inside DataGrid...

2007-04-16 Thread Mike Anderson
Hello All, I have a DataGrid in which I can only allow the user to edit ONE Row at a time, until they save the Data. Right now, I am using a Right-Click ContextMenu - so when they hover over a specific record on the DataGrid, they can select the Edit menu option, and they can then edit those

[flexcoders] Re: RangeError on SWFLoader

2007-04-16 Thread Michelle Grigg
I had looked into that... but for some reason it didn't really click to use the IOError event. Doi. Thanks for the pointer :) --- In flexcoders@yahoogroups.com, John Mark Hawley [EMAIL PROTECTED] wrote: SWFLoader::load() is an asynchronous call, so you're never going to be able to catch the

[flexcoders] -extern compiler option for AS3 project

2007-04-16 Thread pet.theory
Hi, I'm exploring the compiler options for an AS3 project in which parentSWF loads childSWF. for compiling childSWF: -load-externs=parentSWFClasses.xml (the link report) applied to childSWF works great (with this exception: a grandchildSWF loaded into childSWF does not seem to inherit the

RE: [flexcoders] Problem using RSLs in enterprise app

2007-04-16 Thread Eric Swann
Can you be more specific about the term shared code problem? Thanks. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Monday, April 16, 2007 4:36 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Problem using RSLs in enterprise app I

[flexcoders] Re: RangeError on SWFLoader

2007-04-16 Thread Michelle Grigg
Okay, I stand corrected. I added an error event to the swfloader, and the RangeError STILL occurred. I'm really starting to get ticked off now :-/ --- In flexcoders@yahoogroups.com, John Mark Hawley [EMAIL PROTECTED] wrote: SWFLoader::load() is an asynchronous call, so you're never going to

[flexcoders] Datagrid selection enabled only on first column

2007-04-16 Thread Christian Chua
Hello. Is there a way to tell the DataGrid component to trigger selection only on the first column ? The default behavior is that clicking anywhere on the row selects the row. Thanks, Christian

[flexcoders] Can someone please help me? Error message *No Disk*

2007-04-16 Thread Matthew Hartman
Can someone please help me? When I try and compile or debug an application through Flex Builder 2, I get an error message with a title: Windows - No Disk and the message: There is no disk in the drive. Please insert a disk into the drive. I have tried un-installing FB2 and re-installing and

[flexcoders] looking for elegent solution: ComboBox in Grid

2007-04-16 Thread boy_trike
And the requiremens are Ability to Edit. Display the corrent string on the way in. After Edit, update the ArrayCollection The DATA file contains integers, 1, 10, 12, 100, 100 These map to strings: E, X, D, C,M. I have tried with a custom inline component but it seems very cludgy. Who has

Re: [flexcoders] Looping through sorted ObjectProxy

2007-04-16 Thread Bjorn Schultheiss
Hey Bjørn, for in loops in reverse. for each should give you what you need. regards, Bjorn On 17/04/2007, at 5:11 AM, bjorn - wrote: I'm getting a sorted ObjectProxy from a server. In my debugger it looks like this: obj.stats = Object (@b90e661) [51] = Object (@b90e541) [52] =

RE: [flexcoders] Datagrid selection enabled only on first column

2007-04-16 Thread Alex Harui
There is no flag or option. You can subclass, override mouseDownHandler and bail out if something you don't like got pressed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christian Chua Sent: Monday, April 16, 2007 4:20 PM To:

  1   2   >