RE: [flexcoders] how to create a component in AS?

2006-07-05 Thread Bjorn Schultheiss
Youll want to create a new flash.display.TextField instance. Whats cool is you could compile it in the flash 9 ide with graphical mcs. Then reference those child elements once imported into a flex app. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies

[flexcoders] Re: Cairngorm Responder interface changes

2006-07-05 Thread Tim Hoff
Hi Jesse, Let me start by saying that I acquiesce; no more viewHelpers. All code has been rolled into the view. For component oriented development, it makes sense. Concerning your cogent points of view: 1) ResultEvent FaultEvent events: Not sure how much of an impact this makes in

RE: [flexcoders] CF Flash Remoting project results in Jrun servlet error

2006-07-05 Thread Bjorn Schultheiss
I dont think its building the directory. You will need to confirm that it exists in wwwroot/test/bin/ Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of yaagcur Sent:

RE: [flexcoders] Server push from ColdFusion without FDS?

2006-07-05 Thread Bjorn Schultheiss
Nah you're dreaming :) I think he's saying that coldfusion is configured to work with FDS to achieve push. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent:

Re: [flexcoders] Re: Cairngorm2: ViewLocator - ViewHelper

2006-07-05 Thread Bjorn Schultheiss
Hey Jesse, Any idea on why ViewHelper and ViewLocator classes are in Cairngorm 2 if they have been deemed un-beneficial? I myself felt obligated to see if there was a valid use for this based on the fact that they were included. Regards, Bjorn Schultheiss Senior Flash

RE: [flexcoders] Re: How to integrate Flash and Flex well done ?

2006-07-05 Thread Bjorn Schultheiss
I guess Flash 9 solves the issue of creating new flash content for flex applications. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Versweyveld | VERSO Sent:

RE: [flexcoders] FlexUnit, Web Service

2006-07-05 Thread Bjorn Schultheiss
Besides dummying the webservice result can you place the assert in the handler. I am interested in this and will run some tests myself later on. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com

[flexcoders] ServiceLocator - does it have to be MXML?

2006-07-05 Thread Bjorn Schultheiss
Using the mxml defined service you would need to set your handlers. So when calling the service, Var call:AsyncToken = service.GetDataByGrouping(); Call.resultHandler = blah Same for fault (excuse word formatting the code) In terms of does it have to be mxml, obviously not, but

