RE: [flexcoders] Flash player is not a debugger?

2006-06-28 Thread Jason Hawryluk
Same problem. Are you on a local other then US ? It does work in FireFox but not in IE. Jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Jean-Luc ESSEREnvoyé: mercredi 28 juin 2006 16:14À: flexcoders@yahoogroups.comObjet:

Re: [flexcoders] Flex 2 final, Cairngorm ServiceLocator/Delegate implementation?

2006-06-28 Thread Jean-Luc ESSER
Hello Benoit, I've been playing around this matter all day long ;) You'll have to type your onResult and onFault to * instead of OnXXX, and cast your event when declaring your var myEvent = CAST(event.result); You actually drop the call (event.call.result) which is not defined in rpc

Re: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Jean-Luc ESSER
I just got it to work : Download uninstaller from adobe site : http://www.adobe.com/shockwave/download/alternates/ Then launch both activeX and normal version installers from program files flex player debug Works on both ie and firefox. JL - Original Message - From:

[flexcoders] Re: Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-28 Thread djbrown_rotonews
I added a collectionChange event to my XMLListCollection (that's the dataProvider for the grid) as follows: public function preserveScrollPosition(event:CollectionEvent):void { var prevIndex:int = this.dgDelays.verticalScrollPosition; trace(prevIndex =

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Pan Troglodytes
Even without trying 2.0 final yet, I would strongly urge you not to upgrade your main flex beta environment. Install it on a separate computer, spend about and hour or two on just seeing what has changed. If it takes longer, you're probably best off not doing it. I think that's the best advice

Re: [flexcoders] To implement Master Detail Datagrid in Flex

2006-06-28 Thread Jeremy Lu
Item renderers and view state will serve you will on this, check them in the doc, there are plenty samples in it. Ps. But performance may be a risk, if there are too many nested Datagrids. Jeremy. On 6/28/06, Yasovardhan Babu [EMAIL PROTECTED] wrote: Hi, We

[flexcoders] Flex 2 Final - ModelLocator Interface - not found!

2006-06-28 Thread slangeberg
This code: public class ModelLocator implements com.adobe.cairngorm.model.ModelLocator { ... } yields the following compile error: 1045: Interface ModelLocator was not found. Which doesn't make sense. I can view the source for the ModelLocator interface AND everything else is working from

Re: [flexcoders] Sum Column in datagrid

2006-06-28 Thread Clint Tredway
most likely you would need to make an item renderer and have it sum those fields and display the result in the final column.On 6/28/06, Torey Maerz [EMAIL PROTECTED] wrote: What is the best way to add a column in a datagrid that is a sum of other columns in the

RE: [flexcoders] Flex 2 final, Cairngorm ServiceLocator/Delegate implementation?

2006-06-28 Thread Benoit Hediard
OK, don't know what I did wrong, but changing event.call to event.token insolve the issue... ;) Benoit Hediard De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Benoit HediardEnvoyé: mercredi 28 juin 2006 16:39À: flexcoders@yahoogroups.comObjet: [flexcoders] Flex 2

[flexcoders] Reusing code blocks

2006-06-28 Thread mthielman11
Ok I have a MXML file that has 3 states. All of them have one coommon canvas in common that holds an accordian. It should look the same in all 3 states. Is there a way to only define the accordian (and canvas) container once and have it appear on all thre states?? Right now in the code

[flexcoders] cornerEadius

2006-06-28 Thread hank williams
I am trying to apply cornerradius fields to a variety of UIComponents like forms vboxes and canvases. I have not been able to get it to actually show rounded corners, and I am wondering what the trick is I am missing, or if it only applies to certain types of objects. ThanksHank __._,_.___

RE: [SPAM] Re: [flexcoders] Adobe Developer Week recordings

2006-06-28 Thread Tolulope Olonade
For people like me with SLOW Bandwidths can we get downloadble video links??? Thanks From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hasan OtuomeSent: Wednesday, June 28, 2006 02:35 PMTo: flexcoders@yahoogroups.comSubject: [SPAM] Re: [flexcoders] Adobe

RE: [flexcoders] Flash player is not a debugger?

2006-06-28 Thread Daniel Tuppeny
Nope, it didn't. Nothing seems to be working :( This doesn't happen on another machine here that hasn't had the beta though, so I'm sure it's left something around! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason HawrylukSent: 28 June 2006 15:23To:

RE: [flexcoders] Camera Vs Scanner in Flex

2006-06-28 Thread Andrew Trice
Nope, Ive tried many times. You might want to look into interacting with a JAVA applet that interacts with the scanner for you. Check out jtwain. There might be others out there also. -Andy _ Andrew Trice Cynergy Systems, Inc.

RE: [flexcoders] Reusing code blocks

2006-06-28 Thread Mac Martine
Add the common Canvas to a base state. Then create two more states, and in the Create States dialog, choose Based on Base State. Your new state will then include all the components as your base state until you make changes to that state From: flexcoders@yahoogroups.com

Re: [flexcoders] Flex 2 Final - ModelLocator Interface - not found!

2006-06-28 Thread Tom Chiverton
Also, call your instance of ModelLocator something else. This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose

RE: [flexcoders] Flex 2 final, Cairngorm ServiceLocator/Delegate implementation?

2006-06-28 Thread Peter Farland
Irrespective of Cairngorm, in addition to the property name changing from call to token, note that FaultEvent and ResultEvent tokens are strongly typed as the dynamic type mx.rpc.AsyncToken Note that this class now allows multiple responders, see documentation for

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Ralf Bokelberg
We expect mid size apps to migrate costs us one or two days. Six days should be fine then. But if you don't really need it, i wouldn't take the risk of loosing 5 month. Cheers,Ralf. On 6/28/06, Sonja Duijvesteijn [EMAIL PROTECTED] wrote: Hi all,I've been working on a fairly large application

Re: [flexcoders] Flex 2 Final - ModelLocator Interface - not found!

2006-06-28 Thread Tom Chiverton
On Wednesday 28 June 2006 15:56, slangeberg wrote: 1045: Interface ModelLocator was not found. What classes are you importing ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread David Clark
Just a couple of things:Final seems to work side by side with beta3.Final managed to switch to my beta3 workspace.All of my beta3 projects (small test projects) work with Final.I believe that there are no change log notes indicating changes between beta3 and Final. Also: there is at least one

RE: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Daniel Tuppeny
That didn't work for me :( From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jean-Luc ESSERSent: 28 June 2006 16:10To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Flash player is not a debugger? I just got it to work : Download uninstaller from adobe

RE: [flexcoders] Expand all items of a tree

2006-06-28 Thread Mac Martine
(20060628) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

[flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Thomas Rühl -akitogo-
Hello list, is there a way to intelligent refactor a project? Like moving class files around or renaming packages with FlexBuilder maintaining the imports and code fragments as it is in Java projects for example? I mean, this is most likely a common and important task. I can't imagine to

RE: [flexcoders] install Flex Data Services 2 Beta 3 as a J2EE web application: JONAS

2006-06-28 Thread HOUMANI Nawal RD-BIZZ-ISS
I use the version 4.6. I resolved the problem javax.naming.NamingException by changing the configuration of JMS destination and specially the JNDI context for the server in flex-message-service.xml but I had another problem caused by a NullPointerException I figured it by changing the

Re: [flexcoders] Flash player is not a debugger?

2006-06-28 Thread Phil Marston
debugging away fine here - but never tried the fp9 install only Flex builder install Daniel Tuppeny wrote: I'm still having issues too. I tried uninstalling the v9 player and installing the debug version from FlexBuilder\players\debug. Then it wouldn't run at all (said I had

Re: [flexcoders] cornerEadius

2006-06-28 Thread David Clark
mx:Canvas x=44 y=34 width=200 height=200 borderStyle=solid cornerRadius=10 /mx:Canvasnote case - MXML is case sensitive -- davidMany people die at twenty five and aren't buried until they are seventy five. - Benjamin Franklin __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Ralf Bokelberg
Unfortunately not yet. Hopefully the next versions of builder will provide us with the refactoring possibilities we all know from Eclipse JDT or Visual Studio. Cheers, Ralf. On 6/28/06, Thomas Rühl -akitogo- [EMAIL PROTECTED] wrote: Hello list, is there a way to intelligent refactor a

Re: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Tom Chiverton
On Wednesday 28 June 2006 16:24, Thomas Rühl -akitogo- wrote: is there a way to intelligent refactor a project? Like moving class There *should* be, because the underlying Eclipse supports this. I imagine it'll be in the next revision. -- Tom Chiverton

RE: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Jason Hawryluk
Me niether :( -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Daniel TuppenyEnvoy: mercredi 28 juin 2006 17:31: flexcoders@yahoogroups.comObjet: RE: [flexcoders] Re: Flash player is not a debugger? That didn't work for

Re: [flexcoders] Reusing code blocks

2006-06-28 Thread Darron J. Schall
Yes, through the concept of base states. Build a state that has the components you want shared between multiple sub-states, then when you add a new state in Flex Builder change the Based On drop down to be the state that contains the Canvas and Accordian. -d mthielman11 wrote: Ok I have a

[flexcoders] Re: Sum Column in datagrid

2006-06-28 Thread Doug Lowder
You can specify a function for the sum column that computes the value. Have a look at the labelFunction property of the DataGridColumn class in the docs. Doug --- In flexcoders@yahoogroups.com, Torey Maerz [EMAIL PROTECTED] wrote: What is the best way to add a column in a datagrid that is

RE: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Dirk Eismann
Not yet. But that's the good thing about Flex Builder 2 being based on Eclipse: we can expect *lots* of neat additions/plugins/fragments for FB2 in the near future :) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Rühl

Re: [flexcoders] Camera Vs Scanner in Flex

2006-06-28 Thread judah
http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform tinywhistles wrote: Hi Like Camera.GetCamera() to read images from a locally-attached camera, is there a similar way to read images from a Scanner? Any clues? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] cornerEadius

2006-06-28 Thread hank williams
Thanks much . it was not having borderStyle set. Just adding that made it work.HankOn 6/28/06, David Clark [EMAIL PROTECTED] wrote: mx:Canvas x=44 y=34 width=200 height=200 borderStyle=solid cornerRadius=10 /mx:Canvasnote case - MXML is case sensitive -- davidMany people die at twenty five

[flexcoders] Re: Cairngorm Flex Data Services

2006-06-28 Thread joao_m_fernandes
Steven, Is the Cairngorm version from labs, the one you're using with FDS or it still an internal version that you plan to launch in the future? Regards, João Fernandes --- In flexcoders@yahoogroups.com, Steven Webster [EMAIL PROTECTED] wrote: Joao, You ask some excellent questions.

[flexcoders] Re: I've got issues..

2006-06-28 Thread Doug Lowder
You have a typo. This line: if ( ((NameBox.text.length3) || (NameBox.text = Enter Name Here)) (PhoneBox.text.length 11) ) has (NameBox.text = Enter Name Here), which is an assignment statement. Change the = to ==. Doug --- In flexcoders@yahoogroups.com, Tolulope Olonade [EMAIL

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Tom Chiverton
On Wednesday 28 June 2006 14:38, Sonja Duijvesteijn wrote: If things don't work next week it means I'll fail, won't graduate and have to do my internship all over, costing 5 months. Done a basic risk/benefit here, and the upshot is stick with the beta :-) Upgrading to release gets you nothing,

[flexcoders] what is the equavalent of Validator hasErrors method in Flex 1.5 to Flex 2.0

2006-06-28 Thread santharao246
Hi All what is the equavalent of hasErrors() method in Validator class in flex 1.5 to Flex 2.0 Validator class and also what is the equavlent of validationError() method in Validator class in flex 1.5 to Flex 2.0 Validator class other wise how to change the code for that equvalent

[flexcoders] Re: Large scale app, how to proceed?

2006-06-28 Thread mthielman11
Thanks guys. It is really kind of overwelming. I can do HTML/CSS stuff with my eyes shut, but I am just so lost with even simple things right now in flex. One thing that has concerned me is speed, but the new player seems to be a little faster. I don't understand the cold fusion part. If

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Joshua Garnett
One thing to keep in mind is that F2B3 code doesn't seem to run the same in the newly released Flash 9 Player. I just loaded up my F2B3 app with the new Flash Player and it doesn't work the same. The UI colors are off and I can't even load up all of my views in the code. So make sure you bundle

[flexcoders] parse XML and get unknow tag as String

2006-06-28 Thread iloirdnam
Hello, I've got an XML file with unknow structure like WhoRU id='50' othertag... With the following e4x expression, I can get an XMLList with WhoRU tag as first element : [EMAIL PROTECTED]() How can i isolate the WhoRU tag to compare it to other string? Thanks, M. Iloirdna

RE: [flexcoders] Testing Flex 2.0 with QTP 9

2006-06-28 Thread Matt Horn
Deepika, there is a special beta program for Flex/QTP support. Will contact you offlist with details. matt horn flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Deepika Sent: Wednesday, June 28, 2006 12:39 AM To:

[flexcoders] Upgrade issues from beta3 - rtm solved

2006-06-28 Thread Daniel Tuppeny
I've solved some of the weird issues I had when moving to the RTM version, like the dataTips not working... Although I definately had the right compilers etc., there were a load of .as files in (workspace)\.metadata left over from the beta. A clean workspace seems to work fine. Still

RE: [flexcoders] Expand all items of a tree

2006-06-28 Thread Jonas Windey
); , teeTest.expandChildrenOf(treeTest.firstVisibleItem), but no luck. Who helps? Jonas __ NOD32 1.1629 (20060628) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __ NOD32 1.1630 (20060628) Information __ This message

RE: [flexcoders] install Flex Data Services 2 Beta 3 as a J2EE web application: JONAS

2006-06-28 Thread Cathy Reilly
Great! Adding this note for others who may be encountering similar issues - To simplify configuration, if FDS and your JMStopics/queues/destinationsare running in the same enterprise application, you should not need to specify the initial-context-environment for your destination. FDS

[flexcoders] Upload not working in Windows

2006-06-28 Thread Marcus Bergstrom
When using the FileReference in Flex 2 final, I get an IOError followed by an HTTPError 403, when trying to upload using Windows. It's the same for Internet Explorer and FireFox. However, it works great on a mac, using both Safari and FireFox. I can't find any information regarding this problem. I

RE: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Maerz, Torey
I had this problem a couple days ago too. Here is how I fixed it. Use add remove programs to Uninstall all flash and shockwave players Uninstall Flex builder Reinstall flexbuilder select the option to install IE, Netscape and Firefox player. From:

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Tom Ortega
Custom Item renderers are a bit funky. There's a border now around the itemrenderers.Popup window syntax that worked in Beta 3 no longer compile in final release.That's two differences I found in the 5 minutes I looked at it. I'd say wait, especially since so much rides on everything working.

Re: [flexcoders] FlexBuilder refactoring capabilities

2006-06-28 Thread Thomas Rühl -akitogo-
Great, thanks for your opinions. Good to be not the only one who's missing something there. And for the germans: Da hab' ich ja schon wieder was zum drauf freuen ;) Cheers, Thomas Dirk Eismann wrote: Not yet. But that's the good thing about Flex Builder 2 being based on Eclipse: we

[flexcoders] Final lost innerRadius on Pie Charts

2006-06-28 Thread Chaitu Vadlapatla
The innerRadius which helped me create a doughnut chart using a piechart doesnt work any more. Is this a bug in the final?. This was perfectly working before and after the new install just wont work. Thanks Chaitu. __._,_.___ -- Flexcoders Mailing List FAQ:

RE: SPAM-LOW: RE: [flexcoders] Re: Flex 2 released tomorrow

2006-06-28 Thread Ian Welsh
Any information on the upgrade path for licensed Flex 1.5 users with maintenance nothing in the FAQ. Regards Ian From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: 28 June 2006 08:00 To: [EMAIL PROTECTED] Subject: SPAM-LOW: RE:

RE: [flexcoders] Final lost innerRadius on Pie Charts

2006-06-28 Thread Ely Greenfield
Hi Chaitu. Between Beta3 and final, the radius-related properties on PieSeries changed to be 0-1 instead of 0-100. Can you verify you're setting it to something less than 1? Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chaitu VadlapatlaSent:

[flexcoders] help with error

2006-06-28 Thread Clint Tredway
I took over a project and I am not sure why I am getting this error.When I run this app, I get this error Default decoder could not decode result - what the heck does that mean... what decoder? -- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the

Re: [flexcoders] Expand all items of a tree

2006-06-28 Thread David Clark
Seems to work for me. If you change the code for expand() in Martine's example to : private function expand():void { myTree.selectedIndex = 0; myTree.expandChildrenOf(myTree.selectedItem , true); }It works without clicking on the tree first...-- davidMany people die at twenty five and aren't

RE: [flexcoders] Final lost innerRadius on Pie Charts

2006-06-28 Thread Matt Horn
innerRadius still works, it's just that it is now a percentage-based number rather than an absolute number. Range 0 to 1 (for 0 to 100%). For a hole 1/2 the size of the chart, change it to something like: mx:PieChart id=pie dataProvider={expenses} showDataTips=true innerRadius=.5

[flexcoders] Flex 2 Final : panel backgroundAlpha style change?

2006-06-28 Thread Benoit Hediard
There is a change in the styling of panels with the alpha transparency. In Flex 2 beta, setting the backgroundAlpha to 0.4 (same as defaultborderAlpha)allowed you to have completely transparent panels. In Flex 2 final, setting the backgroundAlpha to 0.4 does not perform the same

Re: [flexcoders] Shouldn't we use Flex to built website

2006-06-28 Thread Jignesh Dodiya
Thank Jennifer, I like ur way of thinking how do you draw the line between a website and a web application? Jignesh Dodiya On 6/28/06, Jennifer Larkin [EMAIL PROTECTED] wrote: On 6/24/06, Jignesh M. Dodiya [EMAIL PROTECTED] wrote: Read somewhere that flex should be used for web

Re: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Clint Tredway
me nietherOn 6/28/06, Jason Hawryluk [EMAIL PROTECTED] wrote: Me niether :( -Message d'origine-De: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com]De la part de Daniel TuppenyEnvoyé: mercredi 28 juin 2006 17:31À:

RE: [flexcoders] Upload not working in Windows

2006-06-28 Thread Benoit Hediard
It's working here on Windows on Firefox with Flash Player 9.0.15 (coming with Flex Builder 2). No changes compared to beta3. Sorry... ;) Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Marcus Bergstrom Envoyé : mercredi 28 juin

RE: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Matt Chotin
Make sure your browsers are all closed.  The reason you have to uninstall actively is because of some of the security fixes we put in a few months ago.  Going between official r players that dont use the express install often requires an uninstall. Matt From:

[flexcoders] changes between beta3 and release

2006-06-28 Thread Matt Chotin
http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_2_changes.c fm Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM

[flexcoders] beta 3 to rtm changes

2006-06-28 Thread m_chotin
Not sure why this hasn't posted yet via email, trying from web interface. http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_2_changes.cfm Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo! Groups email.

[flexcoders] [Flex2 final release] FlexBuilder 2 install Flash Player 9.0.15??

2006-06-28 Thread Carlos Rovira
Hi,I Think this is a clear bug in the Flex Builder 2 installer.The final version is 9.0.16, but Flex Builder 2 is installing 9.0.15?Please, could someone at Adobe confirm this?(Another point is that someone told me about AMF0 not working again, I proced to test it asap and confirm to this list)

[flexcoders] Invalid server root

2006-06-28 Thread nag.flex
Hi Error: Invalid server root. flex-config.xml or flex-enterprise-services.xml must exist in the WEB-INF/flex folder within the server root. Trying to create flex data services project with Weblogic8.1 as the j2ee server, but am geting the above error in the screen where i point to the root of

Re: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Clint Tredway
I got mine to work.. Uninstalled the players. uninstalled FB2... reinstalled FB2, installed the players.. that worked...On 6/28/06, Maerz, Torey [EMAIL PROTECTED] wrote: I had this problem a couple days ago too. Here is how I fixed it. Use add remove

AW: [flexcoders] Re: Flash player is not a debugger?

2006-06-28 Thread Harald Dehn
me neither... :-( Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Daniel TuppenyGesendet: Mittwoch, 28. Juni 2006 17:31An: flexcoders@yahoogroups.comBetreff: RE: [flexcoders] Re: Flash player is not a debugger? That didn't work for me :( From:

[flexcoders] flex 2 swf loaded into existing swf?

2006-06-28 Thread Tom Versweyveld | VERSO
Hi all, Id like to convert my current as2 app to as3/flex2. The frontend is a lightweight interface, and the backend a form based app, something ideally to be converted to flex2. The problem is: flex 2 has a footprint that is too large (150kb+ or so?) for the frontend. Hence the

[flexcoders] Re: [flex2dev] Object type Coercion error.

2006-06-28 Thread aejaz_98
Hi Ian, I also encountered the same problem with Beta 3 it seemed like a bug to not be able to use a custom component inside a repeater. I also arrived at the same solution as you i.e. not use a custom component use Flex components only. May be this has been fixed in the released version, I

RE: [flexcoders] Flex 2.0 final: Flash player version check?

2006-06-28 Thread Matt Chotin
an automatic plugin upgrade, since that was the only thing that kept us from using Flex 2.0 in a live application. Any tips? Jonas __ NOD32 1.1629 (20060628) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

Re: [flexcoders] Re: [flex2dev] Object type Coercion error.

2006-06-28 Thread Douglas Knudsen
it is not a problem to use repeaters and custom components AFAIK. I will note that sometimes you need to create your own getter/setter methods for use. I don't thinks that's the issue with Ian though, but could be. DK On 6/28/06, aejaz_98 [EMAIL PROTECTED] wrote: Hi Ian, I also encountered

RE: [flexcoders] [Flex2 final release] FlexBuilder 2 install Flash Player 9.0.15??

2006-06-28 Thread Matt Chotin
We shipped the r15 debugger player with the SDK and FB. The release player from the website (non-debugger) is r16. There is only one bug fix that we put in the r16 and it really shouldnt affect anyone doing normal work. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] [Flex2 final release] FlexBuilder 2 install Flash Player 9.0.15??

2006-06-28 Thread Sho Kuwamoto
Hi folks. Flex Builder installs the version of the player that allows the debugger to work. The correct version for the debugger player is 9.0.15. The discrepancy between the debugger and standard version numbers occurred because we fixed some last minute player bugs that didn't need to

RE: [flexcoders] Re: Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-28 Thread Deepa Subramaniam
Im sorry, I totally misspoke. I meant to say RESET in my explanation below. When your collection is filled with new data after a fill() call to your DataService, the component bound to that collection will receive a CollectionEvent with kind = RESET. Internally, we re-populate the

Re: [flexcoders] [Flex2 final release] FlexBuilder 2 install Flash Player 9.0.15??

2006-06-28 Thread Carlos Rovira
Thanks Matt, Just curious, could you provide more info about that bug fixed in order to be alert?Thanks.C.On 6/28/06, Matt Chotin [EMAIL PROTECTED] wrote: We shipped the r15 debugger player with the SDK and FB. The release player from the website

[flexcoders] Generate sound

2006-06-28 Thread David Clark
Anyone know if it is possible to generate sound / tones from flash / flex? Something like a beep function to play a sound of a certain frequency, though not by loading a sound file.Thanks-- davidMany people die at twenty five and aren't buried until they are seventy five. - Benjamin Franklin

RE: [flexcoders] Re: [flex2dev] Object type Coercion error.

2006-06-28 Thread Ian Skinner
Thanks, it is good to know I am not alone. I will give the final a chance, once I have my basic trial concept finished. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C

RE: [flexcoders] Re: [flex2dev] Object type Coercion error.

2006-06-28 Thread Ian Skinner
it is not a problem to use repeaters and custom components AFAIK. I will note that sometimes you need to create your own getter/setter methods for use. I don't thinks that's the issue with Ian though, but could be. DK I suspect it was my latest problem. Because once I changed my

[flexcoders] What is the difference between versions of Flex Data Services

2006-06-28 Thread hank williams
I understand there is a free version of fds, and 6k version, and a 20k version of fds. But I cant find any detailed info about this on the website. One of the key questions I have is what is the difference between the free version and the 6k version. Supposedly the free version will only allow

Re: [flexcoders] beta 3 to rtm changes

2006-06-28 Thread David Clark
Is there going to be a document Flex 1.5 to Flex 2.0 changes that summarises all of the changes between versions?On 6/28/06, m_chotin [EMAIL PROTECTED] wrote: Not sure why this hasn't posted yet via email, trying from web interface.

[flexcoders] Flex final -- CF remoting issue

2006-06-28 Thread sufibaba
Hi All, I am upgrading to Flex final with Cairgorm and Coldfusion remoting. So far the App is firing the event to the remoting and I can see this in Service Capture. I am getting a problem with the returned data from Coldfusion. = Service capture Fault response ===

[flexcoders] Re: Go!

2006-06-28 Thread Tim Hoff
Looks like I'm a little late to the party. But, I'd like to add my thanks and love as well. Thanks to the entire Adobe team for your, above and beyond, support throughout the beta phase of Flex. Here we go! -TH --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Well

RE: [flexcoders] Beta 3- RTM Changes?

2006-06-28 Thread Ely Greenfield
That's correct. E. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel TuppenySent: Wednesday, June 28, 2006 4:17 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Beta 3- RTM Changes? Specifically, there doesn't seem to be a

Re: [flexcoders] Re: Go!

2006-06-28 Thread Jignesh Dodiya
Enjoyee On 6/29/06, Tim Hoff [EMAIL PROTECTED] wrote: Looks like I'm a little late to the party. But, I'd like to add my thanks and love as well. Thanks to the entire Adobe team for your, above and beyond, support throughout the beta phase of Flex. Here we go! -TH --- In

RE: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-28 Thread Dirk Eismann
The free one has no concurrent user limit - it's all up to your 1 CPU and how much it can handle. If you run a beefy app (not just using proxying but Data Management Services and Messaging etc.) then I bet it will die before you reach the 100 :) Dirk. -Original Message- From:

Re: [flexcoders] switching from beta 3 to the real thing?

2006-06-28 Thread Sonja Duijvesteijn
Thank you everyone for your insights in this. I will just stick with the beta for now and make sure to bundle it with the beta of the flashplayer when it's finished. I did expect this to be the outcome, but in a perfect world everything would still work , just better (; Just thought I'd check

[flexcoders] Re: PAIN - Debugging ColdFusion CFC Flex service call

2006-06-28 Thread Erich Cervantez
Thanks Shannon. I'll give SeeFusion a try, although the 2-hour trial time limit seems a little silly. The Flash 7 Trace Viewer didn't really work at all for me...perhaps it was due to the fact I'm running Flash 8. Erich --- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote:

Re: [flexcoders] Upload not working in Windows

2006-06-28 Thread mquickform
Hi Benoit, Thanks for your reply. There is definetly something fishy going on here though. Any chance you could show me the code you are using for the test? Its not good when something works on one platform and not the other. Thanks, M. --- -Original Message- From: Benoit Hediard

RE: [flexcoders] Shouldn't we use Flex to built website

2006-06-28 Thread Ted Patrick
I need to post a few examples but you can use Flex as a very powerful templating engine for large content sites. I am evaluating a technique that provides seamless search engine support, restful urls (del.icio.us), rich presentation, and API RIA like interactivity. Basically you have 1 Flex SWF

[flexcoders] Flex data services - Is it needed

2006-06-28 Thread flxcoder
Hi all, I am trying to understand how I should use Flex. I need to build a multi-screen flex app that would retrieve data from a java app server running my app on Spring. The spring app will return XML. This XML can be consumed by HTTPService e4x module and displayed on the screen. I would

Re: [flexcoders] Flash player is not a debugger?

2006-06-28 Thread Phil Marston
I've had the alpha and tall the betas and have no prob with Flex 2 final - what I haven't done at any stage is download the plugin (except for what comes with the Flex installer of course). Daniel Tuppeny wrote: Nope, it didn't. Nothing seems to be working :( This doesn't

[flexcoders] Re: Shouldn't we use Flex to built website

2006-06-28 Thread sleekdigital
I agree that the line between web site and web app is quite fuzzy, and that the general statement Don't use Flex to build web sites should not be deemed an absolute rule. What I don't agree with is that the subject matter of one's site justifies using Flex... regardless of the required

[flexcoders] Chart Data Tip Function

2006-06-28 Thread pasflex
Did the argument for a chart datatip function change in the release? The docs still show it taking a ChartItemEvent, but that seems to cause errors that weren't there in beta3: TypeError: Error #1034: Type Coercion failed: cannot convert mx.charts::[EMAIL PROTECTED] to

Re: [flexcoders] [Flex2 final release] FlexBuilder 2 install Flash Player 9.0.15??

2006-06-28 Thread mquickform
Yes it does install 9.0.15, and AMF0 is working fine (at least with my test using AMFPHP) M. --- -Original Message- From: Carlos Rovira [EMAIL PROTECTED] Date: Wed, 28 Jun 2006 19:55:26 To:flexcoders@yahoogroups.com Subject: [flexcoders] [Flex2 final release] FlexBuilder 2 install

Re: [flexcoders] What is the difference between versions of Flex Data Services

2006-06-28 Thread hank williams
So you think you *can* cluster the 6k version of the product but they only allow you 100 users? Does that mean that for 20k the enterprise version gives you unlimited users over an unlimited number of CPU's? I bet this isnt so. So I am still confused as to what the difference between the 6k and

[flexcoders] Re: Variable number of columns in ColumnChart

2006-06-28 Thread ben.clinkinbeard
Anyone? --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: Hello, I have a ColumnChart whose columns are based on selections in another part of the app. So there can be anywhere between 1 and 4 column sets. Unfortunately, I can't figure out how to add the

RE: [flexcoders] Chart Data Tip Function

2006-06-28 Thread Matt Horn
That is correct, use HitData not ChartItemEvent for the data type of the argument passed to your dataTipFunction. Yes, the docs are wrong and this change should show up on LiveDocs soon. matt horn flex docs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Chart Data Tip Function

2006-06-28 Thread Ely Greenfield
Sorry, yes, in the final release chart datatip functions take a hitData structure as its only parameter. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pasflexSent: Wednesday, June 28, 2006 11:58 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] Chart Data Tip Function

2006-06-28 Thread Deepa Subramaniam
Hey There - Looks like in beta3 dataTipFunction took an Object as its parameter. That has since changed; now, dataTipFunction takes a HitData object that describes the data point. -deepa From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

[flexcoders] Update on any WYSIWYG Text Editor projects for Flex Builder 2

2006-06-28 Thread supertodda
Hello, Does anybody out there have any updates on a good WYSIWYG text editor for Flex Builder 2? I know there were a few ActionScript 3 projects started, but there have not been any updates recently. We are looking for something with spell checking and a few more advanced features than the one

RE: [flexcoders] Generate sound

2006-06-28 Thread Roger Gonzalez
Yes, but not easily. I'll be writing a blog post with example code on this soon. :-) -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David ClarkSent: Wednesday, June 28, 2006 11:51 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Generate

<    1   2   3   >