[flexcoders] Anyone reading Paul Williams blogging about Presentation Patterns?

2007-10-15 Thread Bjorn Schultheiss
Hey all, I'm attempting to get a discussion going here on this topic since Paul disabled comments on his blog. Is anyone else here reading this series? In particular his last post. Supervising Presenter http://weblogs.macromedia.com/paulw/archives/2007/10/ presentation_pa_2.cfm One of

[flexcoders] Flex AntTask installation

2007-10-15 Thread kutti kumar
Hai friends, i want to Flex Ant Task source file and how to install [migrate] read me file [steps]. plz send me urgent. -- V.Kumar

RE: [flexcoders] TileList.selectedIndices problem

2007-10-15 Thread Alex Harui
Well, I finally got around to looking at this. It is the same problem, in initGridView you are setting selectedIndices when dataProvider.length == 0. I would just defend against that. private function initGridView(selectedIndex:Number, indices:Array):void

RE: [flexcoders] access to variables of embedded swf

2007-10-15 Thread Alex Harui
You can, but it is wrapped by a MovieClipLoaderAsset which has to handle the embedded binary. For some embedded SWF: [Embed(SimpleCS3.swf)] public var simpleCS3:Class; and an instance of it called 'foo': public var foo:DisplayObject;

Re: [flexcoders] Re: lineHeight of TextArea

2007-10-15 Thread learner
yes it works ! thanks :) i was doing some typo error On 10/12/07, Randy Martin [EMAIL PROTECTED] wrote: Did you put the style in a css stylesheet or in a mx:Style block? The reason I ask is that I have an existing app that uses textareas, I went in and added the following: mx:TextArea

[flexcoders] addChild creationCompleteEffect

2007-10-15 Thread johantrax
Hi all, I create a TitleWindow with the PopupManager. The titlewindow should dynamically contain a canvas. So how did I do that. I gave the titlewindow a property called 'contentForm' which contains a canvas. Then in the creationComplete-event of the titlewindow, addChild(contentForm) is called

[flexcoders] g.drawRoundRectComplex() opper left corner never round

2007-10-15 Thread rleuthold
Hi, I use g.drawRoundRectComplex(0,0,w,h,2,2,2,2) to skin my buttons. When I look at the graphical output, all the corners are round with a radius of two except the upper left one which is drawn with a corner radius of 0. Anybody has an explanation for that ? I'm using the Flex 3 Beta 2 SDK.

Re: [flexcoders] Maven plugin out of memory problem

2007-10-15 Thread Ronen Naor
Well, As for the debug=true/false, it is definitely false and the size is still big, twice the size it should be. My guess is that it include more files that it actually needs, but I have no way to look inside the swf. (Do you know of any method to do it?) As for moving code to the swc, it is

[flexcoders] Getting a java.lang.NullPointerException when site accessed by URL

2007-10-15 Thread stephen50232
I have just moved a site over to a new server, and when I call the site using the URL, then this returns this error message: java.lang.NullPointerException message = faultCode:Server.Processing faultString:'java.lang.NullPointerException' faultDetail:'null' name = Error rootCause = (null)

[flexcoders] NetConnection.call Assistance

2007-10-15 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am having an issue with NetConnection.call as I am trying to update and convert one of my Flash8/FCS applications over to Flex2/FCS or FMS. Searching the net for an example of the Responder has not resulted me in any results which I can understand.

[flexcoders] DataGrid multi column sort - where is the sort arrow ?

2007-10-15 Thread rleuthold
Ok, I have implemented the multiple column sort (thanks for the help Alex). It works fine, but now the sortArrow disapeared and I can not change the sort direction. I've tried to use the placeSortArrow() function, but this function seems not to exist in the SDK I'm using (Flex 3 Beta 2). Why

[flexcoders] secure and non-secure channels for (ColdFusion) remoting