[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat

2006-07-05 Thread polestar11
Thanks Shannon You have pointed me in the right direction. Just realised that I have a lot more to learn, reading the manuals. Cheers Tracy Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email.

[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat

2006-07-05 Thread polestar11
... I mean thanks Tracy Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~- --

RE: [flexcoders] Re: Flex 2 Icon in PopUpMenuButton

2006-07-05 Thread Jason Hawryluk
Thanks for your help, but no, it does not solve the problem. Perhaps Adobe or others could contribute to this for a better solution, or be aware of thebugs/items/work arounds. A couple of things with this control. After a little testing. 1: The lableFunction does not work at all. No

Re: [flexcoders] Array of object types returned from remote objects

2006-07-05 Thread Tom Chiverton
On Tuesday 04 July 2006 17:02, João Fernandes wrote: Tom if you want to avoid casting all away in your flex app you can follow the new rules for mapping cfcs AS. Instead of returning an array of struts, return an array of components with cfproperty / define in them (very same order or it

Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-07-05 Thread Tom Chiverton
On Tuesday 04 July 2006 15:47, Tom Chiverton wrote: Has anyone else had problems using the printJob classes ? If I try and print a dynamicaly instantiated GUI component, the job silently fails. If I create the same component in line in the page, the job works well. Please can someone confirm

Re: [flexcoders] Flex and commercial use

2006-07-05 Thread Tom Chiverton
On Tuesday 04 July 2006 18:50, Ville Walveranta wrote: Yeah, it’s the IDE that costs $499, but it’s not necessary to create Flex apps (as the compiler is free), though it does make the life with Flex much easier :-). I'm not so sure as I was. But then I was happy with CFEclipse rather than

RE: [flexcoders] Array of object types returned from remote objects

2006-07-05 Thread João Fernandes
Tom, How can you have missed everything ColdFusion team has been speaking about all this time? ColdFusion Extensions can make your life a lot easier (believe me). Generate those files and you'll see what must implement, but basically 1) in your AS :

[flexcoders] ScrollBar eating content

2006-07-05 Thread Jean-Luc ESSER
In beta3, when using an auto scroll bar in a Box with content sized to 100% width and no height, when the scrollbar appeared, the content was resized accordingly so the scroll bar could fit in. In final version, the scroll appears on top of the content, thus eating some of it ! I find

RE: [flexcoders] Re: Cairngorm2: ViewLocator - ViewHelper

2006-07-05 Thread Steven Webster
Guys, There's a lot of passion, misconception and misinformation around view helpers and their usefulness. However, a fact of life is that there ARE a number of projects in production where developers have made their own decisions to use ViewLocators and ViewHelpers, and in doing so have

Re: [flexcoders] Displaying the error string from a web service?

2006-07-05 Thread Paul Norton
Reading other posts here got me to looking at the resultFormat attribute on the operation element. Setting that attribute cleared up my issues. Thanks, Paul Carson Hager wrote: Hey Paul, All of the details are definitely coming back and should be accessible. You mention you're getting

[flexcoders] Compiling Flex--thank you!

2006-07-05 Thread John
Hi,I would like to thank everybody who has offered me help`-`I can't figure out how to compile flex applications using eclipse (or any IDE) on the Mac, and have given up on it. It worked fine in beta 3, but the final release does not work for me!I guess I will have to wait for flex builder to

RE: [flexcoders] Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread Artur Kordowski
@Tom Why not use a delegate ? The delegate class is not longer available in the flex framework, so I can't use it. @Jester I've got still an error. Here my code how I've build it. Service.mxml - subclass from ServiceLocator ?xml version="1.0"

[flexcoders] Re: Beta 3 WebService Result

2006-07-05 Thread someguy7_7
Our webservices are written in J2EE 1.5 with Axis. I can get the specific version of Axis if you think it matters. Here is part of wsdl that pertains to the question. Sorry about the formatting. complexType name=SearchResponse sequence element maxOccurs=1 minOccurs=0 name=items

[flexcoders] Cairngorm 2 SequenceCommand question

2006-07-05 Thread der_kotty
Ok, here's another question about the new Cairngorm 2 release: In the org.nevis.cairngorm.control.FrontController I used to add commands by using addCommand( commandName : String, commandRef : Command ). This enabled me to use the addCommand method more than once with the same SequenceCommand

[flexcoders] how to call Webservice within cairngorm2 and flex2 stable?

2006-07-05 Thread saicn_1205
how to call Webservice within cairngorm2 and flex2 stable? i have change the cairngorm2 alpha 's sample login to the caingorm2and flex 2 stable. then i wanna to change the service from HttpService to Webservice; i take services.mxml as: ?xml version=1.0 encoding=utf-8? cairngorm:ServiceLocator

[flexcoders] Err - seems simple but.... convert from a String to a ByteArray?

2006-07-05 Thread davidgolds
How can I convert from a String to a ByteArray? ByteArray to String was easy courtesy of ByteArray.toString but I can't see a way to do the reverse. Thanks Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new

[flexcoders] how to call Webservice within cairngorm2 and flex2 stable?

2006-07-05 Thread saicn_1205
how to call Webservice within cairngorm2 and flex2 stable? i have change the cairngorm2 alpha 's sample login to the caingorm2and flex 2 stable. then i wanna to change the service from HttpService to Webservice; i take services.mxml as: ?xml version=1.0 encoding=utf-8? cairngorm:ServiceLocator

RE: [flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread scox
Hi Tim, Thanks for this, unfortunately that's going to be a no-go. Basically I have an item renderer which is used create an 'edit' button. Upon clicking that the view will change to give more detail on that item. The selectedIndex of the datagrid could be different to the row they actually

[flexcoders] file uploads

2006-07-05 Thread Clint Tredway
I am using the code from the docs and Flex Builder is telling this 1120: Access of undefined property fileRef. and that the selectHandler and completeHandler are undefined properties as well. I am declaring the var fileRef, so i dont get why its doing this... very frustrating... -- diabetic?

[flexcoders] A datagrid with a separate scrollbar

2006-07-05 Thread hank williams
I want to implement a datagrid, but not use the normal scrollbar, or not to use it where it is currently placed. Basically I want to be able to scroll, but have the datagrid look as if the scrollPolicy was no scroll bars. I want to put a bar in an entirely different location. The scrollbar

[flexcoders] Menu - handle sub-menu clicks

2006-07-05 Thread chrislee943
Hello all, There is a need to handle MenuEvent.ITEM_CLICK for sub-menus of the standard Menu component. Basically I need this for a case when there is a huge amount of data to show in the menu and click on sub-menu would show a new menu from the current level. So event must contain at least id of

Re: [flexcoders] A datagrid with a separate scrollbar

2006-07-05 Thread Jeremy Lu
If you could provide some visual mock-ups, I might be able to help :-)On 7/5/06, hank williams [EMAIL PROTECTED] wrote: I want to implement a datagrid, but not use the normal scrollbar, or not to use it where it is currently placed. Basically I want to be able

[flexcoders] Any way to tell a hbox to be only as wide as is needed for contents

2006-07-05 Thread hank williams
I have a variety of situations where I want a box to be just big enough to hold its contents, and to just resize other stuff to accomodate. One of the most important reasons for this is localization. I want to support lots of languages and I dont want to have to hard code widths to get things

Re: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 03:45, John wrote: I can't figure out how to compile flex applications using eclipse (or any IDE) on the Mac, and have given up on it. Just use the command line. It's fine. If not, post what you typed, what it did, and your code :-) -- Tom Chiverton

[flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread a a
Hi all! I have just a simple question for starting develop Flex application with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can this be a good configuration for application developing or maybe it's better using JRun with jdk1.4?I hope that you understand my bad english :PThanks

[flexcoders] Excel, Flex and Database

2006-07-05 Thread Ritesh Jariwala
Hi All, I have question regarding application development. I need to develop little application which can load data from database using flex into Microsoft Excel. Is it possible that flex can load the excel data or suppose if I made changes in excel sheet and click on save it

[flexcoders] application first crashes,next time runs ok

2006-07-05 Thread Adrian Ionut Beschea
Hello, Flex newbie here.I am using Flex 2.0 (standard version, no Data Services) and the Cairngrom 2.0 project and I don't know if this has anything to do with my problem. Basically I have a login form. When I send my user and password for the first time I get an RefferenceError.

Re: [flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 10:06, [EMAIL PROTECTED] wrote: Thanks for this, unfortunately that's going to be a no-go. Basically I have an item renderer which is used create an 'edit' button. Upon clicking that the view will change to give more detail on that item. The selectedIndex of the

Re: [flexcoders] Re: Cairngorm Responder interface changes

2006-07-05 Thread JesterXL
Tim, as long as you don't go off and use AJAX, we'll all love you no matter what you do. 1. Nope. The common use case is remoting calls, webservices 2nd, httpservices 3rd. Everyeone will get ResultEvents FaultEvents. Those who don't are using custom stuff, and thus know what they are

Re: [flexcoders] Cairngorm 2 SequenceCommand question

2006-07-05 Thread Joshua Garnett
Hmm... My e-mail got cut off for some reason.For each, of my SequenceCommands I then put the following after the execute statement: var sequenceEvent:SequenceEvent = SequenceEvent(cairngormEvent); nextEvent = sequenceEvent.nextEvent;Then of course at the end of the execute or onResult I

Re: [flexcoders] Re: Cairngorm2: ViewLocator - ViewHelper

2006-07-05 Thread JesterXL
'Cause, there are those that like them and I'm sure Adobe is being responsive to the community, and ViewLocator's have their valid uses. - Original Message - From: Bjorn Schultheiss To: flexcoders@yahoogroups.com Sent: Wednesday, July 05, 2006 3:06 AM Subject: Re: [flexcoders]

Re: [flexcoders] Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 07:20, Artur Kordowski wrote: Why not use a delegate ? The delegate class is not longer available in the flex framework, so I can't use it. It was never in the flex framework, it's a Cairngorm convention. -- Tom Chiverton

[flexcoders] Excel, Flex Database

2006-07-05 Thread Ritesh Jariwala
Hi All, I have question regarding application development. I need to develop little application which can load data from database using flex into Microsoft Excel. Is it possible that flex can load the excel data or suppose if I made changes in excel sheet and click on save it

Re: [flexcoders] Cairngorm 2 SequenceCommand question

2006-07-05 Thread Joshua Garnett
There are a couple of ways that you can do it. 1) Have your command extend SequenceCommand and then in the command's constructor call super(nextEvent). or 2) You can dynamically assign the nextEvent by passing it to the command. This is the way I prefer, since it allows you to build different

RE: [flexcoders] FlexUnit, Web Service

2006-07-05 Thread Brian
I tried adding the asserts in the handler. If the asserts fails, it causes a crash of the application. I tested this by making forcing an assert fail. It seems, since the handler is not part of the test suite, the FlexUnit is crashing (on failure only). Must be looking for the test that is

[flexcoders] Re: Err - seems simple but.... convert from a String to a ByteArray?

2006-07-05 Thread bhaq1972
try something like this var byteArr:ByteArray = new ByteArray(); byteArr.writeUTF(hello); trace(byteArr.length); byteArr.position = 0; trace(byteArr.readUTF()); (something i tried in beta2...so who knows) --- In flexcoders@yahoogroups.com, davidgolds [EMAIL PROTECTED] wrote: How can I

[flexcoders] Validators and iconName

2006-07-05 Thread Rajesh C.
1). What is the equivalent for validationError() function in Flex2.0 ? * Can i use ValidatorResult Constructor for this ? 2). What is the equivalent for iconName in Flex2.0 ? * I want to use this to put an icon on a Button Regards, Rajesh C. Yahoo! Groups

