[flexcoders] ColdFusion vs. PHP as the back-end

2006-07-05 Thread Bjorn Schultheiss
I’m using a CF backend in my personal flex joints. It’s very easy to set-up and the wizards are a nice touch for the UI guys.   If you want to go hardcore though, Java is your best option.   I don’t need Php, I’m not poor.   Regards,   Bjorn Schultheiss Senior Flash Develope

Re: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread hank williams
Thanks. I will try that. I had intended to lighten the text anyway. Lighter text always looks better.HankOn 7/6/06, Brendan Meutzner < [EMAIL PROTECTED]> wrote: Although it may not match your intended page styles, I've found that if you lighten the font color a bit (say #66 instead of the

Re: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread Brendan Meutzner
Although it may not match your intended page styles, I've found that if you lighten the font color a bit (say #66 instead of the default black) it does wonders for the embedded font display.  Makes them look a lot cleaner in my opinion. Just a suggestion for others to try...On 7/5/06, Joan T

RE: [flexcoders] file uploads

2006-07-05 Thread Carson Hager
What code are you referring to?       Carson  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email:  [EMAIL PROTECTED]Office:  866-CYNERGYMobile: 1.703.489.6466   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Be

RE: [flexcoders] arrayCollection to custom value object

2006-07-05 Thread Shannon Hicks
So, how can I get my ArrayCollection row into my object? It's cool that I can test and see that it's not working using "IS", but it doesn't solve the problem, just allows me to trap it :)   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter FarlandSent: W

RE: [Junk E-Mail - LOW] [flexcoders] Dynamically create Tabs in TabNavigator

2006-07-05 Thread Shannon Hicks
You want to use addChild() or addChildAt().   http://livedocs.macromedia.com/flex/2/docs/1853.html#136972   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Wednesday, July 05, 2006 9:37 PMTo: flexcodersSubject: [Junk E-Mail - LOW] [flexc

RE: [flexcoders] arrayCollection to custom value object

2006-07-05 Thread Peter Farland
The item may not be an instance of user, but rather an anonymous Object that contains the correct properties that match the public interface of the user class. The “as” operator returns null if the instance cannot be coerced into the requested type… where as traditional casting syntax w

Re: [flexcoders] Re: Popup deletion and memory issue in 1.5

2006-07-05 Thread Nick Collins
Maybe when you're closing the popup it's somehow triggering all the change events simultaneously.On 6/27/06, digital_eyezed < [EMAIL PROTECTED]> wrote: Hi, the only events are fired on creation (go get the remote objects etc). I do have a change on the tab navigator

[flexcoders] Re: Convert XML to Array(Collection)

2006-07-05 Thread theflashist
You can use the XML as an external data model that the Array Collection can use like The value for source is the name of the model (xmldata), the name of the XML's root node (items in this example) and the child node that the array will be based on (item). HTH... P E A C E Hasan www.marxm

[flexcoders] defaultButton not working?

2006-07-05 Thread Shannon Hicks
I've added a defaultButton property to my form, yet the enter key does nothing. If I click the button, it behaves as expected.   Here's my code:     Pretty simple, not sure what I'm doing wrong.   Shan __._,_.___ -- Flexcoders Mailing Li

Re: [flexcoders] Tabbed Browsing support? htmlText, navigateToURL(), Javascript?

2006-07-05 Thread Nick Collins
I imagine it would be very difficult as not all browsers support tabs, and the implementations of those tabs are different in each. ie Firefox vs. IE7 vs. Safari vs Opera, etc.On 7/2/06, Greg Hamer <[EMAIL PROTECTED]> wrote: Has anyone here implemented tabbed

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

2006-07-05 Thread John
Hi Ted,Thanks for the update. I am sure that when adobe makes the flex builder for the mac it will be great.Thanks,JohnTed Patrick <[EMAIL PROTECTED]> wrote: I have a MacBook Pro and run bootcamp + Flexbuilder. Many devs internally are running Parallels to u

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

