[flexcoders] Event broadcasters and listeners with cellRenderers

2006-03-28 Thread nahruka
Hi all, I'm new at Flex and need some help about event handling among different Flex components. I have a custom TitleWindow with a Button. I want another custom component (used as a cell renderer in this TitleWindow) to listen to this button to be clicked and then do something. Here is my

[flexcoders] Re: flex2 : IMenuDataProvider replacement

2006-03-28 Thread bhaq1972
Thanks that worked. --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote: You should add a menu or remove a menu through the dataProvider collection. You would do something like this: var newItem:XMLList = node label=new branch 1node label=new leaf 1 data=new leaf

[flexcoders] Flex2 : Menu bug?

2006-03-28 Thread bhaq1972
Hi Just following on from my previous post. I noticed a difference in the menu behaviour from flex 1.5. if you have a line separator in your menu. you can actually select it with your mouse. This wasn't the case in flex 1.5. I believe the behaviour in flex 1.5 is correct, because a line

RE: [flexcoders] flex 2 integration with .net web service

2006-03-28 Thread Jason Hawryluk
There are no docs for this, however I do exactly the same thing. In the XMLdocument instance I cast it to string in flex before sending it. Soap envelopes are a textual packet of information. In order for anything like that to work the objects need to have exactly the

[flexcoders] Flex 2.0 b2: SharedObject

2006-03-28 Thread tyombria
Hi, all. I've got a problem with a SharedObject. I run two apps simultaneously. The following operators depict applications activities: 1. app1: so:SharedObject = SharedObject.getLocal('so', '/'); so.data.first = 'first'; so.data.second = ''; so.flush(); 2. app2: so:SharedObject =

Re: [flexcoders] List Component Bug!!

2006-03-28 Thread Carlos Rovira
Try to use an bindable ArrayCollection as your dataProvider that uses your array. (see the docs for an example).On 3/28/06, Gordon Smith [EMAIL PROTECTED] wrote: I'm not sure why an Array of Objects doesn't work, but let's see if Alex Harui does. However, I do want to point

AW: [flexcoders] Flex 2 Beta 2 - Bug with mx.controls.TextInput restrict Property

2006-03-28 Thread Harald Dehn
Hello Gordon, Please look at the example: TextInput.restrict = 0-9 ,.\- There is a backslash before the minus sign, but it doesnt work. Harry Von: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Im Auftrag von Gordon Smith Gesendet: Dienstag, 28. März

[flexcoders] Re: Saving object graphs 2 (losing backreferences)

2006-03-28 Thread pepe_perez_perez_perez
Hi, Thanks for answering, this is driving me crazy. No, no lazy references: hibernate-mapping default-lazy=false Perhaps I'm trying to make this simpler than it is, but this is how I understand it. Books.mxml: ?xml version='1.0' encoding='iso-8859-1'? mx:Application