2007-10-15 Thread Tom Chiverton
Our live server runs both SSL and non-SSL, and we would like Flex applications to connect via SSL if possible, but fall back to non-SSL. Accordingly we set the channels for our destinations up like: channels channel ref=my-cfamf-sec/ channel ref=my-cfamf/ /channels with the normal channel

Re: [flexcoders] effect of canvas

2007-10-15 Thread Tom Chiverton
On Sunday 14 Oct 2007, [EMAIL PROTECTED] wrote: May I add effects, such as fade, to the canvas which is under alert popup window? How can I achieve this? Thank you in advance. Like http://www.rachaelandtom.info/node/1461 ? -- Tom Chiverton. Are you a great Flex programmer, who knows

[flexcoders] Debbugging of Flex swf running in ActiveX control

2007-10-15 Thread mnorrstrand
Hi, I'm looking for a way to use the debugger in Flex (the breakpoints, stepping etc) when running a flex-built swf in a standalone ActiveX control launched by a c++ application (backend built in c++, gui in Flex/AS3, using ExternalInterface to communicate). Any ideas or pointers to libraries to

[flexcoders] interactive-images

2007-10-15 Thread lruinelli
Hi all, I would like to use a very simple image-map (a simple interactive image, not gis!) in a flex gui to let user select things (e.g. select a way, select a building). Is it possible to do using flex? are there some samples available? Thanks!!! Saluti Lorenzo

[flexcoders] How to fully configure an AbstractService just using ActionScript?

2007-10-15 Thread Robert Csiki
I want to have an ActionScript file defining all my RPC services, and this will be included by everybody would need to perform RPC calls.. How can I fully define an AbstractService just using ActionScript? For example, say for RemoteObject, I want to define its methods and their own result/fault

[flexcoders] Re: QTP doesn't record any actions.

2007-10-15 Thread Anthony DeBonis
I want to confirm that this does work, I even demo'd it at MAX in Chicago, but I did find that every once and a while it will stop recording clicks. Be sure to turn off Tabbing in IE for sure. I just wish there were some other 3rd OS/free tools that could record and play back user test cases

[flexcoders] Re: Does anybody use JMeter for load testing?

2007-10-15 Thread Anthony DeBonis
Tom, http://jakarta.apache.org/jmeter/ says - JMeter does not execute the Javascript found in HTML pages - When you have used JMeter in the past is it to run a Flex/Flash app or http load test the backend services? Thanks in Advance, Anthony

Re: [flexcoders] Re: Does anybody use JMeter for load testing?

2007-10-15 Thread Tom Chiverton
On Monday 15 Oct 2007, [EMAIL PROTECTED] wrote: http load test the backend services? That. -- Tom Chiverton. Are you a great Flex programmer, who knows Cairngorm, and has done some ColdFusion work ? Would you like to work for a top 30 law firm in Manchester, UK ? Are not an agency ? If yes,

RE: [flexcoders] interactive-images

2007-10-15 Thread Jim Hayes
Without getting into the background (if it sounds crazy then believe me there is method to our madness), What we do is this : For every image map jpeg we display, there is a corresponding map image, where clickable elements are represented by a (individually) coloured area. When the user clicks

Re: [flexcoders] My Flex based web App doesn't work with SSL

2007-10-15 Thread Tom Chiverton
On Saturday 13 Oct 2007, [EMAIL PROTECTED] wrote: And if you want to upload user files over that SSL connection, you will be unable to in firefox, as the plugin cannot do that. Are you saying firefox can't upload over SSL ?!? -- Tom Chiverton. Are you a great Flex programmer, who knows

Re: [flexcoders] Web Hosting and RemoteObject

2007-10-15 Thread Tom Chiverton
On Sunday 14 Oct 2007, [EMAIL PROTECTED] wrote: Does my situation apply to any of these? No - you are using 'ColdFusion Remoteing'. They may have turned it off anyway. Or you may not be compiling against a local services-config.xml that matches what is seen on the remote server. -- Tom

[flexcoders] Problem with nested custom components and state events

