RE: [flexcoders] Release Dates?

2006-05-20 Thread Matt Chotin
The thread on Emmys blog is here: http://weblogs.macromedia.com/emmy/archives/2005/12/why_isnt_there.cfm with plenty of comments from the community. There is no official release plan announced for a Linux player though you can expect it to be a minimum of a number of months at this

Re: [flexcoders] Flex 2 - Cairngorm 2 Tutorial

2006-05-20 Thread Manuel Saint-Victor
I'm not sure if this is the best specific answer - but the dev center Cairngorm lectures have been the best start thus far for me. They helped me to see the relative roles of the different elements of Cairngorm. This got me on my way to building. I'm waiting for some new Flex 2 doc for

[flexcoders] Re: Flex2B2 Resolution Change Event

2006-05-20 Thread Tim Hoff
Hey Doug, I finally worked it out. If you want, you can see a simple sample application here, that I created using the same concepts. You can right-click to see the code. The sample uses Flex2B3 Cairngorm2 (latest). Tim --- In flexcoders@yahoogroups.com, "Tim Hoff" [EMAIL PROTECTED] wrote: Not

Re: [flexcoders] Flex 2 - Cairngorm 2 Tutorial

2006-05-20 Thread jeremy lu
thanks Carlos for the updated link, just downloaded and extracted, but the simple login sample is not included, so I suggest also download alpha1 for the sample, at least newbies could have a general idea of the process/flow of the application. On 5/20/06, Carlos Rovira [EMAIL PROTECTED] wrote:

[flexcoders] Re: Problem transcoding FlashType font

2006-05-20 Thread billlane1962
I'm currently not trying to use the font on any text object. I'm still just trying to get Flex to accept the Flash file. Would the bug affect this and show up with this Transcode error? Thanks for the reply it will definitely help if I ever get access to the font. Bill Lane --- In

[flexcoders] HTTP Service Error

2006-05-20 Thread sreedhar reddy
Hi, I am working with the Flex 2 Beta 3 builder, and I am trying to execute a database application using Flex and jsp for retrieving data from database and displaying it in datagrid. The moment I click "GetData" button it is showing the following error: RPC Fault faultString="HTTP request

[flexcoders] TextArea inline emoticons

2006-05-20 Thread tomkrcha
Hi, does anybody tried putting inline emotions (img) to flex textarea? It doesn't work! It is possible or it's black box? Thanks Tom -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Amazon ECS SOAP requests via mx:request tags [FB2b3]

2006-05-20 Thread Renaun Erickson
There are some old posts on the board about this. Basically there is a conflict with the WebService flex classes and the Request parameters required by Amazon. The WebService flex classes overrides any Request parameter you set and therefore you get the error. The only want around it would be

[flexcoders] Autoinstall not guaranteed?

2006-05-20 Thread John C. Bland II
We had a client who ordered a content management system in beta 2 (worked fine too). It launched just before beta 3 and there were updates needed after 3 came out. So, we upgraded it to beta 3 which was a perfect time for the client to upgrade their computers to FP9. The problem is it didn't

[flexcoders] Re: Amazon ECS SOAP requests via mx:request tags [FB2b3]

2006-05-20 Thread Peter Blazejewicz
Hello Renaun, many thanks for getting back :D to Adobe: are there plans to relese source for mx.rpc.* classes? regards, Peter --- In flexcoders@yahoogroups.com, Renaun Erickson [EMAIL PROTECTED] wrote: There are some old posts on the board about this. Basically there is a conflict

[flexcoders] set node selected on a tree

2006-05-20 Thread Jesús Iglesias
I have a tree width an object as dataProvider. In response a some events of my aplication I need to select one node from the tree. The problem is I don't know how to do it. I tried treExplorer.selectedItem=treExplorer.getChildAt(i); but it does nothin. Even more, how would I select a

RE: [flexcoders] Autoinstall not guaranteed?

2006-05-20 Thread Matt Chotin
Auto-upgrade is not going to work until we actually ship Player 9 on adobe.com because there is no server sitting out there with the Player. So your clients will need to install FP9 manually for now (despite FB offering the install options). Matt From:

[flexcoders] returning an array from CF via Web Service