Re: [flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread Oriol Gual
Hi Renaun,I've been also trying to make an AMFPHPService, quite different than yours, but after looking at your code I've a doubt:flash_proxy override function callProperty( methodName:*, ...args):* {AppUtil.info(passed callProperty);if( gateway_conn == null )gateway_conn = new

[flexcoders] using object+embed tags-install flash player8.5 on client systems-is possible?

2006-03-28 Thread venkat eswar
is it possible to install flash player8.5 automatically using object and embed tags on client systems. (i am using flex2.0 trail version.) Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates. -- Flexcoders Mailing List FAQ:

[flexcoders] using object+embed tags-install flash player8.5 on client systems-is possible?

2006-03-28 Thread venkat eswar
is it possible to install flash player8.5 automatically on client systemsusing object and embed html tags.? ifpossible, plz give information. (i am using flex2.0 trail version.) Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less. --

[flexcoders] using object+embed tags-install flash player8.5 on client systems-is possible?

2006-03-28 Thread venkat eswar
is it possible to install flash player8.5 automatically using object and embed tags on client systems.? (i am using flex2.0 trail version.) New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. -- Flexcoders Mailing List FAQ:

[flexcoders] format data

2006-03-28 Thread mepaninaresh
I have an xml element which looks like :- Date Type=Last_Log_on Format=CCYYMMDD![CDATA[20051119]]/Date I want to display this as for example :- 19/11/2005 I have tried various things, nothing seems to work, sample of my code below. mx:GridItem mx:Label

Re: [flexcoders] Event broadcasters and listeners with cellRenderers

2006-03-28 Thread Omar Ramos
Hi, On your cell render you can use these properties. public var listOwner:mx.controls.List;private var getCellIndex:Function; private var getDataLabel:Function; So instead of using parent use listOwner.parent, that should give you access to your button. Another aproach is to dispatch the

[flexcoders] FB2 :: New ActionScript File :: Package path error

2006-03-28 Thread Michael Schmalle
Hi, Just curious but, do I have something set up wrong in the FlexBuilder2 Plugin for Eclipse? When I create a new AS class or interface in the Package TextInput it always inserts; [classpath] DocumentX.com.teotigraphix.documentx.analyzers.models Obviously this is wrong and I have to delete

RE: [flexcoders] format data

2006-03-28 Thread Jason Hawryluk
changes to you code inline mx:DateFormatter id="dateformatter" formatString="DD/MM/"/ mx:Label text="{dateformatter.format (myContentData1.GraydonUKePatrolSchema.ePatrolDetailsPage.Date.(Type=='Last_Log_on'))}" / however this is totaly un tested and you may have a problem with the

[flexcoders] AS2, RegExp implementation?

2006-03-28 Thread Stanislav Zayarsky
Hello FlexCoders, Does anybody know if there good implementation of RegExp in AS2? AS2Lib implementation is not working properly. Best regards Stanislav -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] FB2 :: New ActionScript File :: Package path error

2006-03-28 Thread Dimitrios Gianninas
You have to setup what is your source folder. 1) Right-click on your project and selected properties 2) Goto Flex Build Path 3) enter the appropriate source folder Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] FB2 :: New ActionScript File :: Package path error