2007-10-15 Thread vixiom
I'm having trouble working with custom components that are nested more than two deep. mx:App mx:states mx:State name = editState mx:AddChild custom:Component1 custom:Component2 When I set the App.currentState to 'editState' Component2 is made visible as a child of

[flexcoders] Flex modules and jms messaging

2007-10-15 Thread ivhaggi
Hi Group!! Im working in a project with modules. In one of them im using a consumer who is listening a JMS Topic. The problem is when i publish a java object to the jms topic the consumer enters to the function handler i defined, but the event.message.body is null. I repeat the same proof in

Re: [flexcoders] Maven plugin out of memory problem

2007-10-15 Thread Adam Duston
I use Flex Ant Tasks, and I haven't tried Maven for compiling Flex. But just a couple of thoughts: have you tried altering the max heap size using the java -Xmx option? I also wonder if the twice-the-size problem is a result of it compiling in debug mode. On 10/14/07, Ronen Naor [EMAIL PROTECTED]

[flexcoders] Panel resize based on its contents

2007-10-15 Thread kPraveen
Hi, I have a panel which is populated with dynamic number of datagrids inside. But the panel produces vertical scrollbars to view all the datagrids.I turned off the scrollbars, but data gets clipped off. But what i need is the panel to expand vertically without scrollbars so that i can see all

RE: [flexcoders] 1067: Implicit coercion of a value of type String to an unrelated type mx.core:Container.

2007-10-15 Thread Ryan Frishberg
It's because selectedChild takes a Container, not a String. Just change the type in your method declaration to: public function switchStack(stack_id:Container,title:String):void { When you call it, you are passing in a Container, so it should be fine. -Ryan

[flexcoders] Re: ComboBox populate list with remoteobject

2007-10-15 Thread T
Actually this is a good question, and I am in the same boat and also do not know the correct way to handle this. I have a value object in my data model that came from a table in a database via a RemoteObject call. The VO has an int field that is a foreign key reference to a record in the people

[flexcoders] Re: ComboBox populate list with remoteobject

2007-10-15 Thread T Bone
I think you could get at your data field from wherever you need it by referencing like so: ((customer_name as ComboBox).selectedItem as Customer).customer_id; So for example you could bind a label to that. T --- In flexcoders@yahoogroups.com, George Georgiou [EMAIL PROTECTED] wrote: Hi

[flexcoders] Re: ComboBox populate list with remoteobject

2007-10-15 Thread T
I just found a solution. It appears that Flex does not support setting data_field or selectedValue properties. (Why not?!?! This seems like a basic core feature) Ben Forta created a custom combo to sort of do it: http://www.forta.com/blog/index.cfm/2006/11/22/Flex-ComboBox-With-select\

[flexcoders] embed meta tag to embed xml?

2007-10-15 Thread Matthias Dittgen
Hello, is it possible to embed xml data into the swf using the Embed meta tag like embedding of SVG? [Embed(source=data/data.xml)] private var myXML:Class; And if true, how can I access this XML? Matthias

Re: [flexcoders] embed meta tag to embed xml?

2007-10-15 Thread Johannes Nel
http://www.peterjoel.com/blog/index.php?archive=2006_05_01_archive.xml#114770134881719072#114770134881719072 On 10/15/07, Matthias Dittgen [EMAIL PROTECTED] wrote: Hello, is it possible to embed xml data into the swf using the Embed meta tag like embedding of SVG?

Re: [flexcoders] Maven plugin out of memory problem

2007-10-15 Thread Ronen Naor
Yes, I did try java -Xmx without any luck. And I don't compile it in debug mode. Maybe I should test it also with Ant to see the difference. On 10/15/07, Adam Duston [EMAIL PROTECTED] wrote: I use Flex Ant Tasks, and I haven't tried Maven for compiling Flex. But just a couple of thoughts:

RE: [flexcoders] NetConnection.call Assistance

