[flexcoders] Flex2 : icon in menu-based controls

2006-02-05 Thread Benoit Hediard
It looks like there is a change between alpha1 and beta1 in menu icon handling. In alpha1, specifying an icon in the XML definition was done like this : ... [Bindable] [Embed(source=images/add.png)] public var addIcon:Class; ... mx:XML id=myMenuData menuitem label=MenuItem A

[flexcoders] Flex2 alpha1 to beta1 : compiler errors when referencing static constants

2006-02-05 Thread Benoit Hediard
We are currently migrating a pretty large Flex2 application from alpha1 to beta1. The biggest problem we've faced are compilation issues when referencing static constants in MXML views and/or AS commands (Cairngorm-based). For example, states : MainView.STATE_LOADING. It was working fine in

[flexcoders] Bug with WebService response?

2006-02-05 Thread raghuramab
I am trying to access SalesForce WebService from Flex 2.0. In this case there is a describeGlobal call that returns the array of Objects. If I look at the XML reponse, everything looks correct as below How ever, when I try to access the result object and the types array within it, all array

Re: [flexcoders] Re: Scrolling a TextArea to the bottom?

2006-02-05 Thread Brian Lesser
Hi Gordon, OK, I've found a few more serious problems with scrolling and filed a bug. There are two larger problems 1. scrolling to the bottom doesn't work when it's done in a for loop 2. after scrolling down, when you use the scrollbar to scroll up all the text above the last line is

[flexcoders] Flex developers required

2006-02-05 Thread globalitrecruiter
Hi All Flex users! My name is Pooja Sharma, Resource associate with Lintas LLC. I am in urgent need of Flex developers to work on a cotnract position in Michigan. Please let me know if anyone interested for an immediate start. You can reach me at 312-324-0899. Sincerely Pooja --

[flexcoders] How do I send checkbox results via cfc (flex 2)

