Re: [flexcoders] FF and Java sessions

2007-04-26 Thread Bjorn Schultheiss
Dimitrios, I actually get the same JSESSIONID value when i make an upload request to a servlet. Although i am making a POST request and send vars via the URLVariables object. example: var req:URLRequest = new URLRequest ( config_model.userConfig.datasetUpPath + /upload ); var

[flexcoders] Re: Problem using a subclass of ComboBox in actionscript

2007-04-26 Thread ronnlixx
can you post the code?

Re: [flexcoders] Re: accessing amf3 remote services using netConnection instead of removteObject

2007-04-26 Thread hank williams
Mark, Thanks so much. After no one answered earlier in the day I figured there was just no way to do this. But this is much better than using netConnection. So get some sleep you midnightcoder :) Hank On 4/26/07, Mark Piller [EMAIL PROTECTED] wrote: Hey Hank, I know you can invoke a

[flexcoders] Re: Round corners with Tab Navigator

2007-04-26 Thread scalenine
So like this (just in case someone is looking for a solution to the same problem): ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style TabNavigator{ tabStyleName: tabs;

[flexcoders] Re: Click through a Container

2007-04-26 Thread scalenine
Try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Button x=48 y=31 label=Press Me click=input.text='Im under a canvas';/ mx:TextInput x=170 y=31 id=input/ mx:Canvas x=10 y=10 width=152 height=69

Re: [flexcoders] Re: accessing amf3 remote services using netConnection instead of removteObject

2007-04-26 Thread hank williams
Mark, I spoke before I tested, which is always a mistake. I realized I am not sure, in this scenario, how to set up the event handlers for the remoteObject in this scenario. Thanks Hank On 4/26/07, Mark Piller [EMAIL PROTECTED] wrote: Hey Hank, I know you can invoke a remote object and

RE: [flexcoders] Re: accessing amf3 remote services using netConnection instead of removteObject

2007-04-26 Thread Peter Farland
You can listen at three levels... 1. At the service level... remoteObject.addEventListener(ResultEvent.RESULT, resultHandler); remoteObject.addEventListener(FaultEvent.FAULT, faultHandler); 2. At the operation/method level... remoteMethod.addEventListener(ResultEvent.RESULT,

Re: [flexcoders] Re: Click through a Container

2007-04-26 Thread Claudia Barnal
Yep, that did the trick... Thanks Juan! On 4/26/07, scalenine [EMAIL PROTECTED] wrote: Try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Button x=48 y=31 label=Press Me click=input.text='Im under a canvas';/ mx:TextInput

[flexcoders] Re: FF and Java sessions

2007-04-26 Thread Paul DeCoursey
I have had this same issue and in some cases I was able to get it to share the session when I make a get call first and then use the same URLRequest for the upload. This didn't work for me when I was uploading to a server different than the server the app was served from. What I did in that case

[flexcoders] Re: One Singleton many application

2007-04-26 Thread nxzone
My getInsttance look like this: public static function getInstance() : TimelineModelLocator { if ( modelLocator == null ){ modelLocator = new TimelineModelLocator(); } return modelLocator; } I found a solution, i in my first application i create a loadcontext: #[Bindable]

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
FDS Express is free provided you use for one application per server and the server has only one CPU. This is not exactly what I would call free. In fact it seems to me that FDS Express was delivered this way to provide a way to develop and test applications, which is very good. With this

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK. The better solution was a cross plataform solution, that's why I've been working with Flex. I expected, when I downloaded the alpha version of Flex 2.0, that at this moment Adobe would already havea .NET

[flexcoders] Re: NetConnection.Connect.Failed

2007-04-26 Thread arokyzxc
ye ,the typically or normally RTMP URL would looks more like this : rtmp://myserver:1935/myapplicaton/myappinstance , for the specific localhost server would be like this: rtmp://localhost:1935/myapplication/myappinstance, but it can also written : rtmp:/myapplication/myappinstance , because the

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread Bjorn Schultheiss
Think again. On 27/04/2007, at 11:26 AM, mvbaffa wrote: Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK.

[flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread mvbaffa
I beleive that Adobe wants to increase its participation in the software development market. .NET is very good and its number of developers is huge. That's why they should not be fogotten. This at least is naive. Adobe has one thing that Microsoft does not have, FLASH. This is the key to

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread Jeffry Houser
I think this is true for many enterprises. Not true for a lot of developers. At 09:41 PM 4/26/2007, Bjorn Schultheiss wrote: Think again. On 27/04/2007, at 11:26 AM, mvbaffa wrote: Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK. -- Jeffry

RE: [flexcoders] Re: FF and Java sessions

2007-04-26 Thread Dimitrios Gianninas
using WebLogic 8.1SP3 and I do have url rewriting turned on ( we are also in a cluster): session-param param-nameURLRewritingEnabled/param-name param-valuetrue/param-value /session-param Dimitrios Gianninas Developer Optimal Payments Inc. From:

[flexcoders] Re: Will ECMAScript ever support abstract classes?

2007-04-26 Thread ben.clinkinbeard
Thanks Matt, I wasn't able to find any real discussion of abstract support but I will take your word for it. :) I assume something like that would only be integrated in a major (AS4) release? Thanks again, Ben --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: You can see

RE: [flexcoders] FF and Java sessions

2007-04-26 Thread Dimitrios Gianninas
I am doing a POST as well... this problem only happens with FireFox...works fine with IE. So just trying to see what ppl do for FF. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Will ECMAScript ever support abstract classes?

2007-04-26 Thread Matt Chotin
Yeah, at the moment it'd have to be something big I think. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, April 26, 2007 8:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Will

Re: [flexcoders] Re: NetConnection.Connect.Failed

2007-04-26 Thread greg h
arokyzxc, Following at at the end is an excerpt from an article by Renaun regarding Flex FMS. The excerpt covers how to set in Flex/AS3 the correct NetConnection.objectEncoding when communicating with FMS 2. Full article is here: http://mxdj.sys-con.com/read/295379.htm Demo and downloadable

[flexcoders] Re: Will ECMAScript ever support abstract classes?

2007-04-26 Thread b_alen
Stop that wishfull thinking guys, the list is too long ;) I read somewhere that abstract classes / functions were meant to be in the release of AS3 but there was no time to do it for this release. They had to rewrite the whole engine and we gotta give them some credit for that. I really hope this

[flexcoders] Find and replace wih regex?

2007-04-26 Thread b_alen
I have a huge XML file with complex DTD. Now I have to parse this into something more usable by stripping the redundant tags and modifying some of them. I see two options: 1. Recursivly visit all the nodes and handle them with if statements. 2. Use RegEx to do some sort of find and replace. The

Re: [flexcoders] Re: Tile Extra Space

2007-04-26 Thread Pan Troglodytes
Don't you hate it when you find someone asking your exact question but there's no answer? Even better, you find TWO people asking it. I'm having this same problem and it's frustrating. The whole point of the Tile was to manage the layout for me and flow it on the window resizing. Right now I'm

[flexcoders] Games in Flex / Apollo?

2007-04-26 Thread Andrew
I'm working on a new blog that will center around game creation using Flex and Apollo. So far it seems that everyone has focused on traditional applications using Flex. I'm hoping to shake that up a bit with not only blogging about Flex-based games but helping to create some game libraries for

[flexcoders] Re: NetConnection.Connect.Failed

2007-04-26 Thread arokyzxc
greg h It's wonderful , I feel exciting about it . My app can talk to FMS sucessfully, the only thing that result in failing exactly was Action Message Format version .You do me a great favor ,thanks a lot. Best regards arokyzxc --- In flexcoders@yahoogroups.com, greg h [EMAIL PROTECTED] wrote:

Re: [flexcoders] ArrayCollections as source for charting

2007-04-26 Thread Prabhakar Shenoy
What Sunil said is abolutely right. but in your case I'll suggest you to do this. chartData = baseArrayCollection.source.slice(stIdx, enIdx); and bind chartData to your chart, calculate stIdx, enIdx based on thisWeek or thisMonth or thisQuarter. here I am assuming that

<    1   2