2006-05-20 Thread Greg Morphis
Is there anything special I need to do in returning an array from CF to Flex? I've got: cffunction name=getLabels hint=I return an array of labels access=remote output=true returntype=array cfset var fooA = arrayNew(1) cfquery name=fooQ datasource=budget select distinct label from main

[flexcoders] Re: Beta 3: Update Tree List Label

2006-05-20 Thread Michael Montagna
--- In flexcoders@yahoogroups.com, FineLine [EMAIL PROTECTED] wrote: Hi, my first post to this list. I built a test app with Flex Builder 2 Beta 2 with a data update form which allows you to change the names of nodes in a tree. This ActionScript code used to work to change the tree label

[flexcoders] Re: returning an array from CF via Web Service

2006-05-20 Thread Tim Hoff
This works for me: import mx.utils.ArrayUtil; var lables : Array = mx.utils.ArrayUtil.toArray(event.result); -TH --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: Is there anything special I need to do in returning an array from CF to Flex? I've got:

RE: [flexcoders] Re: Amazon ECS SOAP requests via mx:request tags [FB2b3]

2006-05-20 Thread Matt Chotin
We're not planning on releasing source to the RPC classes right now, sorry. I've filed a bug on the Amazon issue, I spent about an hour debugging and can't figure it out so far so I'll see if the engineers can look into it :-) Matt -Original Message- From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: returning an array from CF via Web Service

2006-05-20 Thread Greg Morphis
How come I still have to access it via: Alert.show(labels[0].LABEL); I would think I could just go Alert.show(labels[0]); However when I do that, I get [Object.object]? Thanks Tim On 5/20/06, Tim Hoff [EMAIL PROTECTED] wrote: This works for me: import mx.utils.ArrayUtil; var lables :

Re: [flexcoders] Re: returning an array from CF via Web Service

2006-05-20 Thread Greg Morphis
aha, never mind.. twas an error with my CF. That got it. Thanks again! On 5/20/06, Greg Morphis [EMAIL PROTECTED] wrote: How come I still have to access it via: Alert.show(labels[0].LABEL); I would think I could just go Alert.show(labels[0]); However when I do that, I get [Object.object]?

[flexcoders] Re: returning an array from CF via Web Service

2006-05-20 Thread Tim Hoff
You were correct when you assumed that the result is returned as type object(). labels[0] would represent an entire row (element) of the object (and array), while labels[0].LABEL represents an individual field (even if the row only has one field). I keep getting the exact terminology

[flexcoders] Limit to operations in a webservice?

2006-05-20 Thread Greg Morphis
Is there a limit to how many mx:operation / a webservice can call? I'm trying 4 and the last one doesnt get called. If I switch the 3rd and 4th, the 4th one gets called and the 3rd doesnt. Should I make another mx:WebService call? or is there something else I can do? -- Flexcoders

[flexcoders] Flex2B3 - Cairngorm View States

2006-05-20 Thread Tim Hoff
For beginners, here is simple example how to control view states, using a binding technique, with the Cairngorm micro-architecture:http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=422Best Wishes,Tim Hoff -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Limit to operations in a webservice?

2006-05-20 Thread Greg Morphis
nevermind... I had a call to my getWSData() function in the creationComplete of the application. I guess it was causing a race condition? I moved it down to an init() function and called that in the creationComplete function and it's working now. Thanks On 5/20/06, Greg Morphis [EMAIL

[flexcoders] Re: Limit to operations in a webservice?

2006-05-20 Thread Tim Hoff
You might want to investigate asyncToken. -TH --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: nevermind... I had a call to my getWSData() function in the creationComplete of the application. I guess it was causing a race condition? I moved it down to an init()

Re: [flexcoders] Re: set node selected on a tree