[flexcoders] Re: Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread ben.clinkinbeard
I am also having trouble with Web Services in Cairngorm 2. The execute method of my command is being called, but the WS call is not being made, much less handled correctly. Can someone tell me what I am missing here? From Services.xml: mx:WebService id=industryAndSizeIdsService

Re: [flexcoders] Flex 2 - Drag-n-Drop with TabNavigator

2006-07-05 Thread Paul Andrews
- Original Message - From: Wayne McFetridge To: flexcoders@yahoogroups.com Sent: Wednesday, July 05, 2006 1:13 AM Subject: [flexcoders] Flex 2 - Drag-n-Drop with TabNavigator Happy Independence Day to American Based Flex developers.I am trying to drag and

[flexcoders] Remote Services using Flex2 Data Services final released

2006-07-05 Thread arianrechia
I am trying to setup Remote Services using Flex2 Data Services with integrated JRUN and Flex Builder2. Unfortunately, I am receiving the following error: faultDetail = Channel.Connect.Failed error NetConnection.Call.Failed the error message: (mx:rpc:Fault)#0 errorID = 0 faultCode =

Re: [flexcoders] Excel, Flex Database

2006-07-05 Thread Darron J. Schall
Yes, it's possible for Flex to load Microsoft Excel data. However, it's not easy. You have to write a custom parser for the .xls file format. You can pull the raw binary data in via URLLoader setting it's dataFormat to DataFormat.BINARY, and then parse the .xls data into something usable