2006-07-05 Thread Wayne McFetridge
Paul and others interested, Thanks for your input -- you could be correct regarding the usefulness of this "feature" I have a tabnavigator that has as children a "search results datagrid" and in another tab a "favorites datagrid" -- essentially the same grid with a different dataProvider. To

[flexcoders] Dynamically create Tabs in TabNavigator

2006-07-05 Thread Nick Collins
I'm trying to figure out how to add tabs to a TabNavigator dynamically with a button click. Essentially adding tabbed browsing like capabilities to my app. Right now when I double click an item in my DataGrid  it opens a popup window using the WindowManager class from the CF Wizard. I'd like it

[flexcoders] beta3 embedded font issue.... No FontManager provided error

2006-07-05 Thread JClouz
I've been trying to embed a font with Beta 3 so I can do fade effects on it.  I searched the archives and saw I needed to change my flex-config file to flash.fonts rather than macromedia.fonts for the FontManager.  I made the changes to the config file but the error with "No FontManager pr

[flexcoders] arrayCollection to custom value object

2006-07-05 Thread Shannon Hicks
So, I've got an ArrayCollection and a defined value object. The ArrayCollection has just one record in it, and the data matches the valueObject perfectly. Here's my code:   If I do this, everything works:   model.currentUser.userID = loginResult.getItemAt(0).userID;  model.current

[flexcoders] Did any prior Flex Store have Payment Services Example, or just Mock-Up?

2006-07-05 Thread Robert Thompson
The version of FlexStore in the final product does not have Check-Out where it displays what I recall were UPS and FedX selections.  It still remains extremely cool though.Did the previous Store example have a UPS example working for someone with a UPS Developer Key, or was that just a mock-up?I

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

2006-07-05 Thread ben.clinkinbeard
I guess maybe I should clarify that my experience with Cairngorm is pretty much limited to Steven's article on devnet. http://www.adobe.com/devnet/flex/articles/cairngorm_pt5_04.html On that page, in his ProductDelegate example class, there is this function: public function getProducts() : Void

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 http://www.adobe.com/2006/mxml" xmlns:cairngorm="com.adobe.cair

[flexcoders] Re: CF Wizard problem - Validators trigger required on fields with required="fal

2006-07-05 Thread Nick Collins
Nevermind, I found it. For some reason you have to manually go into each of the validators you don't want required and set them to required="false". If it's not implicitly stated, it defaults to required="true". Not the behavior I'd expect. --- In flexcoders@yahoogroups.com, "Nick Collins" <[EMA

Re: [flexcoders] Re: Cairngorm Responder interface changes

2006-07-05 Thread JesterXL
1. ResultEvent & FaultEvent events.  I disagree with this change, so have changed them back instead of of using the * change for the Responder interface.   2. Command callbacks.  Sometimes, there is a legitimate need for a View to "know" when a Command is completed.  In my consulting, we'v

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

2006-07-05 Thread Paul BH
yeppers - my mm.cfg file is at $HOMEDRIVE\$HOMEPATH - ie :\Documents and Settings\{paul bh}\whts driving me nuts is that Ive set this up a number of times on different machines...the only thing that is different from my usual setup is that Im running winXP on a macbook pro using bootcamp - howev

[flexcoders] CF Wizard problem - Validators trigger required on fields with required="false"

2006-07-05 Thread Nick Collins
I am kind of using this wizard as a jumping off point, and have run into something of a problem. If I put validators on any of the fields to make sure they're formatted properly, even if I had set the fields to required="false" it forces you to input something into the field... how can I change

[flexcoders] Using compc and localization

2006-07-05 Thread Jimmy
Hi, Using compc to create a SWC. No problem all working. Now I want to specify the location where compc can look for locale info. In my config life I specify the following: c:/opt/sfc But when I run it, I get this error: [exec] Loading configuration file C:\dev\libraries\f

[flexcoders] Convert XML to Array(Collection)

2006-07-05 Thread Michael van Leest
Hi, I need to display XML data in a datagrid, but using the XML directly as data provider doesn't work. Is there a easy way to convert a XML Object to an Array or ArrayCollection?? Or do I need to loop over the nodes and "manual" create a Array for the datagrid? Any info is appreciated. Thank

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

2006-07-05 Thread James Ward
Try to also clear your browser's cache. -James On Wed, 2006-07-05 at 20:17 +, vanhoese wrote: > 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

[flexcoders] Re: Beta 3 WebService Result

2006-07-05 Thread someguy7_7
Mine have type="s:string" as well. I also have a field called totalresults that is at the same level as the items which is an integer and seems to be fine. I am able to reference that using lastResult.totalresults. The strings for category and categoryid are the ones I am having problems with. ---

Re: [flexcoders] ColdFusion vs. PHP as the back-end

2006-07-05 Thread JesterXL
First, you CAN pass ValueObjects via Java and PHP.  Java via OpenAMF, and PHP via AMFPHP.  ColdFusion just now has the edge.   Second, Remoting as we refer to it, allows you to: 1. call back-end services like you'd call regular methods 2. pass class objects instead of vanilla data (like J

Re: [flexcoders] anyone out there in eclipse land?

2006-07-05 Thread Angus Johnson
If you're sure you've fixed the errors you might need to run a clean on the project (under 'project' on the Eclipe menu).   On 06/07/06, Brendan Meutzner <[EMAIL PROTECTED]> wrote: Hey,Well, you could fix the problems... :-)  Sorry, couldn't resistBrendan On 7/5/06, [EMAIL PROTECTED]

[flexcoders] Solved - " Security error accessing url " Error

2006-07-05 Thread supertodda
Hello, If you receive an error such as the one below when you upload your code to the server, one possible reason may be that you are accessing your flex app via http and the web service may be running on https (SSL). You can solve this by running your main code on https as well. Another clue co

Re: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread hank williams
Joan,Did you look at the jpeg I posted?Is this what should be expected in terms of the quality of the type or is there a bug that explains this?HankOn 7/5/06, Joan Tan <[EMAIL PROTECTED]> wrote: Stacy,   What do you think the default sharpness should be?   Joan  

[flexcoders] ColdFusion vs. PHP as the back-end

2006-07-05 Thread Ville Walveranta
I started my quest to explore Flex rather recently; I never did much with v1.5, mostly because the cost involved to launch any commercial solution created with it. Now, with 2.0 it’s pretty exciting to see everything that is now, rather easily (and inexpensively!), possible to do.   Bu

Re: [flexcoders] HashTable

2006-07-05 Thread JesterXL
..uh... right link this time: http://livedocs.macromedia.com/flex/2/langref/flash/utils/Dictionary.html - Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 05, 2006 7:08 PM Subject: Re: [flexcoders] HashTable Maybe Dictionary? http://livedocs.macromedia

RE: [flexcoders] embeded FlashType fonts look bad

2006-07-05 Thread Joan Tan
Stacy,   What do you think the default sharpness should be?   Joan   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Tuesday, July 04, 2006 10:43 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] embeded FlashTy

[flexcoders] XML prefix in MXML

2006-07-05 Thread Pottavathini, Sathish
How do i reference an attribute of an XML that has prefixes for an attribute of MX XML? For example, my response is something like this... http://www.w3.org/1999/xhtml"; xmlns:a="http://www.SomeDomain.com/a";> I want to use 'a:label' as labelField on my Tree

Re: [flexcoders] Flex 2: Debugger annoyance

2006-07-05 Thread Brendan Meutzner
Have noticed this as well... also no fix...On 7/5/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: I also have this problem. No solution so far.   Shan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tobias PattonSent: Wedn

[flexcoders] Flex 2 - Adding icon to button

2006-07-05 Thread slangeberg
Just a note that you must reference your 'bin' directory, to properly Embed an icon:    click="takeNotes()" toolTip="Take notes"/>    : : ) Scott __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mai

RE: [flexcoders] anyone out there in eclipse land?

2006-07-05 Thread Carson Hager
These are common coding errors. The first one normally indicates that you are trying to bind to a variable that has not been described as bindable. You do this with a directive about the declaration.   [Bindable] public var myString:String = "my string";   The second error indicates you ha

Re: [flexcoders] HashTable

2006-07-05 Thread JesterXL
Maybe Dictionary? http://livedocs.macromedia.com/flex/2/langref/index.html - Original Message - From: "Torey Maerz" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 05, 2006 5:03 PM Subject: [flexcoders] HashTable So what is the equal to a hashtable for flex? Basically I am looking for

RE: [flexcoders] HTTPService (jsp, specifically) getting cached?

2006-07-05 Thread Carson Hager
Add the following to your JSP and it will no longer be cached.   response.setHeader("Cache-Control", "max-age=0, must-revalidate"); Carson  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email:  [EMAIL PROTECTED]Office:  866-CYN

RE: [flexcoders] Re: Tree and allowMultipleSelection functionality not working

2006-07-05 Thread Belinda Nambooze
AllowMultipleSelection was disabled in the released version of Flex to work around some issues with Tree, but will be re-enabled in a future release.   Belinda   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jason Hawryluk Sent: Saturday, J

[flexcoders] Re: HTTPService (jsp, specifically) getting cached?

2006-07-05 Thread Doug Lowder
You can prevent caching by putting the following into your jsp: response.setHeader("Cache-Control", "max-age=0, must-revalidate"); --- In flexcoders@yahoogroups.com, "djbrown_rotonews" <[EMAIL PROTECTED]> wrote: > > I've run into a situation where I want to re-issue a call to a jsp via > an HT

RE: [flexcoders] Flex 2: Debugger annoyance

2006-07-05 Thread Shannon Hicks
I also have this problem. No solution so far.   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tobias PattonSent: Wednesday, July 05, 2006 3:38 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Flex 2: Debugger annoyance Hello Flexcoders; Sometime

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

2006-07-05 Thread Kelly Birr
I am having the exact same problem in Firefox.  I must set WMode=Opaque for IFRames to work but that makes Shift+Tab not work correctly throughout the rest of the application.  This is not the case for IE6.   - Kelly From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] HashTable

2006-07-05 Thread Dimitrios Gianninas
Look at the Dictionary class for that.   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Torey MaerzSent: Wednesday, July 05, 2006 5:04 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] HashTable So

Re: [flexcoders] [Flex2] FDS as Windows system service?

2006-07-05 Thread Thomas Rühl -akitogo-
Ahh cool, I didn't see that. Thanks, Stacy :-) Stacy Young wrote: > > > You’d have to look to your app server for this …for instance, with jrun > you can use the {jrun root}/bin/jrunsvc.exe to create a windows service > to startup a particular jrun instance. From the docs: > > > > >

[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: > > 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. :( Well,

RE: [flexcoders] HashTable

2006-07-05 Thread Clint Modien
Handy way 2 search the docs…   http://www.google.com/search?hl=en&lr=lang_en&rls=GGGL%2CGGGL%3A2006-22%2CGGGL%3Aen&q=site%3Ahttp%3A%2F%2Flivedocs.macromedia.com%2Fflex%2F2%2F+associative+array&btnG=Search       From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroup

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

2006-07-05 Thread Angus Johnson
I built an IFrame app about a month ago using the excellent examples that others on this list provided.   The one thing I found with firefox is that you have to have wmode otherwise the browser content will flicker. Sometimes the browser content will appear blank until you resize or scroll.   I

RE: [flexcoders] Hyperlink to an elemment in textarea

2006-07-05 Thread Tracy Spratt
If you use the htmlText property of the textArea, you can use a subset of html tags, including the   tag.  The href attribute can be a url as usual, or it can be “actionscript:myFunction()” (maybe actionscript:parent.myFunction()) I haven’t done this in 2.0 yet so I don’t have a full ex

RE: [flexcoders] HashTable

2006-07-05 Thread Tracy Spratt
I am still not up to speed in AS3, but in AS2 you would have used the good ole mx:Object.  It was not searchable per se, but myObject[“myKey”] returned undefined if myKey did not exist.   Tracy   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Torey M

RE: [flexcoders] HashTable

2006-07-05 Thread Clint Modien
object is equal to hashtable...  they’re called associative arrays in ecma script… http://livedocs.macromedia.com/flex/2/langref/Object.html       From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Torey Maerz Sent: Wednesday, July 05, 2006 2

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

2006-07-05 Thread Shannon Hicks
Aye no Mac purchases before the Apple WWDC. Who knows... maybe the desktop machines will impress enough to justify one of them instead of a laptop (but I doubt it).   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Wednesday, July 05, 20

[flexcoders] HashTable

2006-07-05 Thread Torey Maerz
So what is the equal to a hashtable for flex? Basically I am looking for a name value pair. An arraycollection is a start but not exactly. Also it would be nice if it is searchable. THanks in advance for the info. -Torey Yahoo! Groups Sponsor ---

Re: [flexcoders] Custom Context Menus

2006-07-05 Thread Carlos Rovira
Hi David,I think that most people, when reach Flash ContextMenu feature, don't find what they'd expect to find for various reasons (most to less annoying ;)):* The most annoying is the two menu items nobody can't remove. "Settings..." and "About Flash Player x". Please can't you think in other w

RE: [flexcoders] [Flex2] FDS as Windows system service?

2006-07-05 Thread Stacy Young
You’d have to look to your app server for this …for instance, with jrun you can use the {jrun root}/bin/jrunsvc.exe to create a windows service to startup a particular jrun instance. From the docs:   Using the jrunsvc tool Use the jrunsvc tool to execute command on a JRun server th

RE: [flexcoders] Re: Beta 3 WebService Result

2006-07-05 Thread Kelly Birr
The only difference I can see between your WSDL and mine is that mine has type="s:string" in the simple string elements. I've looked through my services and have found type="tns:whatever" in some places and flex does interpret those as more complex types. I can only assume this is what's happe

Re: [flexcoders] anyone out there in eclipse land?

2006-07-05 Thread Brendan Meutzner
Hey,Well, you could fix the problems... :-)  Sorry, couldn't resistBrendanOn 7/5/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: know how to suppress the: "warning: unable to bind to property ... " and "TypeError: Error #1009: Cannot access a property

[flexcoders] [Flex2] FDS as Windows system service?

2006-07-05 Thread Thomas Rühl -akitogo-
Hello folks, how can I set up a standalove installation of FDS to run as a Windows service? For J2EE (JRun) installations, there exists an entry for each of the servers in the Services panel, but I'd like to use the standalone version. However, always starting via console goes somewhat on my n

RE: [flexcoders] Select a Tree item on Right click

2006-07-05 Thread Joan Tan
Sathish! It’s been a while since we worked together at our old company Cybrant. I guess it’s a small software world and we’ve crossed paths again.   Anyways, since Deepa is out of the office for a bit, I’ll see if I can help.  From the code you have provided, try to change the mouseOu

[flexcoders] anyone out there in eclipse land?

2006-07-05 Thread michael . corbridge
know how to suppress the: "warning: unable to bind to property ... " and "TypeError: Error #1009: Cannot access a property or method of a null object reference." in the eclipse console? --- This e-mail message (including

[flexcoders] Re: Tomcat and jdk version for Flex

2006-07-05 Thread Mike_Robinson_98
Be sure to use a recent version of 5.5 as version 5.5.7 had a severe memory leak. Personally, I am using 5.5.17 and it is very stable in that regard. --- In flexcoders@yahoogroups.com, a a <[EMAIL PROTECTED]> wrote: > > Hi all! I have just a simple question for starting develop Flex application wi

[flexcoders] Hyperlink to an elemment in textarea

2006-07-05 Thread tonyx_788
hello, is it posible? i know in xml this is a hyperlink to a web page but how do i make a link in a textarea to an elemment in the xml? what i want to do is reference a word or a phrase to another text in the xml like in html Yahoo! Groups Sponsor -

[flexcoders] HTTPService (jsp, specifically) getting cached?

2006-07-05 Thread djbrown_rotonews
I've run into a situation where I want to re-issue a call to a jsp via an HTTPService with the same set of parameters. (It's a query to a db essentially, with the params specifying the WHERE clause of the SQL). The problem comes when I try and re-issue the HTTPService with the same parameters i

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

2006-07-05 Thread slangeberg
Ben,   The Delegate they're mentioning (in Cairngorm) is a design pattern and is not the same as the Delegate class that you're thinking of, from AS2.   Scott  On 7/5/06, ben.clinkinbeard <[EMAIL PROTECTED]> wrote: But the Delegate class used in Delegate.create() seems to be missingfrom AS

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 ca

[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

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 wa

[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 A

[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] Flex 2: Debugger annoyance

2006-07-05 Thread Tobias Patton
Hello Flexcoders;   Sometimes when I’m 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 ar

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:

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 "about flash"... 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

[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 an

[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] 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 so

[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

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 s

[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 cod

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 de

[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 sti

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...!     wsdl=" http://granite/churchwerks/sis/sis_ent/ws/Attendanc

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

[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. http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl"; useProxy="false" showBusyCursor="true" result="onResul

[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 __._,

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: Sent: Wednesday, July 05, 2006 1:51 PM Subject: [flexcoders] Re: Handle result/fault fro

[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

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

2006-07-05 Thread ben.clinkinbeard
Can someone please post an example of making and handling a WS call in Cairngorm 2? Is a Delegate required? Thanks, Ben --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > I am also having trouble with Web Services in Cairngorm 2. The execute > method of my comman

[flexcoders] Flex 2 - Sending complex objects to WebService

2006-07-05 Thread slangeberg
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 array.   Is there some method to serialize these objects so that the WSDL knows what I'm supposed to b

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

2006-07-05 Thread Scott Romer
I have wmode=opaque in my Object/Embed tag. When I tab through the dataGrid everything works fine. However, when I try to shift-tab (to tab backwards), it only tabs forwards (as if the shift key is not being held down). This seems to only be reproducible on FireFox (have not tried other Mozilla

RE: [flexcoders] Menu - handle sub-menu clicks

2006-07-05 Thread Joan Tan
Dmitry,   ITEM_CLICK should certainly be dispatched for sub-menu items, if that sub-menu item is not the parent of another menu. This event is dispatched whenever a final selection is made causing the menu to close.    Are you wanting to capture this event for a menu item that open

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 column

RE: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread Carson Hager
LOL...you're absolutely right. Totally my fault. :)       C  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email:  [EMAIL PROTECTED]Office:  866-CYNERGYMobile: 1.703.489.6466   From: flexcoders@yahoogroups.com [mailto:[EMAIL

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

2006-07-05 Thread Paul BH
Hi Jonathan, I just did a very quick test on an attribute with 1500+ characters length, and it was just fine... perhaps its something else? a nasty character in the attribute or something?PBH On 7/5/06, Jonathan Bezuidenhout <[EMAIL PROTECTED]> wrote: Hi,I have

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] 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  Ca

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.com Email:  [EMAIL PROTECTED]Office:  866-CYNERGYMobile: 1.703.489.6466   From:

[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] 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 thin

[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 #1095

  1   2   >