2006-03-28 Thread Michael Schmalle
Dimitrios, THANKS, so the jist is; You can have multiple class paths but, if you want to create new AS files, you can only do so in ONE classpath? BTW, I switched it to my main classpath that I am working in and that corrected the issue. Peace, Mike On 3/28/06, Dimitrios Gianninas [EMAIL

[flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread Renaun Erickson
You set the gateway URL in the RemoteObjectAMF0 endpoint attribute. In the example that is located at org.nevis.cairnogrom.samples.login.business.Services.mxml Renaun --- In flexcoders@yahoogroups.com, William Lambé [EMAIL PROTECTED] wrote: Where did you put the two lines : var

[flexcoders] Internal Build Error

2006-03-28 Thread Tim Sawyer
I'm getting An internal build error has occurred. Please check the Error Log. The log says: !ENTRY com.adobe.flexbuilder.project 4 43 2006-03-28 16:28:20.702 !MESSAGE Uncaught exception in compiler !STACK 0 java.lang.NullPointerException at

[flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread Renaun Erickson
Oriol, Thanks for you feedback, This is one of the areas I am also not so sure on. One way to look at it is to define it out to 5-8 arguments. As a general rule of thumb passing 8 parameters is not a good thing to do. But I am searching and trying to learn a more elegant way to handle any

Re: [flexcoders] Internal Build Error

2006-03-28 Thread Michael Schmalle
Hi, I wrote a couple lengthy posts on this forum. ;-) Search for internal build error, you should see some things I have encountered. Peace, MikeOn 3/28/06, Tim Sawyer [EMAIL PROTECTED] wrote: I'm getting An internal build error has occurred. Please check the Error Log. The log says:

Re: [flexcoders] Error #1009 Troubleshooting

2006-03-28 Thread Brendan Meutzner
Matt,Yes, this issue is happening with a full framework install.Thanks,BrendanOn 3/28/06, Matt Chotin [EMAIL PROTECTED] wrote: You're using the full framework unlike the other thread right? It might be a bug. It looks like maybe the global style isn't loaded correctly.

[flexcoders] Flex Beta 2 FormItem

2006-03-28 Thread lancert82
Does someone know how to align the FormItem label to the left? Now it's aligned to the right nearby the textfield ... Thx! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Flex 1.5 - When IsStructureValid()==False, where to find all the error messages

2006-03-28 Thread Libby
Hello, I am using IsStructureValid()on my forms with multiple validators. Now the user would like to log all the validation error messages. After studying the Flex documentation, I am confuseder than ever. When multiple validation errors have occurred (after IsStructureValid()returns false),

[flexcoders] Re: List Component Bug!!

2006-03-28 Thread Peter Blazejewicz
Hi everyone, I've ended with boxing items into ObjectProxy that way: [code] ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* creationComplete=initApp(); mx:Script ![CDATA[ import

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Tobias Patton
I should have put it in the subject line that I am using Flex 2 and FP 8.5. Is there a way to get the XML using Flex 2 without a proxy? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carson Hager Sent: Monday, March 27, 2006 5:02 PM To:

RE: [flexcoders] Re: List Component Bug!!

2006-03-28 Thread Lance Linder
I like this idea. Seems a bit cleaner than having to add IUID interfaces to the VOs just to use them in list components. Thanks for the example! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Blazejewicz Sent: Tuesday, March 28, 2006

RE: [flexcoders] Re: Flex 2: about potential HTTPService timeout/security issues ...

2006-03-28 Thread dos dedos
I believe it boils down to actual experience and not any hypothetical reasoning, even though my reasoning appears to be correct (as far as I can tell)If actual experience has shown that the way Flash is doing it is indeed better and leads to higher market penetration for Flash compared to

RE: [flexcoders] Flex2 : Menu bug?

2006-03-28 Thread Joan Tan
Thanks, I will log a bug for you. It makes sense that you shouldnt be able to select a separator. Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bhaq1972 Sent: Tuesday, March 28, 2006 1:21 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] FLEX and Open Lazslo Comparision

2006-03-28 Thread Sanjeeb Patel
Hi All, I am in the process of comparing the two RIA technologies. If anyone has done it and can shed some light, I will really appreciate. Thanks for your help. -San -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] FLEX and Open Lazslo Comparision

2006-03-28 Thread dos dedos
Esoteric factors affecting market penetration/user adoption/developer market:1. "Flex" has a nicer ring to it than "Open Lazslo"2. Flex ends with "ex" for ecstatic. Lazslo ends with "slo" 3. The combination of "sz" is hard to pronounce and foreign to most people. This may be part of an

[flexcoders] Menu Bar Killing me. Can someone help.

2006-03-28 Thread Jeremy Rottman
I just upgraded from Flex 2 Beta 1 to Flex 2 Beta 2. And not my menubar is dead. It worked great while in flex 2 beta 1. When I compile my code, it shows the xml code I used to make my menu bar, instead of my menu bar. I am using the example on the flex explorer website to do my menu bar. I dont

[flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Renaun Erickson
One big one is everytime Flex comes up with newer components Laslo either has to mimic them or create their own version. Another is Laslo is runtime heavy and Flex is compiled. Renaun --- In flexcoders@yahoogroups.com, Sanjeeb Patel [EMAIL PROTECTED] wrote: Hi All, I am in the

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Sanjeeb Patel
Hi Renaun, I am sorry .. but I did not get what exactly you meant by Laslo is runtime heavy and Flex is compiled. Would you please elaborate ? Thanks, -San -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Renaun Erickson Sent: Tuesday, March

Re: [flexcoders] Re: Flex job posting * * * RESUME and Sample Sites Attached

2006-03-28 Thread Tariq Ahmed
Ya if anyone has a job posting just email and I'll hook it up. I'm still in the process of enabling anyone to post anything, but between the job, kid, wife, commute, and carpal tunnel I wish I had more time! Some interesting tidbits... CFlex gets about 2500 visitors a day or 19K hits/day. Top

[flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Peter Blazejewicz
Hello Jeremy, try to add labelField property declaration, e.g.: mx:MenuBar labelField=@label to filter data for dataProvider, hth, regards, Peter Blazejewicz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Menu Bar Killing me. Can someone help.

2006-03-28 Thread Sönke Rohde
Same problem here. Looks like the behaviour changed or it broke between beta1/2. Cheers, Sönke -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Tuesday, March 28, 2006 7:44 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Sönke Rohde
Hi Peter, In my case this doesn't change anything and all my nodes have a label-attribute. Cheers, Sönke -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Blazejewicz Sent: Tuesday, March 28, 2006 8:01 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Peter Blazejewicz
Hi Sönke, ops, that's not what I ment: it should be: define property showRoot=false thanx Sönke, regards, Peter -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Bryan Rieger
Hi Renaun, Actually, I'm quite interested in what you mean by that also? FWIW - Simple Flex apps seem to be 250k+ while I can spit out a simple Laszlo swf around 70k. Of course, the performance does appear to be better in Flex - but I'm wondering if that's simply not a result of the 8.5 runtime

RE: [flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Joan Tan
There are known issues in the beta for MenuBar. Here is the text from the known issues page on labs: MenuBar not working with e4x XML dataProvider The MenuBar shows the first node's children as the top level instead of showing the entire data structure. Issues with MenuBar and inline XML that

[flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Renaun Erickson
I might be wrong, but I though Laslo parses their language at runtime (in the SWF) instead of compiling the code into SWFs? Renaun --- In flexcoders@yahoogroups.com, Sanjeeb Patel [EMAIL PROTECTED] wrote: Hi Renaun, I am sorry .. but I did not get what exactly you meant by Laslo is

[flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Jeremy Rottman
Joan, I added what you said, and it now formats my bar correctly to the menubar. But now my menuhandler function no longer works. It is setup that that it changes the states when a child menuitem is selected. Any idea why this wont work now. function menuHandler(oEvent:Object) { currentState =

[flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Renaun Erickson
The size has to do with all the Flex Framework components, yes its bigger but a richer set of components. Even if Laslo did a lot of interperting at the runtime level it could still have decent performance, I assume its not a problem as Laslo is viable. The richness of Flex Framework is not to

RE: [flexcoders] Flex 2: passing XML string via ExternalInterface produces unterminated string

2006-03-28 Thread Matt Chotin
This stuff should work. Can you try running through the XML and removing the \r\n so that you only have \n (which ideally you'd reduce down as well). -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nathan W. Phelps Sent: Friday, March 24, 2006

[flexcoders] Beta 2 - RSS reader

2006-03-28 Thread Howard, Dave
Has anyone or is there an example of an RSS reader application? Thanks in advance -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your

RE: [flexcoders] Flex 2 Beta 2 - Bug with mx.controls.TextInput restrict Property

2006-03-28 Thread Gordon Smith
Sorry, Harald. I must need new glasses. Thanks for pointing out the right solution, Philippe. A \ in a string literal is always treated as an escape character, so you have to write \\- in order to set the 'restrict' property to backslash + minus, which the TextField in the TextInput

[flexcoders] Message destinations in the context of a multi-room chat app

2006-03-28 Thread Tom Bray
I've been trying to understand how to configure destinations in the context of a multi-room chat application where the rooms are dynamically created. Here's the scenario: The application loads a configuration file that specifies what rooms to create. In this case, let's say that list includes

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Ted Patrick
Tobias, ADOBE PLEASE CHANGE THIS! The problem is in Flash Player Networking. When an HTTP STATUS 500 occurs Flash cannot read the data from the HTTP response and thus cannot parse fault information. The Flex Services Proxy, flips the HTTP STATUS from a 500 to a 200 so that Flex can process

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Matt Chotin
This is due to the browser plugin APIs not exposing what we need. We have tried without end to get the Player team to support and they have their hands tied by what the APIs they use can offer. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Carson Hager
Ted, Have you confirmed this is still happening in 8.5? I was assured by engineering and product management that this would be addressed in 8.5. Please make sure you have tested with the latest flash player. Thanks, C Carson Hager Cynergy

[flexcoders] databinding issue for combobox

2006-03-28 Thread rgwilson26
I am working on an app where I am populating various combo boxes with results from my look up tables in a sql server database. I have no problem binding the results to the comboboxes dataProvider property. However, when I try to send the results from the combobox to a datagrid it populates the

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Bryan Rieger
Hi Renaun, I might be wrong, but I though Laslo parses their language at runtime (in the SWF) instead of compiling the code into SWFs? Nope. AFAIK it's compiled to bytecode - but there is a base framework that is included within the bytecode, so there might be some overhead there as they

RE: [flexcoders] RE: ExternalInterface and IFrame

2006-03-28 Thread Battershall, Jeff
Tony, I was able to re-create the behavior you've noted, but was able to get the disappearing Iframe to stop in IE when I added wmode=opaque to the name-value pairs being passed to AC_FL_RunContent in index.template.html. Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Joan Tan
Try oEvent.menuItem.data instead of the getProperty syntax. Joan -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Tuesday, March 28, 2006 10:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Menu Bar Killing

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Matt Chotin
It is addressed where possible. I will check again to see what we can offer but even if we get 500 we are not able to get the content that came with it so we won't have the details. And it may work inconsistently across browsers. I have also made this statement before. Matt -Original

[flexcoders] syntax for query call in a cfc

2006-03-28 Thread rgwilson26
I am wondering is anyone can help me on the sytna for a not equal to value using a cfc? I wrote this query in sql server and it works fine, but my cfc doesnt like the '' for not equal to. Does anyone know the correct way to write this? Thanks, ***my query SELECT OptionValue FROM

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Ted Patrick
Carson, I need to run the testing for 8.5 again on Flex 2 Builder Beta2 on the 3/16 release but I am 99% sure it is still broken. Cynergy Systems, Inc. Theodore Patrick Sr. Consultant [EMAIL PROTECTED] tel: 1.866.CYNERGY http://www.cynergysystems.com

[flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Renaun Erickson
Thanks for the clarification. It does only include what you use but just creating a Flex application requires a big chunk of components. I agree with the not in control of their runtime and playing catch-up. Price used to be the biggest issue but that has gone a way with Flex2. Flash Lite 2

RE: [flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread William Lambé
Hi, I am trying to run your sample, but I always have this error, and I dont find how: ReferenceError: Error #1069: Property dummyDelegate not found on org.nevis.cairngorm.business.ServiceLocator and there is no default value Do you know how to correct that? (I really changed

RE: [flexcoders] Beta 2 CF connectivity problems

2006-03-28 Thread Doug Hughes
So, Ive done what you suggested and Im able to create a project using Remoting.  However, Im still a bit confused.  I know I can edit the flex-enterprise-services.xml to change the endpoint for Remoting calls. The issue is that its configured for http://localhost:8300/flex2gateway/ while

RE: [flexcoders] RE: ExternalInterface and IFrame

2006-03-28 Thread Tony Pujals
Jeff, thats awesome! Ill have to check to see if it works for Firefox. If it does, Im going to be very happy. -Tony tony pujals| senior engineer | Yahoo! SiteBuilder Express p. 408.349.6284 |e. tonyp * yahoo-inc * com| y!id tonypujals From:

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread dos dedos
With respect to mobile apps I think one plausible idea would be for Adobe to design their own Flash-engine-as-ASIC-library and license it to mobile phone chip makers like Motorola for inclusion in some of their chip architectures. That would improve Flash's performance on mobile phones. Just

RE: [flexcoders] Message destinations in the context of a multi-room chat app

2006-03-28 Thread Stefan Richter
Good question and one for Adobe to answer - and I don't mean the specific implementation but: where does FMS/FCS stop and FDS start? Should we really be building chat apps with FDS? I'm sure I am not the only one still a little confused by the crossover of functionalities. Stefan BTW

[flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread quasimotoca
Hi: We started a rather large poker game program in Open Laszlo. The show-stopper for us that lead us to Flex2 was the lack of AS3 support. I haven't looked at Open Laszlo in a while but at the time it only supported AS2.0 and didn't support binary sockets which we definitely needed to

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Roger Gonzalez
Does it happen to remove the unused components? What if I'm only using one button - does Flex include all components? Flex only includes classes found in the dependency chain from your application class (or configuration settings). When you create an application that extends

RE: [flexcoders] Re: FLEX and Open Lazslo Comparision

2006-03-28 Thread Bryan Rieger
Thanks everyone! This input is fantastic. Lots to learn and think about, but I'm really glad I took the time to look at Flex 2. Sincerely, Bryan -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez Sent: Tuesday, March 28, 2006

[flexcoders] Re: syntax for query call in a cfc

2006-03-28 Thread Doug Lowder
Ryan, try (OptionValue != 'Total') --- In flexcoders@yahoogroups.com, rgwilson26 [EMAIL PROTECTED] wrote: I am wondering is anyone can help me on the sytna for a not equal to value using a cfc? I wrote this query in sql server and it works fine, but my cfc doesnt like the '' for not

RE: [flexcoders] How to get the XML of a SOAP fault

2006-03-28 Thread Ted Patrick
Matt, Let me make sure I understand. It is addressed where possible. where possible implies that a player running in Netscape and one running in Internet Explorer are going to behave differently and the developer must code 2 solutions to address a browser specific issues in Flex. I have

[flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Jeremy Rottman
With what you suggested, it changes the state to a blank screen, instead of showing the state it should have called. Here is what I am trying now. function menuHandler(oEvent:Object) { currentState = oEvent.menuItem.data; } --- In flexcoders@yahoogroups.com, Joan Tan [EMAIL PROTECTED] wrote:

RE: [flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Ted Patrick
Jeremy, With Flex 2 Beta 2 make sure to use return types for all functions. There are some hidden gotchas if you do not do this. In the function below I added the return type of void. Try: function menuHandler( oEvent : Object ) : void { currentState = oEvent.menuItem.data; } That error

[flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Jeremy Rottman
Alas they have broken menu bar. Even with the code you posted ted, it still does the same thing. When I click on a child menu item, it go to a blank screen instead of the called state. Here is the code I am trying function menuHandler( oEvent : Object) : void{ currentState =

RE: [flexcoders] Re: Menu Bar Killing me. Can someone help.

2006-03-28 Thread Ted Patrick
Also watch out when using the Object return type. There is a new type called * for handling untyped data. Prior Object would work but it has been tightened down a bit. Cheers, Cynergy Systems, Inc. Theodore Patrick Sr. Consultant [EMAIL PROTECTED] tel: 1.866.CYNERGY

[flexcoders] Image and click event??? Flex 2 B2

2006-03-28 Thread Douglas Knudsen
Ok, so I have a TileList using a itemRenderer known as Thumb.mxml. In Thumb.mxml I have mx:Image id=up source={upArrow} visible=false click=mx.controls.Alert.show('hello');/ I mash run, all looks good. When I click on the image, nada, as in nothing occurs. If I change the event to mouseOver,

Re: [flexcoders] Image and click event??? Flex 2 B2

2006-03-28 Thread Manish Jethani
On 3/29/06, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, so I have a TileList using a itemRenderer known as Thumb.mxml. In Thumb.mxml I have mx:Image id=up source={upArrow} visible=false click=mx.controls.Alert.show('hello');/ I mash run, all looks good. When I click on the image, nada,

Re: [flexcoders] SOLVED: Flex2 - More Scroll Bar problems (DataGrid)

2006-03-28 Thread Manish Jethani
On 3/27/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: I was setting the scrollPolicy in the constructor of my cell renderer; moving it to an override of commitProperties fixed it. Is this an appropriate place to put something like this? Constructor is fine. A similar question, I'm

Re: [flexcoders] Sticky Dragging Problem

2006-03-28 Thread Manish Jethani
On 3/28/06, sufibaba [EMAIL PROTECTED] wrote: public function newLine(){ var sprite:Sprite = new Sprite(); sprite.graphics.lineStyle(1,0x00,1,false,NONE); sprite.graphics.moveTo(pt.x,pt.y); sprite.graphics.lineTo(cx,cy);

[flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread Renaun Erickson
Post your Services.mxml file there is something wrong with it, as it can't find the dummyDelegate property. Renaun --- In flexcoders@yahoogroups.com, William Lambé [EMAIL PROTECTED] wrote: Hi, I am trying to run your sample, but I always have this error, and I don't find how :

[flexcoders] Re: Cairngorm problem

2006-03-28 Thread Peter Blazejewicz
Hello Jonathan, you've posted nice example so I've decided to investigate what you described even if i'm not very experienced dev yet, so first I wrote a simple jsp page that simply returns xml data (your dummy.xml is a content returned) with added Thread.sleep() used to sustain results for

[flexcoders] Re: Beta 2 - RSS reader

2006-03-28 Thread Peter Blazejewicz
Hello Dave, in Flex Builder docs there is an example that reads Matt Chotin's feed, just search for RSS keyword in Builder help file, also you should try open source library posted on labs: http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:libraries#RSS_and_Atom_libraries

[flexcoders] Re: Cairngorm problem

2006-03-28 Thread Renaun Erickson
This does sound weird. I haven't had time to play with the HTTPService 1s timing issue. But definetly something is going on. So we have narrowed it down to HTTPService and Binding is that correct, not Cairngorm or other RPC services? Renaun --- In flexcoders@yahoogroups.com, Peter Blazejewicz

Re: [flexcoders] Beta 2 CF connectivity problems

2006-03-28 Thread Muzak
change the endpoint to: endpoint uri={context.root}/flex2gateway/ class=flex.messaging.endpoints.AMFEndpoint / regards, Muzak - Original Message - From: Doug Hughes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 28, 2006 9:49 PM Subject: RE: [flexcoders] Beta 2

RE: [flexcoders] Re: [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-28 Thread William Lambé
You can find my Services.mxml in attachment. I still have the same problem I dont understand De: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] De la part de Renaun Erickson Envoyé: mercredi 29 mars 2006 0:06 À: flexcoders@yahoogroups.com Objet: [flexcoders]

[flexcoders] Re: Message destinations in the context of a multi-room chat app

2006-03-28 Thread Peter Blazejewicz
Hi Tom, as to dynamic topics, I've read something about that during weekend playing with ActiveMQ/Flex and it seems that you need to find specific JMS-imlemenation/vendor because with standard Sun implementation dynamic topics are not supported by JMS itself:

[flexcoders] Re: Cairngorm problem

2006-03-28 Thread Peter Blazejewicz
Hello Jonathan Renaun, I've added: executeBindings(true); in onResults handler posted previously and now chart are working fine, not tested with original Jonathan's example yet though, kind regards, Peter Blazejewicz -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Matt Chotin
FYI I checked and were not planning on supporting MXML apps that dont use the framework for version 2.0. However we will investigate to see if the case like this can at least not cause such a horrible error. Matt On 3/24/06, bussesven [EMAIL PROTECTED] wrote:

[flexcoders] Re: Cairngorm problem

2006-03-28 Thread Peter Blazejewicz
hi Jonathan, calling Application.application.executeBindings(true) within orginal StatsCommand onResult handler make your example working fine for me (when requesting data from jsp dynamic page), regards, Peter Blazejewicz -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Flex Beta 2 - Loader not loading SWF 100%

2006-03-28 Thread Bruno Martins
Hi Ross, My friend Beck Novaes did a betterimplementation of AppLoader. Tks.. On 3/27/06, Bruno Martins [EMAIL PROTECTED] wrote: Yes I extend the loader to create this new component. I had the same problem you have. The document is undefinedon complete event, but a fill seconds after they

RE: [flexcoders] databinding issue for combobox

2006-03-28 Thread Tracy Spratt
[object Object] means you are trying to display a complex object as text. Can you be more specific about what you mean when you say send the results from the combobox to a datagrid ? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: databinding issue for combobox

2006-03-28 Thread Jignesh Dodiya
it may be possible that you sending full object to Datagrid. not sure but it may posible that u need to send the specific element from your object from combo-box to datagrid with specific column id...i mean object.columnID An object automatically settle to data grid with column name while

RE: [flexcoders] Re: Beta 2 - RSS reader

2006-03-28 Thread Howard, Dave
Thank you for the response After I sent this post I found the example in, of all things a help file. God forbid a developer read a help file. No more posts from me (after this one) until I get a clue. Sorry to waste everyone's time. -Original Message- From:

[flexcoders] Re: Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Jignesh Dodiya
lol. .Obvious Adobe is not do development to serve people for free of cost.. On 3/28/06, Matt Chotin [EMAIL PROTECTED] wrote: FYI I checked and we're not planning on supporting MXML apps that don't use the framework for version 2.0. However we will investigate to see if the case like

Re: [flexcoders] Re: Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Johannes Nel
since flex is free(of cost) i wonder what you mean byt this.On 3/28/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: lol. .Obvious Adobe is not do development to serve people for freeof cost.. On 3/28/06, Matt Chotin [EMAIL PROTECTED] wrote: FYI I checked and we're not planning on supporting

Re: [flexcoders] Re: Using mxml without flex framework (Flex 2 Beta 1 and 2)

2006-03-28 Thread Jignesh Dodiya
Of Cource Flex framework and compiler is free.. but not everything On 3/29/06, Johannes Nel [EMAIL PROTECTED] wrote: since flex is free(of cost) i wonder what you mean byt this. On 3/28/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: lol. .Obvious Adobe

Re: [flexcoders] Attempting to connect flex 2 to php :error #2070

2006-03-28 Thread Manuel Saint-Victor
Matt,Thanks for getting back to me on that. I actually tried it again today from the same folder and received the same Security Sandbox violation. Are there any other causes if both the swf and the php file are on a shared host in the same directory? Thanks in advance for your help.ManiOn

Re: [flexcoders] Message destinations in the context of a multi-room chat app

2006-03-28 Thread Tom Bray
Stefan, it's nice to know I'm not alone over here! Regarding using FMS and FDS together, I'd like to be able to rebuild this app: http://www.userplane.com/webchat/ using FDS for all the text messaging and data synchronization and FMS for the live AV. So far, I don't see a clear path to that

[flexcoders] Few issues

2006-03-28 Thread angelosalsa
Hi all., 1st issue: My remoteobjects and webservices work fine from my local server but when I try to access the site from the outside world, I get only the hourglass loading with no errors but nothing shows, My crossdomain is in both C:\Inetpub\wwwroot\crossdomain.xml and incase

[flexcoders] How do u use HTTP POST in flex 2 / AS3

2006-03-28 Thread arpitmathur_80
I cant get HTTP POST to work (i am definitely a flex newbie). Can anyone help me ? thanks arpit -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links *

  1   2   >