2006-05-20 Thread Jesús Iglesias
Sorry, Flex 2b3. Jesus - Original Message - From: Michael Montagna [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, May 20, 2006 8:22 PM Subject: [flexcoders] Re: set node selected on a tree --- In flexcoders@yahoogroups.com, Jesús Iglesias [EMAIL PROTECTED] wrote:

[flexcoders] Re: Amazon ECS SOAP requests via mx:request tags [FB2b3]

2006-05-20 Thread Peter Blazejewicz
Hello Matt, thanks for info and filling it out, regards, Peter --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: We're not planning on releasing source to the RPC classes right now, sorry. I've filed a bug on the Amazon issue, I spent about an hour debugging and

[flexcoders] Nobody wants to help me??

2006-05-20 Thread Faisal Abid
i have waited well over 24 hours and still no reply ,can anyone please help me Here is the xml document . http://api.shopping.yahoo.com/ShoppingService/v2/productSearch?appid=YahooDemocategory=Clothingquery=football+pantsrefinement=4168-Brand=Calvin%20Kleinshow_subcategories=1

RE: [flexcoders] Nobody wants to help me??

2006-05-20 Thread Matt Chotin
Using e4x as your format I think it'd be something like this: service.lastResult.Products.Product.(@type = Catalog) Then you'd need to have have a labelFunction (or do it in your cell renderer) that digs down further into Catalog.Thumbnail.Url, e.g., Function label(item:Object):void {

[flexcoders] Flex2B3 - result to lastResult

2006-05-20 Thread Tim Hoff
I haven't changes result to lastResult yet, per the changes from B2 to B3. However, my applications still work fine. Will result be depreciated in the final release? And, why the name change? :) Curiousness, Tim -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Autoinstall not guaranteed?

2006-05-20 Thread John C. Bland II
Ahh...good stuff Chotin. I thought that was the case in Beta 2 but thought it was fixed since it was officially 9 now.So, one last question: are there any upgrades to the autoinstall? (Not necessarily in terms of code but it actually working this time around) On 5/20/06, Matt Chotin [EMAIL

RE: [flexcoders] Flex2B3 - result to lastResult

2006-05-20 Thread Matt Chotin
Event.result remains the same, only myservice.myOp.result changed to lastResult. The reason we did it is because there was some fear over confusion with the result property and the result event. It's a semi-arbitrary rule that allows the MXML compiler to figure out what you mean (in this case

RE: [flexcoders] Autoinstall not guaranteed?

2006-05-20 Thread Matt Chotin
I dont know of any real changes. Not sure what wasnt working with the auto-update before, I know there were issues with the security patches and whatnot and if you had a beta player installed things could get interesting. But going from a release player to the release player that comes

[flexcoders] Re: Flex2B3 - result to lastResult

2006-05-20 Thread Tim Hoff
Yes, that is what I was refering to. Hence, justification for the name change. Thanks Matt. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Event.result remains the same, only myservice.myOp.result changed to lastResult. The reason we did it is because there was

[flexcoders] Programmatic skinning example - buttons, buttonbar, panel, etc

2006-05-20 Thread grae_hall
http://grae.halltech.com.au/xmxSkins/ It's an example with source of how to skin buttons with your own styles programmatically - it's a snippet from an RIA I've been working on. It's pretty rough, and I've only got a few months of flex experience, so there may be all sorts of mistakes and

RE: [flexcoders] Re: Beta 3: Update Tree List Label

2006-05-20 Thread FineLine
Thanks for the reply Michael. I'll look forward to the next version. Will there be another Beta before release? Cheers, Tim Anyone know how to get these labels refreshing again? I tried the labs.adobe.com forum too, but no answers there. Cheers, Tim What you are seeing is a B3

[flexcoders] Re: Programmatic skinning example - buttons, buttonbar, panel, etc

2006-05-20 Thread Tim Hoff
That's what I'm talkng about Grae - exchange. :) -TH --- In flexcoders@yahoogroups.com, grae_hall [EMAIL PROTECTED] wrote: http://grae.halltech.com.au/xmxSkins/ It's an example with source of how to skin buttons with your own styles programmatically - it's a snippet from an RIA I've

Re: [flexcoders] Re: Programmatic skinning example - buttons, buttonbar, panel, etc

2006-05-20 Thread Jignesh Dodiya
can't see anything in the given link Grae... On 5/21/06, Tim Hoff [EMAIL PROTECTED] wrote: That's what I'm talkng about Grae - exchange. :) -TH --- In flexcoders@yahoogroups.com, grae_hall [EMAIL PROTECTED] wrote: http://grae.halltech.com.au/xmxSkins/ It's an example with source of how to