Re: [flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread scox
I had hoped to be able to keep the itemRenderer completely seperate to the Datagrid - the rowIndex would have been exactly what I was after. The problem would arise when multiple rows are selected. How would I know which itemRenderer was clicked on? Thanks for your suggestion, I may have to just

RE: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Shannon Hicks
Just keep in mind that Adobe has not announced any plans to release a Mac version. They did remark that if they do release a Mac version (and we all assume they will), it won't be until the next major revision of Flex Builder. (Does that mean Flex Builder 3? If so, that's 16+ months

Re: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread John
Hi Tom, Thanks so much for your helpl`-` here is a very simple example: ---Flex.mxml--- ?xml version=1.0 encoding=UTF-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Label text=Hello World/ /mx:Application ---compile--- (1) open termnial (2) cd flex (3) java -jar

Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-07-05 Thread Tom Chiverton
(resend as appears to have vanished) On Tuesday 04 July 2006 15:47, Tom Chiverton wrote: Has anyone else had problems using the printJob classes ? If I try and print a dynamicaly instantiated GUI component, the job silently fails. If I create the same component in line in the page, the job

[flexcoders] Re: Err - seems simple but.... convert from a String to a ByteArray?

2006-07-05 Thread drome.dario
var str:String = Hi David Golds; var bin:ByteArray = new ByteArray(); bin.writeUTFBytes( str ); Hope it helps Regards. --- In flexcoders@yahoogroups.com, davidgolds [EMAIL PROTECTED] wrote: How can I convert from a String to a ByteArray? ByteArray to String was easy

[flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread bhaq1972
from what your describingyour itemRenderer is an 'edit' button. the itemRenderer is appearing in a datagrid. save the row index during a datagrid.itemFocusIn event eg private var savedIndex:int; mx:DataGrid itemFocusIn=saveIndex(event) private function saveIndex(event:DataGridEvent):void {

Re: [flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 14:02, [EMAIL PROTECTED] wrote: problem would arise when multiple rows are selected. How would I know which itemRenderer was clicked on? Don't allow multiple selects then :-) -- Tom Chiverton This email is sent

[flexcoders] Re: A datagrid with a separate scrollbar

2006-07-05 Thread bhaq1972
Firstly, you need to make sure scrollPolicy is swicthed off eg mx:DataGrid id=dg verticalScrollPolicy=off then for example, have a button which changes the scrollposition as follows mx:Button label=scrollDown click=dg.verticalScrollPosition +=10 autoRepeat=true

Re: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 14:28, John wrote: (3) java -jar {flex}/lib/mxmlc.jar -flexlib {flexdir}/frameworks/Flex.mxml This command line instructions came from: http://labs.adobe.com/wiki/index.php/Flex_Builder:tutorials:compiling_mxmlc ---Error--- Unable to access jarfile

[flexcoders] Re: CF Flash Remoting project results in Jrun servlet error

2006-07-05 Thread yaagcur
Bjorn You are spot on. It is not building the directory - at least not in the right place So although I am setting defaults of flex root folder: C:\CFusionMX7\wwwroot flex server url: http://localhost:8500/ It is actually writing the bin folder to the default for the project contents viz.

[flexcoders] Re: Webservice Results Format

2006-07-05 Thread Will Morgan
Sorry, screwed up on the results, but I think you get my point...W.On 7/5/06, Will Morgan [EMAIL PROTECTED] wrote:Hi All,The results from the webservice I'm using look something like this: orderheaderorder12345/order /header/headerslines line /line/orderIt's similar to a master / detail

[flexcoders] Webservice Results Format

2006-07-05 Thread Will Morgan
Hi All,The results from the webservice I'm using look something like this:orderheaderorder12345/order /header/headerslines line /line/orderIt's similar to a master / detail view. I can only bind to either headers or orders. headersDataGrid.dataprovider =

RE: [flexcoders] Excel, Flex Database

2006-07-05 Thread Ritesh Jariwala
Yea darron, My question was not loading xls file into Flex Client. My question was how can we integrate flex data services to xls file so if I add record in excel file and click on save button will reflect changes in database. I know its possible with flex data services..i even saw

Re: [flexcoders] Re: listData rowIndex ) [f2 final]

2006-07-05 Thread scox
Unfortunately not an option. Can anyone else confirm this is a bug? Or am I doing something stupid? -Original Message- From: Tom Chiverton [EMAIL PROTECTED] Sent: Wednesday, July 5, 2006 3:12 pm To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: listData rowIndex ) [f2

RE: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Ted Patrick
Shan, Not exactly true http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_builder_on.cfm Via the Flex Team Blog June 30, 2006 Flex Builder on the Mac There have been many questions over the last few days as to Adobe's intentions for releasing Flex Builder

Re: [flexcoders] Excel, Flex Database

2006-07-05 Thread Tom Chiverton
On Wednesday 05 July 2006 15:17, Ritesh Jariwala wrote: can we integrate flex data services to xls file so if I add record in excel file and click on save button will reflect changes in database. With Enterprise FDS, you set the xls file as a CF datasource, and FDS will send the updated data

RE: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Shannon Hicks
Thanks for the link! Turns out my information was 3 days older. Perhaps I can get that MacBook Pro sooner than I thought? :) Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ted PatrickSent: Wednesday, July 05, 2006 10:07 AMTo:

RE: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Ted Patrick
I have a MacBook Pro and run bootcamp + Flexbuilder. Many devs internally are running Parallels to use Flex Builder and the set-up works great. The entire Flex Builder team got MacBooks for development of the Mac version of Flex Builder. Adobe is very serious about making FlexBuilder

RE: [flexcoders] change to mm.cfg setup in FP9?

2006-07-05 Thread Matt Horn
the only thing I can think of is the location of the mm.cfg file. what do you mean by root of my user folder? It should be in the directory specified by a combination of the HOMEDRIVE/HOMEPATH environment variables (to see their values, open a command prompt and type set). on windows xp, the

RE: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread Carson Hager
Tomcat 5.5 and Flex 1.5 are a great combination. We use Tomcat on nearly all of our Flex 1.5 apps. Just copy the flex.war to webapps and Tomcat will automatically deploy the Flex web application. Carson Carson HagerCynergy Systems,

RE: [flexcoders] Excel, Flex Database

2006-07-05 Thread Ritesh Jariwala
Tom, can you redirect to me example or any tutorial on it? With Regards, Ritesh Jariwala (Actkid) Freelance Developer www.actkid.com Company: www.synonymic.com -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Wednesday,

Re: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams
Well, its almost that easy.For flex 2 at least, you need to also install the JOTM for tomcat to work.Below is a description of how to do it that is better than the one in the manual. Hank1. un gzip the file http://debian-sf.objectweb.org/projects/ jotm 2. go to the lib directory in the

[flexcoders] Flex release version: XML attribute string too long

2006-07-05 Thread Jonathan Bezuidenhout
Hi,I have XML that worked fine up to Beta 3 - the one attribute contains a long string - not exceptionally long - but not short - too lazy to count the number of characters.The released version of Flex does not seem to parse this string anymore, and tells me the following: TypeError: Error

Re: [flexcoders] Any way to tell a hbox to be only as wide as is needed for contents

2006-07-05 Thread Steve Webster
Hank,I have a variety of situations where I want a box to be just big enough to hold its contents, and to just resize other stuff to accomodate. One of the most important reasons for this is localization. I want to support lots of languages and I dont want to have to hard code widths to get

[flexcoders] Re: Cairngorm Responder interface changes

2006-07-05 Thread Tim Hoff
Cool, thanks man. Yeah, concerning the callbacks (2), just intrested to know success or failure (no data), so the view could react if necessary (applicable when binding is overkill, of course). -TH --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Tim, as long as you

RE: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread Carson Hager
Right but he's not asking about Flex 2. That step is not a part of a Flex 1.5 installation. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From:

Re: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams
I think you misread him. He did not mention flex 1.5 he mentioned java 1.5.RegardsHankOn 7/5/06, Carson Hager [EMAIL PROTECTED] wrote: Right but he's not asking about Flex 2. That step is not a part of a Flex 1.5 installation. Carson Carson

RE: [flexcoders] Excel, Flex Database

2006-07-05 Thread Lance Linder
Darron, thanks for the links to these examples! It is great to see some work done to import .xls files. Is there any more recent work on this or source to go with these examples? I would like to play around with this idea and any source code would be greatly appreciated! Thanks,

Re: [flexcoders] Any way to tell a hbox to be only as wide as is needed for contents

2006-07-05 Thread hank williams
Thanks steve.That works great for components, but doesnt seem to work for datagrid columns. In that situation when I set the column width to nothing the column got bigger than when it was set manually. Ideally I would like to be able to make the column the width of the header text for the

[flexcoders] Re: Flex 2 - Sending complex objects to WebService

2006-07-05 Thread Jeremy Rottman
Can you post some code? --- In flexcoders@yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: I'm having trouble sending ValueObjects through WebServices (to ColdFusion). When I try to send the ValueObject itself, flex only sends 'null' for the value. Same if I try to send them in an

Re: [flexcoders] Re: Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread JesterXL
Required, no, encouraged, yes. You have a public webservice I can call? I can make an example, but don't know of a public one. - Original Message - From: ben.clinkinbeard [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 05, 2006 1:51 PM Subject: [flexcoders] Re:

[flexcoders] Legend not Updating

2006-07-05 Thread Brendan Meutzner
Hi,I'm creating my the series for my Chart instance dynamically. When I change the yField value for a series it isn't updating the associated legend which uses my Chart instance as it's dataProvider. Do I actually have to destroy and recreate the series for the Legend to update? Brendan

[flexcoders] Re: Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread ben.clinkinbeard
Sure, here is a simple call to Amazon's ItemSearch method. I emailed you my access key b/c I am a little hesitant to post it out here. mx:WebService id=ws makeObjectsBindable=false wsdl=http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl;

RE: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread Kelly @ Dekayd Media Inc.
Flex 1.5 runs great on Tomcat. We used it for a project for Mazda and Honda and as far as I know it is in production now. --Kelly From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of a a Sent: Wednesday, July 05, 2006 12:50 AM To:

Re: [flexcoders] Re: Flex 2 - Sending complex objects to WebService

2006-07-05 Thread slangeberg
2 Problems: - Can't send a custom object via WS (this will work if I create plain old object with same params): [Looking at ServiceCapture, Flex tries to send as Map with value of 'null'] - Second problem in email to come...! mx:Script![CDATA[import mx.rpc.events.FaultEvent;import

[flexcoders] Problem with chart license

2006-07-05 Thread pasflex
We compile our app using ant and mxmlc.jar. Bought a charting license and followed the install instructions and put the license key in the license.properties but still get the Flex Charting Trial Watermark on our charts. Tried a variety of deleting/reinstalling things but the watermark is

Re: [flexcoders] Re: Flex 2 - Sending complex objects to WebService

2006-07-05 Thread slangeberg
2nd Problem: Can't send an array of plain old objects!: In this case, data appears to go across alright, but ColdFusion returns the following error: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize. Can someone please

[flexcoders] Getting #1034 Type Coercion Error in FB2 GA - didn't happen in FB2B3.

2006-07-05 Thread medfordpics
I have had an application going since BETA 1 of Flex 2.0. I am just doing a simple query to a PHP script and now with the GA of Flex 2.0 - I am getting a #1034 Type Coercion Error on my queries. I have tried debugging but I am getting hopelessly lost in the errors. Below is an example of the

Re: [flexcoders] Getting #1034 Type Coercion Error in FB2 GA - didn't happen in FB2B3.

2006-07-05 Thread Brendan Meutzner
Hey,Set makeObjectsBindable=false inside your HTTPService call... http://groups.yahoo.com/group/flexcoders/message/37852 Brendan On 7/5/06, medfordpics [EMAIL PROTECTED] wrote: I have had an application going since BETA 1 of Flex 2.0. I am just doing a

[flexcoders] Re: Handle result/fault from webservice call in Cairngorm 2

2006-07-05 Thread ben.clinkinbeard
But the Delegate class used in Delegate.create() seems to be missing from AS3, so how would you use Delegates? Thanks, Ben --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 05 July 2006 07:20, Artur Kordowski wrote: Why not use a delegate ? The delegate

[flexcoders] Re: any disadvantages to using FDS + CF vs. FDS + Java?

2006-07-05 Thread Tom Jordahl
--- In flexcoders@yahoogroups.com, Tom Bray [EMAIL PROTECTED] wrote: Since we have more CF developers in-house, we're wondering if there are any disadvantages or limitations of using CF with FDS instead of using Java. Just wanted to jump in here and say that using ColdFusion does have some

[flexcoders] FDS on CFMX configuration problems

2006-07-05 Thread Tom Bray
When I first started working with FDS, I used the standalone version with integrated JRun and had FB configured to launch FDS and direct its logging to the output pane in FB. I was happy.Now, I'm trying to configure FDS on top of CFMX and haven't had much success. I used the instructions below

[flexcoders] falling between items when using itemRollOver (DataGrid)

2006-07-05 Thread djbrown_rotonews
I'm using the itemRollOver event mechanism to display additional info about items in my DataGrid, and it appears that you can fall between items with the mouse (ie, I'll be at Row 1 Column 5 and move the mouse a tick down and it goes to Row 2 Column 0, and then back to Row 2 Column 5 after

RE: [flexcoders] Custom Context Menus

2006-07-05 Thread Shannon Hicks
I think that it'd be nice to have an "about this application" next to the "aboutflash"... something where we can specify a URL to go to, just like the "view source" option. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David MendelsSent: Wednesday, July

Re: [flexcoders] Re: any disadvantages to using FDS + CF vs. FDS + Java?

2006-07-05 Thread Tom Bray
Thanks, Tom. The primary responsibility of our server-side logic is to push data out to clients (updating user lists, sending validated chat messages, etc.), so it sounds like that's a deal-breaker for CF. :(-Tom On 7/5/06, Tom Jordahl [EMAIL PROTECTED] wrote:

[flexcoders] Flex 2: Debugger annoyance

2006-07-05 Thread Tobias Patton
Hello Flexcoders; Sometimes when Im in a debugging session, one or more variables in the Variables windows refuses to close. If I click - next to the row it closes, but then immediately opens up again. This is irritating because the debugger seems to slow down the more variables are

[flexcoders] Chart watermark won't go away in SDK

2006-07-05 Thread vanhoese
I followed the instructions from the readme_charting.htm for the standalone Flex SDK. I also removed the generated cache file that is created when I call mxmlc from the java command through ANT. the new compiled swf still has watermarked charts. Is seems like something is still cached. Has

[flexcoders] Re: Tomcat and jdk version for Flex

2006-07-05 Thread Dave Wolf
We use this configuration consistantly. It is quite stable and proven so in production. You will find, like with all products, that some minor dot releases of Tomcat are better than others. However it is a fabulous configuration overall. -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex

CF/Flex wizards (was Re: [flexcoders] Re: any disadvantages to using FDS + CF vs. FDS + Java?)

2006-07-05 Thread Douglas Knudsen
On 7/5/06, Tom Jordahl [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Tom Bray [EMAIL PROTECTED] wrote: Since we have more CF developers in-house, we're wondering if there are any disadvantages or limitations of using CF with FDS instead of using Java. Just wanted to jump in

[flexcoders] Re: Shift-tabbing not working in Firefox with wmode=opaque

2006-07-05 Thread Scott Romer
An additional problem that I noticed... droplists don't seem to use the correct key functions when wmode=opaque. For instance, the default key combination of using Ctrl-[Down Arrow] should open up a droplist on a combobox. When wmode=opaque, Ctrl doesn't seem to be recognized, but the Alt key

Re: [flexcoders] Compiling Flex--thank you!

2006-07-05 Thread Nick Collins
I'd wait on the MacBook a little while longer... they're updating them as soon as Intel starts shipping their Core 2 Duo laptop processors and it'll be alot faster. Plus I've heard rumors they'll be changing the case design at that point to, so here's to hoping they don't use another aluminum

  1   2   >