2007-10-15 Thread Samuel R. Neff
The second param to NetConnection.call is not a function but a reference to a flash.net.Responder instance (or subclass). Try this instead: import flash.net.Responder; private function SendUserMessage():void { ChatServer_nc.call(SendUserMessage, new Responder(SendMessageResponder),

Re: [flexcoders] Ant + SWC

2007-10-15 Thread Douglas McCarroll
Check out Antennae: http://code.google.com/p/antennae/ Douglas On 10/12/07, Richard Rodseth [EMAIL PROTECTED] wrote: A colleague is setting up Ant builds for our project, and hasn't found a (good) way to build a SWC without having to specify every class to include in the SWC. Any pointers

[flexcoders] Site Launch

2007-10-15 Thread Mike Krotscheck
Hey everyone- We here at Resource just launched a new site last Friday, built entirely in Flex. I figured some of you might get a kick out of it, since the designers really went out of their way to do something that's not just a datagrid and a few bindings. http://www.hp.com/printstudio/

RE: [flexcoders] embed meta tag to embed xml?

2007-10-15 Thread Tracy Spratt
You can also do this with the XML tag: mx:XML id=myData source=data/data.xml / Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: Monday, October 15, 2007 8:48 AM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] Re: Site Launch

2007-10-15 Thread Giles Roadnight
Yeah, it loooks pretty nice (but why open in a popup which I HATE!) I helped work on this site which is a slightly different looking flex site as well: http://fashion.canon-europe.com/searchandcreate.html On 10/15/07, candysmate [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com

[flexcoders] Re: ArrayCollection of Objects as data provider for DataGrid

2007-10-15 Thread myasandy2
That trace statement does work - the problem is getting that in the datagrid. What shows in the datagrid is: SchoolsAC. How do I get inside that to the property of the School? Thanks Sandy --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If for (var i:int = 0; i

[flexcoders] change click of button with state

2007-10-15 Thread johantrax
Hi again, Seems I'm not having my day today. The problem I'm now facing is: I have a button in a state called 'insert'. I have a state 'update' which is based on the insert-state. The button should have a different clickhandler in the updatestate. However using: mx:SetProperty

RE: [flexcoders] Site Launch

2007-10-15 Thread Seth Caldwell
Love the feel of this. Question - the dropdown menus and combo boxes look simply amazing. Is this a custom component or just styling on existing ones? They look so slick against the background gradient as well. Cheers to an amazing design. Seth _ From: flexcoders@yahoogroups.com

[flexcoders] Re: Site Launch

2007-10-15 Thread candysmate
--- In flexcoders@yahoogroups.com, Mike Krotscheck [EMAIL PROTECTED] wrote: Hey everyone- We here at Resource just launched a new site last Friday, built entirely in Flex. I figured some of you might get a kick out of it, since the designers really went out of their way to do something

[flexcoders] Re: Getting unexpected error while loading Images

2007-10-15 Thread lytvynyuk
Thank you Alex! Exactly that I did and it works well now. Also embedded loader progress into my component as well. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Subclass SWFLoader and override the regenerateStyleCache and notifyStyleChangeInChildren methods and have

[flexcoders] Testmail

2007-10-15 Thread Matthias Dittgen
my mails dont come through to flexcoders, but why???

[flexcoders] Re: ComboBox populate list with remoteobject

2007-10-15 Thread Randy Martin
Here's the code for the Adobe BindableComboBox.mxml that's generated by the ColdFusion Application Wizard. This will do what you want. ?xml version=1.0 encoding=utf-8? !-- \ // // Copyright (C) 2003-2006 Adobe

[flexcoders] Re: ColdFusion CFCs Not Returning Data

2007-10-15 Thread Randy Martin
I never got any response to this email. If no one knows anything about this problem, can anyone suggest where I might look? TIA, ~randy --- In flexcoders@yahoogroups.com, Randy Martin [EMAIL PROTECTED] wrote: OK. I've been pulling my hair out over this for about two weeks. I generated a

RE: [flexcoders] Re: ArrayCollection of Objects as data provider for DataGrid

2007-10-15 Thread Tracy Spratt
dataField=name should work. What do you see when you do that? And perhaps you should post the DataGrid declaration code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of myasandy2 Sent: Monday, October 15, 2007 10:00 AM To:

Re: [flexcoders] Testmail

2007-10-15 Thread Derrick Anderson
because you don't get a copy of your own messages On 10/15/07, Matthias Dittgen [EMAIL PROTECTED] wrote: my mails dont come through to flexcoders, but why???

RE: [flexcoders] Site Launch

2007-10-15 Thread Mike Krotscheck
Those are custom, separated into two different pieces (the target and the popup) so we can trigger on different events without breaking encapsulation. I'll pass your kudos on to our designers. Thank you very much :). Michael Krotscheck Senior Developer RESOURCE INTERACTIVE

[flexcoders] Re: Possible to remove highlight/select color from mx:List ?

2007-10-15 Thread Rick Schmitty
I'll answer my own question...and apologize for the spam! sorry This did the trick package com.mycompany.controls { import mx.controls.List; import flash.display.Sprite; import mx.controls.listClasses.IListItemRenderer; public class CleanList extends List

Re: [flexcoders] Site Launch

2007-10-15 Thread Farid Shahlavi
The look and feel are great, but it crashed my browser while navigating, also it's very cpu intensive and peaks my cpu at 100% while I was viewing the Gwen Stephanie design, also there was a runtime error when I was playing around with the Gwen Stephanie paper doll design section, you may want to

Re: [flexcoders] Anyone reading Paul Williams blogging about Presentation Patterns?

2007-10-15 Thread Paul Dale
I think the principle of extracting everything that can't be expressed as a simple data binding is solid. That makes it easy to inject a test data object (or series of data or data objects) to automate running through each presentation possibility. ...paul On 10/15/07, Bjorn Schultheiss [EMAIL

[flexcoders] odd behavior when editing in a datagrid

2007-10-15 Thread Ramsey, Robert L
Hi, I'm just playing around and learning how to handle it when users edit a datagrid. I did a copy and paste from the Flex help: ?xml version=1.0? !-- itemRenderers\events\EndEditEventFormatter.mxml -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script

[flexcoders] Possible to remove highlight/select color from mx:List ?

2007-10-15 Thread Rick Schmitty
Have a rather custom list that a client wants to maintain the scrollbar and drag and drop, but doesnt want the light blue highlight for the on mouse over and selected Would there be away to remove this or set it to clear? I see you can set the style color but not sure how to remove it all

[flexcoders] Re: change click of button with state

2007-10-15 Thread johantrax
nvm, just discovered mx:SetEventHandler --Johan --- In flexcoders@yahoogroups.com, johantrax [EMAIL PROTECTED] wrote: Hi again, Seems I'm not having my day today. The problem I'm now facing is: I have a button in a state called 'insert'. I have a state 'update' which is based on the

[flexcoders] Re: ArrayCollection of Objects as data provider for DataGrid

2007-10-15 Thread myasandy2
I have re-done a few things trying to follow what has been said. Below is the code to make the object, put it in an array (needed for another part of the project) and put it in and ArrayCollection. the class (School), array (Schools), and ArrayCollection (SchoolsAC) are all public and

[flexcoders] Tooltip

2007-10-15 Thread Guillermo Villasana
Is it possible to make the tooltip check that if it's contents go out of the visible area to change its position to be shown up or left of the cursor position? Thanks

RE: [flexcoders] Tooltip

2007-10-15 Thread Alex Harui
It should already be checking to see if the contents go out of the stage bounds. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guillermo Villasana Sent: Monday, October 15, 2007 8:46 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: ArrayCollection of Objects as data provider for DataGrid

2007-10-15 Thread Alex Harui
You're not using binding syntax mx:DataGrid x=48 y=10 width=576 dataProvider={SchoolsAC} From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of myasandy2 Sent: Monday, October 15, 2007 8:30 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Site Launch

2007-10-15 Thread Mike Krotscheck
Can you do me a huge favor and send me a personal email with the steps you took to get the application to crash (Plus some system profiles)? We've been hunting for that for a while now. As for why Flex and not Flash: I wasn't involved in the decision myself, but I assume that Flex' support of

Re: [flexcoders] Tooltip

2007-10-15 Thread Guillermo Villasana
Mmm... then it must be because of the HTML component I am using. Alex Harui wrote: It should already be checking to see if the contents go out of the stage bounds. *From:* flexcoders@yahoogroups.com

[flexcoders] Re: ColdFusion CFCs Not Returning Data

2007-10-15 Thread Mike Collins
Sounds like a job for Charles. http://www.xk72.com/charles/ a great debugging tool when trying to see what's crossing the wire between Flex and CF.

[flexcoders] Re: Site Launch

2007-10-15 Thread droponrcll
--- In flexcoders@yahoogroups.com, Giles Roadnight [EMAIL PROTECTED] wrote: Yeah, it loooks pretty nice (but why open in a popup which I HATE!) I helped work on this site which is a slightly different looking flex site as well: http://fashion.canon-europe.com/searchandcreate.html On

RE: [flexcoders] odd behavior when editing in a datagrid

2007-10-15 Thread Alex Harui
Prpbpably when the focus goes to the alert, the validator fires again since the datagrid lost focus and another alrt goes up which... I do not recommend alerts and itemeditors From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramsey,

[flexcoders] Re: Web Hosting and RemoteObject

2007-10-15 Thread Anthony DeBonis
Also check that they are using CF 7.0.2 + because 7.0.1 does not have remoting as far as I have seen.

RE: [flexcoders] Panel resize based on its contents

2007-10-15 Thread Alex Harui
The panel sets the dg height unless your code did. Try getExplicitOrMeasuredWidth and viewMetrics From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kPraveen Sent: Sunday, October 14, 2007 6:09 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
So I've inherited a flex app. It's been months since I've looked at Flex and Cairngorm. The time change coming up is starting to rear it's ugly head and I'm trying to get this going and fixed before Nov 4th. I've got the app all set up, checked it out through CVS and there's an error, right on

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Anatole Tartakovsky
'Unknown destination 'EmployeeServiceRO' - please check you remoting configurations On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: So I've inherited a flex app. It's been months since I've looked at Flex and Cairngorm. The time change coming up is starting to rear it's ugly head and

RE: [flexcoders] Flex modules and jms messaging

2007-10-15 Thread Alex Harui
Which swf the as data class and the webservices are in may make a difference From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ivhaggi Sent: Saturday, October 13, 2007 2:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex

RE: [flexcoders] secure and non-secure channels for (ColdFusion) remoting

2007-10-15 Thread Battershall, Jeff
Tom, I noticed similar behavior when I had stipulated an incorrect endpoint for an rtmp channel - it didn't fail over, the app just hung, perhaps due to a runtime error - you could dump the channelFault event and see what you get there. I haven't tested but there is the connectTimeout property

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
mx:RemoteObject id=employeeService destination=EmployeeServiceRO result=event.token.resultHandler( event ) fault=event.token.faultHandler( event ) showBusyCursor=true / Where? I havent looked at this code since March? And even then it wasnt me who set this up.

RE: [flexcoders] Debbugging of Flex swf running in ActiveX control

2007-10-15 Thread Alex Harui
The forum archives should have an explanation of how to do this From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mnorrstrand Sent: Monday, October 15, 2007 5:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Debbugging of Flex

RE: [flexcoders] DataGrid multi column sort - where is the sort arrow ?

2007-10-15 Thread Alex Harui
Dg ui does not support multicol sort. I recommend custom dg headerrenderers that will show the columns involved. Our adg is using numbers in the arrows iirc From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rleuthold Sent: Monday,

Re: [flexcoders] My Flex based web App doesn't work with SSL

2007-10-15 Thread Richard Rodseth
I'm also struggling with file uploads to Tomcat over SSL, using FileReference. The uploads work great without SSL. With SSL they fail on all tested browsers, not just FireFox. I'm adding the sessionId as described here: http://thanksmister.com/?p=59 but I don't have a crossdomain.xml file, since

[flexcoders] Re: ArrayCollection of Objects as data provider for DataGrid

2007-10-15 Thread myasandy2
Thanks - now it works like a charm!!! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You're not using binding syntax mx:DataGrid x=48 y=10 width=576 dataProvider={SchoolsAC}

RE: [flexcoders] Re: Site Launch

2007-10-15 Thread Seth Caldwell
Hate to say it, guys, but neither of these sites launched during my attention span (with DSL). Hope you have really motivated visitors! Agree; I have DSL which is pretty fast and it took forever. It could be that all of us were loading at the same time and their server was slowed. But even

Re: [flexcoders] Maven plugin out of memory problem

2007-10-15 Thread Christian Edward Gruber
Could you post your pom.xml file? I think the obvious answers are exhausted. Also, while it may be a problem with the plugin, the plugin just uses the compc and mxmlc compilers from the flex SDK, so anything not explicitly set by the plugin defaults to whatever they default to. I've

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
I think it has to do with Tomcat... I installed the log4j logger and watching the stuff in the Eclipse IDE.. In the flex-remoting file I have : destination id=EmployeeServiceRO properties sourcecom.alltel.rapid.aopscheduler.business.EmployeeDelegate /source

RE: [flexcoders] My Flex based web App doesn't work with SSL

2007-10-15 Thread Seth Caldwell
Did you set the response headers correctly for IE? (cache control and pragma) Araul outlines the issue here with links to technotes and microsoft admitting they suck. http://arulprasad.blogspot.com/2006/02/points-to-remember-when-using-ssl-ie_ 15.html (I link to this one because you're also

RE: [flexcoders] odd behavior when editing in a datagrid

2007-10-15 Thread Ramsey, Robert L
Thanks, that does make perfect sense to me. Bob From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Monday, October 15, 2007 11:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] odd behavior when editing in a datagrid Prpbpably when the

[flexcoders] Flex is becoming unviable

2007-10-15 Thread danielvlopes
Hello, i create a big project in flex using modules, RSLs and etc... This project is real client, and he accept test flex in you website. Everything works fine (ignoring the 500kb framework file it is necessary for users to access the site.) Now i thinking use flex in small projects like simple

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
I checked the WEB-INF/web.xml and have the roles defined there auth-constraint role-nameAOPScheduler-BASICAM/role-name role-nameAOPScheduler-BASICINQ/role-name /auth-constraint security-role description The role that is required to log

[flexcoders] value of clicked/focused cell in a datagrid

2007-10-15 Thread Ramsey, Robert L
Ok, I am definitely being a real idiot here. All I want to do is find out the value of cell that a user has clicked on, tabbed into, or entered into. I can get the row number and column number, but I can't find the syntax to get the data out of the arraycollection. For other languages, I'd just

[flexcoders] Beta 1 - expires in 15 days

2007-10-15 Thread Patrick Lemiuex
OK, I'm not ready to take this project to Flex Beta 2 - but i need a new serial? What to do? Thanks, Patrick

[flexcoders] error in AIR application

2007-10-15 Thread Tony Alves
I am getting an error on a line in my AIR application: ReferenceError: Error #1069: Property _bindings not found on components.EmployeeListPanel and there is no default value. at

Re: [flexcoders] Flex is becoming unviable

2007-10-15 Thread Douglas Knudsen
ugh take a look at the release notes for FB3 Beta 2 and be sure you are looking at the released version of your SWFs, not the debug versions that are generated by default only now. DK On 10/15/07, danielvlopes [EMAIL PROTECTED] wrote: Hello, i create a big project in flex using modules, RSLs

RE: [flexcoders] Beta 1 - expires in 15 days

2007-10-15 Thread Jim Hayes
Can you use the beta1 compiler in the beta2 IDE? (Well, I'm pretty sure that *one* can, but I've not tried it myself I'm afraid). The 2 installations will coexist (that I can confirm, under XP at least), so you've not much to lose in trying. -Original Message- From:

[flexcoders] Adding custom events to the pre-loading sequence

2007-10-15 Thread M@ Sheppard
I've built a preloader - and it works fine, but it hides itself a little too soon. I load a few things from the server after the application is running, and want that preloader to stick around until a specific result method has fired. I can't figure out how to do this - how to access the custom

[flexcoders] Re: error in AIR application

2007-10-15 Thread Tony
Fixed, but still want to know what is happening in AIR that would not be happening in Flex 2 application. I initialized my binding variable to an instance of the object. --- In flexcoders@yahoogroups.com, Tony Alves [EMAIL PROTECTED] wrote: I am getting an error on a line in my AIR

[flexcoders] Simluate async method

2007-10-15 Thread Claudia Barnal
Hi, How could I make an async method in actionscript. Something like this: function doSomething():void { asyncCall(makeOrangeJuice, orageJuiceReady); } function makeOrangeJuice():void { ExternalInterface.call(openModalAlert); } function orageJuiceReady():void { trace(No timeout

[flexcoders] Re: How do I remove/modify the default effect on List-based drag drop?

2007-10-15 Thread williamkusumo
Wow, really?! That's odd, it seems very un-Flex-like to set something like that in stone. Thanks, Alex! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: There is no API to control those effects. I don't see any obvious workaround either.

[flexcoders] Layout Question

2007-10-15 Thread jch92592
All, I am new to Flex and found a layout I'd like to mimic. On the Flex.org site, under the Showcase page: http://flex.org/showcase/ Then Browse, is this layout a styled dataGrid? a styled list? Any suggestions would be appreciated. TIA, john

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
Am I looking in the right area? Am I completely off target? Is there anything I can check? Thanks On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: I checked the WEB-INF/web.xml and have the roles defined there auth-constraint role-nameAOPScheduler-BASICAM/role-name

[flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread tim_buntel
You can learn about the export release version wizard by watching the video at http://labs.adobe.com/technologies/flex/videos/exportreleasewizard/ - it explains why this change was made and how you can use this new feature to create an optimized version of your application. Tim --- In

Re: [flexcoders] Flex is becoming unviable

2007-10-15 Thread Brendan Meutzner
I can't remember the exact terminology for it, but one of the goals for Flex generated swfs involves caching the common framework files on client machines, to avoid repeated download, thus cutting the swf size drastically. I'm sure Ales or Matt can speak more to this feature. Brendan On

Re: [flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread Douglas Knudsen
Holy cf_cows / Batman! Welcome to Flexcoders Tim! DK On 10/15/07, tim_buntel [EMAIL PROTECTED] wrote: You can learn about the export release version wizard by watching the video at http://labs.adobe.com/technologies/flex/videos/exportreleasewizard/ - it explains why this change was made

[flexcoders] Re: Flex is becoming unviable

2007-10-15 Thread danielvlopes
The terminology is framework caching and this generate a huge file with 500kb and all this giant file must be load before your swf. --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: I can't remember the exact terminology for it, but one of the goals for Flex

Re: [flexcoders] Simluate async method

2007-10-15 Thread Ralf Bokelberg
Probably you could open the alert using a timeout in JavaScript Cheers Ralf. On 10/15/07, Claudia Barnal [EMAIL PROTECTED] wrote: Hi, How could I make an async method in actionscript. Something like this: function doSomething():void { asyncCall(makeOrangeJuice, orageJuiceReady); }

RE: [flexcoders] Re: How do I remove/modify the default effect on List-based drag drop?

2007-10-15 Thread Alex Harui
Yup, it is not very friendly. Please file a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Monday, October 15, 2007 11:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do I remove/modify the

RE: [flexcoders] Adding custom events to the pre-loading sequence

2007-10-15 Thread Alex Harui
One possibility is to draw an identical popup over the app when the app starts up. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of M@ Sheppard Sent: Monday, October 15, 2007 10:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

  1   2   >