2006-02-05 Thread yaagcur
I have many checkboxes whose selections I want to send to an MS SQL database with datatype fields , bit (0 or 1) but am having a couple of problems A ticked checkbox provides a cb1.selected = true An unchecked gives cb2.selected = null (although I - presumably mistakenly - thought from the docs

[flexcoders] Delete Item after Drag operation in Tree (Flex 2.0)

2006-02-05 Thread sourcecoderia
Anyone know how I should be approaching this can't seem to get it right. The data provider is an XMLListCollection, and when the item is a MOVE action I need to get rid of the original item in the tree view. I was using the dragComplete event but does not seem to give the results I hoped for.

Re: [flexcoders] Cannot resolve mx:Script to a component name.

2006-02-05 Thread nemahl
Hi all (especially Matt :), I uninstalled the Flex 2 plugin and installed the standalone version. Also installed Flex Enterprise Services with integrated JRun. Created a project which uses FES2. FES2 compilation gives the same error ! This is server side compilation and error is given in an

RE: [flexcoders] Cannot resolve mx:Script to a component name.

2006-02-05 Thread Matt Chotin
Please send the whole file that is not compiling. If it works on other machines I doubt well be able to do anything about it, but its worth a quick investigation. We wont be able to get to it though till the end of the week as were all at a conference. Matt From:

[flexcoders] Re: flex companyapp example

2006-02-05 Thread José Saldanha
By the way, I have to tell this: The restaurant finder one of my first tutorial in flex. on Blog http://coenraets.com/tutorials/restaurant/index.jsp I follow in love Flex with this tutorial, the data is in Mysql and the app is more rich with map finder that the last app. This to say I have a

RE: [flexcoders] Re: flex companyapp example

2006-02-05 Thread Matt Chotin
I am actually working right now on coming up with the right sample applications that will help bring Flex to the larger development community. The idea is to produce not just the Restaurant example (which we'll keep and hopefully expand a little) but a number more just like it including one

[flexcoders] Re: flex companyapp example

2006-02-05 Thread José Saldanha
Thanks Matt for your fast replay. Its all good news, the news in the espirit of (Macromedia). In the next corner to Help. With the tool Publish Application Source Flex have a power to share code and GROW GROW. Thanks. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote:

[flexcoders] Help installing Cairngorm 0.99

2006-02-05 Thread Claudia Barnal
Hi, Would it be possible if you guys could give me a hand installing Cairngorm (I'm using Flex 1.5). I tried following the the installation guide (InstallationGuide.pdf), but all I achieved was to get even more lost, as it doesn't really give you any simple and descriptive instructions. I have

[flexcoders] Re: MediaController controls

2006-02-05 Thread Renaun Erickson
With Flex 1.5 you would have to create your own controls. For example use the MediaDisplay but make invisible then just create your own controls/components to fire events on the invisible MediaDisplay. I have not looked into how different Flex 2's Media components are. Another option is to

[flexcoders] SetEventHandler Limitations?

2006-02-05 Thread Brian Lesser
Hi, I'm having a problem with using SetEventHandler in Flex 2 beta. Maybe it doesn't do what I would like? Within a State tag I create a component and class. I'd like the class to listen for connect events from the component. I can do that in a few ways, but have not been able to set it up so

[flexcoders] Re: Cairngorm and Coldfusion Best Practice

2006-02-05 Thread Andrew Spaulding
There are a number of resources available for Cairngorm and ColdFusion integration. Here are just a few: This article covers Cairngorm and Flash, but also get's into a discussion of command classes (re: my post on FlexDaddy) and a ColdFusion specific implementation -

[flexcoders] Re: Help installing Cairngorm 0.99

2006-02-05 Thread Andrew Spaulding
Hi Claudia, The installation instructions were quite specific. Can you please provide some further information as to what exactly isn't working? This will help me (us) better provide a solution to your problem. Thanks, Andrew Spaulding Adobe Systems --- In flexcoders@yahoogroups.com, Claudia

[flexcoders] Re: Bug with WebService response?

2006-02-05 Thread Andrew Spaulding
Hi Raghu, a brief sample of your result handler and a link to the wsdl would be helpful as the XML response pasted below is difficult to read at a first glance ;-) cheers, Andrew Spaulding Adobe Systems --- In flexcoders@yahoogroups.com, raghuramab [EMAIL PROTECTED] wrote: I am trying to

Re: [flexcoders] SetEventHandler Limitations?

2006-02-05 Thread Brian Lesser
FYI, I now can do what I want this way without using SetEventHandler: mx:states mx:State name=SignOn mx:AddChildfmsc:FMSConnector id=connector //mx:AddChild mx:AddChilduic:SignOnForm id=signOnForm connect=connector.connect(event)//mx:AddChild /mx:State

Re: [flexcoders] SetEventHandler Limitations?

2006-02-05 Thread jeremy lu
hi Brian, seems like this line is where the problem is : handler=connector.connect(event) connect() is expecting an Object but what get passed in is an Event. what's inside the connect() method ? On 2/6/06, Brian Lesser [EMAIL PROTECTED] wrote: FYI, I now can do what I want this way

[flexcoders] Flex 2 addTreeNode

2006-02-05 Thread Brendan Meutzner
Hi, Can someone provide me with an example of addTreeNode for Flex 2? I have a XML structure that is loaded into my Tree as the dataProvider. I would like to be able to click on a node within the tree, and then add a sub node into that selected node. When I get the selectedNode from the tree,

Re: [flexcoders] SetEventHandler Limitations?

2006-02-05 Thread Brian Lesser
Hi Jeremy, Well, first of all this does work: uic:SignOnForm id=signOnForm connect=connector.connect(event)/ But this doesn't work: mx:SetEventHandler event=connect target={signOnForm} handler=connector.connect(event)/ ...which is what confuses me. Anyway, below is the package/class with the

[flexcoders] bug in httprequest/urlloader/Flash 8.5?

2006-02-05 Thread Anatole Tartakovsky
It seems that when calling HTTPRequest on other domains, the crossdomain.xml is being loaded from that domain? Quick test: Step 1: Deploy blogreader sample on the localhost, place crossdomain.xml, even use loadPolicyFile - here is HTTP trace: Step 2 - Click on Coenraets Blog ---REQUEST

Re: [flexcoders] Re: Help installing Cairngorm 0.99

2006-02-05 Thread Claudia Barnal
Hi Andrew, Thanks for the reply. Basically, I couldn't understand much of anything I read (imagine Charlie Brown listening to his teacher). I am not a person who has dealt with any servers (JRun, Flex, etc.) for which I believe that the explanation is far to simple, expecting that the user

Re: [flexcoders] Re: How to use SharedObject.getRemote with Flex 2 / AS3

2006-02-05 Thread Brian Lesser
Yeah, It looks broken to me too. I went and tried a simple test and got the following error: TypeError: Error #1009: null has no properties. at flex2FMS/flex2FMS::netStatus() Where do we file bug reports again? Yours truly, -Brian flexargg wrote: Hi Brian, After adding your three lines,

RE: [flexcoders] Re: Returning XML from a Java web service to Flex (2.0)

2006-02-05 Thread Matt Chotin
I guess our decoder doesn't know how to handle the Document class directly, we probably expect it to be a String or something else that in WSDL 1.1 will indicate how it should be parsed. Only thing I can suggest is have it returned as a String instead and then parse it back on the client side.

RE: [flexcoders] Bitmaps and Blipping

2006-02-05 Thread Matt Chotin
I think you mean blitting, not blipping. In my limited graphics experience decision-making on whether you should double-buffer is still case-by-case. How many of your objects are changing at once? Even though it's only a few, are all of them changing? If so some of the caching may not be worth

RE: [flexcoders] Re: Help with XMLDecoder

2006-02-05 Thread Matt Chotin
Well that logic was intentional as when we see a 0 prefix and we don't know the type (b/c as you said we don't have the schema) we leave it as a String. This was based on feedback from our users. In fact there has been debate over whether we should just deserialize everything as Strings even if

RE: [flexcoders] How to assign attribute value in XML?

2006-02-05 Thread Matt Chotin
I think [EMAIL PROTECTED] = 20 will work or testXML[@+a] = 20; Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexhtoo Sent: Saturday, February 04, 2006 3:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to assign

RE: [flexcoders] Sending complex data to java services

2006-02-05 Thread Matt Chotin
All of that sounded like a good plan. What was the problem? Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Salvador Sent: Friday, February 03, 2006 2:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sending

RE: [flexcoders] Flex Enterprise Services w/.NET

2006-02-05 Thread Matt Chotin
We haven't announced plans for direct integration of FES and .Net. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lance Linder Sent: Thursday, February 02, 2006 2:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Enterprise

RE: [flexcoders] Re: Flex 1.5 Bug Fixes ?

2006-02-05 Thread Matt Chotin
Actually that is what I'm saying, when customers file bugs with support our support team investigates the issue and works with engineering to determine if a fix is required or if a workaround is available. If no workaround is available the teams work together to determine if the engineering team

RE: [flexcoders] Re: Compilation Errors running application through Enterprise Services (2.0 Beta

2006-02-05 Thread Matt Chotin
That line is the ReploymentManager trying to shutdown, it's probably a misnomer since if this was happening at startup the message broker is just trying to clean itself up and failing. I'd slowly back out your changes and see what happens. Matt -Original Message- From:

RE: [flexcoders] Delete Item after Drag operation in Tree (Flex 2.0)

2006-02-05 Thread Matt Chotin
You should work with the collection, though if you're really trying to remove from the original source the collection is not going to do it (because XMLLists are always copies of the source and removing something from that list is not removing from the original value). So you may want to do

RE: [flexcoders] Re: How to use SharedObject.getRemote with Flex 2 / AS3

2006-02-05 Thread Matt Chotin
http://www.macromedia.com/go/wish. I'm not sure how much testing has been done yet with AS3 and FMS. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Lesser Sent: Saturday, February 04, 2006 8:15 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] bug in httprequest/urlloader/Flash 8.5?

2006-02-05 Thread Matt Chotin
Yes, crossdomain.xml is loaded from the server you are trying to access, not the server where you got the original SWF. So crossdomain needs to come from coenraets.com in your case. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

[flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan
Looks like the "Macromedia Flex 2.0 Explorer" that came with the Alpha does not run anymore with the new Flash Player? Is there going to be an updated version available any time soon? Regards Sree -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Matt Chotin
There is a shorter URL for this but it turns into: http://flexapps.macromedia.com/flex/flex2demo_b1/flexexplorer_b1/explorer.html. It should have been shipped with the beta too. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith

Re: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan
Thanks Matt. Now that I re-checked, it is indeed available in the Flex Framework 2 folder. Regards Sree - Original Message - From: Matt Chotin To: flexcoders@yahoogroups.com Sent: Monday, February 06, 2006 12:37 PM Subject: RE: [flexcoders] Macromedia Flex

Re: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Sreejith Unnikrishnan
I am not sure if this is something to do with just me! But I none of the samples load if I try to run the applications offline, ie from the following URL. C:\Program Files\Adobe\Flex Builder 2 Beta 1\Flex Framework 2\samples\explorer\explorer.html It keeps looking for

RE: [flexcoders] Macromedia Flex 2.0 Explorer

2006-02-05 Thread Nick Weekes
Sree, I think the problem may be that you have updated the flash plugin with a version other than 8.5.It happens to me quite regularly, giving me the same behaviour that youve listed here when viewing the samples. Easiest solution is to re-install the beta. Cheers, Nick From: