[flexcoders] Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
We've been pulling our hair out trying to figure out how to run applications outside of the /flex/ dir in our J2EE server. Currently we're using JBoss, but I would assume that the configuration is similar across all application servers. Essentially, what we want to do is create a structure like

[flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
Link didn't appear to work... if you click on 'Options for developing a Flex Data Services application' once you're on that page, you'll see the second diagram I mean. Thanks, Brian --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: We've been pulling our hair out trying

[flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread klumikaze
saying that you just dont want the FDS web app named /flex? -- Dave Wolf Cynergy Systems, Inc. Adobe Flex Alliance Partner http://www.cynergysystems.com http://www.cynergysystems.com/blogs Email: [EMAIL PROTECTED] Office: 866-CYNERGY --- In flexcoders@yahoogroups.com, klumikaze

[flexcoders] Is it possible to put a chart inside a DataGridColumn as an itemRenderer?

2006-07-19 Thread klumikaze
I'm having trouble passing data to an itemRenderer (which is a BarChart). Essentially what I want to do is have a DataGrid with a few columns and a chart representing three colors (green, yellow nad red) as BarSeries components. Normally passing data in to itemRenders works for me this way: ?xml

[flexcoders] Re: FDS 2.0

2006-08-18 Thread klumikaze
Can anybody define Adobe's definition of a CPU? For example, we just purchased a new server with two dual core processors in it. Is a dual core processor considered one CPU? or two? On a more extreme level, Intel is shipping quad core CPUs at some point, if you had two of those, technically the

[flexcoders] Dynamic topic creation with Flex messaging?

2006-08-21 Thread klumikaze
Looking for information on how to have a Flex application request a queue destination (or topic) that was not created at configuration level (i.e. created at run time in ActiveMQ via Java). Does Flex have the capability of accessing queues it didn't know of at compile time? Thanks for any

[flexcoders] Re: Flex help on IRC

2006-12-28 Thread klumikaze
You can get a list of EFNet servers (and find the nearest one to you) at http:// www.efnet.org/?module=servers For those unfamiliar with IRC, there are numerous clients available for Windows (mIRC is the most popular). For MacOS X there are a few: Adium (also includes MSN, ICQ, AIM, Yahoo,

[flexcoders] Flex Builder 2.0.1 and problem with DistortionEffects library, here's a fix

2007-01-05 Thread klumikaze
The new version of Flex Builder 2.0.1 seems to cause compatibility issues with Alex Uhlmann's DistortionEffects library. For anybody having issues with this, I have found a solution. The problem is on line 51 of Flip.as (com.adobe.ac.mxeffects.Flip). It seems the TweenEffect class, which

[flexcoders] Chart with icons instead of axis labels?

2007-01-29 Thread klumikaze
Has anybody achieved this in Flex 2? Basically what I want to do is display a BarSeries with a verticalAxis that has axis icons instead of axis labels. I have a hunch that it will involve some serious effort in hacking together a custom AxisRenderer. Thoughts? Brian

[flexcoders] VideoDisplay won't load first frame

2007-02-12 Thread klumikaze
I have a VideoDisplay component, and I've declared it's 'source' properly, I also do a myVidDisplay.load() when the component hits creationComplete. I have autoPlay disabled, you need to hit a play button to initiate the myVidDisplay.play() call... Unfortunately, the first frame of the video

[flexcoders] Re: VideoDisplay won't load first frame

2007-02-12 Thread klumikaze
- Original Message - From: klumikaze [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 12, 2007 4:17 PM Subject: [flexcoders] VideoDisplay won't load first frame I have a VideoDisplay component, and I've declared it's 'source' properly, I also do

[flexcoders] Special characters after end tag of XML document (HTTPService issue)

2007-03-05 Thread klumikaze
I've got an E4X HTTPService in Flex that is calling a servlet which returns an XML document. Approximately 80% of the time, the servlet works fine and the HTTPService result is a valid XML doc -- the rest of the time, the HTTPService is giving me a fault: [RPC Fault faultString=Error #1088:

[flexcoders] Re: Special characters after end tag of XML document (HTTPService issue)

2007-03-06 Thread klumikaze
] On Behalf Of klumikaze Sent: Monday, March 05, 2007 2:40 PM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Special characters after end tag of XML document (HTTPService issue) I've got an E4X HTTPService in Flex that is calling a servlet which

[flexcoders] Re: Special characters after end tag of XML document (HTTPService issue)

2007-03-06 Thread klumikaze
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze Sent: Tuesday, March 06, 2007 9:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Special characters after end tag of XML document (HTTPService issue) Thanks Peter I have

[flexcoders] Re: Special characters after end tag of XML document (HTTPService issue)

2007-03-07 Thread klumikaze
-revalidate This Microsoft KB article http://support.microsoft.com/kb/871205 mentions the issue occurs with HTTPS, but we've seen reports with HTTP too. Pete From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze Sent

[flexcoders] Re: Configuring FDS + Tomcat + activeMQ + JOTM

2007-03-19 Thread klumikaze
Read through the following thread: http://tech.groups.yahoo.com/group/flexcoders/ message/40033 Hope that helps! Brian --- In flexcoders@yahoogroups.com, huangnankun [EMAIL PROTECTED] wrote: I downloaded the excellent Christophe Coenraets' flex 30 min test drive here and started messing

[flexcoders] LiveCycle Data Services 2.5 - Using dynamically referenced queue destinations

2007-03-21 Thread klumikaze
Our application currently uses a large number of queue destinations. We create the destinations in the messaging-config.xml file and compile our app against the FDS configuration files (and then upload to the J2EE container). There are 100+ queue destinations defined in messaging-config.xml

[flexcoders] Re: LiveCycle Data Services 2.5 - Using dynamically referenced queue destination

2007-03-21 Thread klumikaze
will be available to your app. There will be BootstrapService examples in resources/config/bootstrapservices once LCDS is final. -Mete --- In flexcoders@yahoogroups.com, klumikaze briandunphy@ wrote: Our application currently uses a large number of queue destinations. We create

[flexcoders] Flex Data Services consumes messages, but no delivery to Consumer in application

2007-04-05 Thread klumikaze
Our backend application is pumping a large number of messages through an ActiveMQ queue (upwards of 6,000 typically) to our frontend application (Flex based) through Flex Data Services. We are using Jconsole to track the number of messages that go in to the queue, and the number of

[flexcoders] Re: SWFLoader related query / challenge

2006-09-07 Thread klumikaze
I've had some major problems implementing this type of solution -- hoping somebody might have some ideas as to why this won't work in my situation. I've got a multi-user application that has an application shell (a Flex app with only an SWFLoader in it), a login page (a Flex app with a simple

[flexcoders] Any way to define CategoryAxis label spacing?

2006-09-08 Thread klumikaze
I'm looking for a way to only display a few CategoryAxis labels (instead of all of them). Currently I have a labelFormat function that takes a unix timestamp, converts it to a shorter, more readable format, and then displays it on the horizontalAxis of the graph. The problem is that it's a time

[flexcoders] Re: RemoteObject Setup

2006-09-09 Thread klumikaze
Is there any good resources for doing the same with Java/Flex 2? I've had a hell of a time figuring out how to do RemoteObjects (not the Flex end, just the Java configuration end). Brian --- In flexcoders@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: Very cool, thanks again Gred :-)

[flexcoders] Strange problem with consumer not picking up messages off of queue

2006-09-18 Thread klumikaze
I have a message queue set up (using ActiveMQ, Java and Flex Data Services) and a servlet that I call using an HTTPService, the servlet returns a queue name for my Flex app to subscribe to, and then a subscribe takes place. The problem I am experiencing is with a few of the initial messages not

[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread klumikaze
It would appear I somehow figured this out on my own... I have a feeling it's that I needed to implement the Remote class (java.rmi.Remote)? Am I right? Thanks, hope this helps somebody else that's stumped on RemoteObjects. Brian --- In flexcoders@yahoogroups.com, Brian Dunphy [EMAIL PROTECTED]

[flexcoders] Re: Sending an array from Flex to PHP

2006-10-13 Thread klumikaze
--- In flexcoders@yahoogroups.com, christophevond [EMAIL PROTECTED] wrote: Maybe I should have specified this before, but I am limited to using an apache server, so can flex possible export to xml and read that in with php or some alternative like that? I have read something about using the

[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-13 Thread klumikaze
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze Sent: Thursday, October 12, 2006 10:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RemoteObject only accesses, cannot set It would appear I somehow figured this out on my own... I have a feeling it's that I

[flexcoders] Re: Calling View Stats of one component from another

2006-10-13 Thread klumikaze
As long as the second component has an id attribute, in ActionScript you could call the following from your event handler: comp2.currentState='myStateName'; That would change the view state of your second component. Brian --- In flexcoders@yahoogroups.com, big_mad_kev [EMAIL PROTECTED]

[flexcoders] Re: No more build workspace upon saving?

2006-10-13 Thread klumikaze
In case anybody else has this problem -- I found the solution, although it has nothing to do with Flex Builder plug-in, it's an Eclipse setting. Under Window Preferences General Workspace, make sure Build Automatically is checked. Brian --- In flexcoders@yahoogroups.com, Brian Dunphy [EMAIL

[flexcoders] Adobe Flickr library (potential bug)

2006-10-20 Thread klumikaze
Has anybody experimented much with the Flickr library that's on Adobe Labs? Overall, I'm thrilled with it... it works wonderfully. However, one crucial piece for me is the ability to retrieve the number of comments on a given Photo object. Currently, the Photo objects all have a commentCount of 0

[flexcoders] Re: Adobe Flickr library (potential bug)

2006-10-21 Thread klumikaze
, although it seems a little bit hackish to me. Brian --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: Has anybody experimented much with the Flickr library that's on Adobe Labs? Overall, I'm thrilled with it... it works wonderfully. However, one crucial piece for me

[flexcoders] ContextMenuEvent on BarSeries - how can I access the item that was clicked on?

2006-10-24 Thread klumikaze
I've got a BarChart component with one series attached to it. I've got a ContextMenu (with one custom ContextMenuItem) attached to that series. When I right click on one of the items in the series, and click my custom menu item, as far as I can tell the ContextMenuEvent I can't figure out how to

[flexcoders] Re: Dropshadows appear solid

2006-05-23 Thread klumikaze
. Does anybody know if this is a bug? I can imagine a lot of people want fully opaque components with gradient styled drop shadows. Thanks, Brian --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: Also, I noticed that this happens more often when the background isn't a solid

[flexcoders] Recommended technologies/frameworks for powering Flex 2.0 RIAs?

2006-05-26 Thread klumikaze
Just wondering what everybody out there is using for production/development with their Flex 2.0 RIAs? For an upcoming project, my team has decided to go the J2EE route, but we are unsure about which technologies and frameworks to make use of. We've come up with some basic decisions: - Our

[flexcoders] Re: Recommended technologies/frameworks for powering Flex 2.0 RIAs?

2006-05-26 Thread klumikaze
@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 26 May 2006 16:36, klumikaze wrote: - Ant or Maven? I've heard Maven is starting to become more adopted and capable than Ant... thoughts? I used to use Maven to drive Ant scripts, so it's not really either/or. - What Web

[flexcoders] Re: Recommended technologies/frameworks for powering Flex 2.0 RIAs?

2006-05-29 Thread klumikaze
, Brian --- In flexcoders@yahoogroups.com, Barry Beattie [EMAIL PROTECTED] wrote: klumikaze, In regards to ColdFusion - is it still a commercial product licensed on a per-server basis? yes. although Adobe are going to good efforts with site-wide enterprise licences for bigger stuff

[flexcoders] roll-over-color CSS property

2006-06-02 Thread klumikaze
Maybe I'm missing something, but I'm skinning my application, and when trying to use default buttons, I can't change the text color on a roll over. I assume it's the roll-over-color property, I've looked for other options but haven't found anything. Anybody else having issues with this?

[flexcoders] Re: roll-over-color CSS property

2006-06-03 Thread klumikaze
are not sure of what style or property or method to use, very helpful! http://livedocs.macromedia.com/flex/15/asdocs_en/index.html Karl Johnson -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze Sent: Friday, June 02, 2006 3:21 PM

[flexcoders] Re: roll-over-color CSS property

2006-06-05 Thread klumikaze
that you are skinning your app and it doesn't work when using default buttons. Maybe if you explained a little more about what's going on... Matt Horn Flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze Sent

[flexcoders] Re: FDS Samples

2006-06-18 Thread klumikaze
Couldn't agree with your comments more... I burned about 4 hours the other day trying to get FDS up and running with Tomcat (will have to try your clearer instructions on the JOTM install, as I tried the 2 sources you mentioned and did not get anywhere). In Adobe's defense, I don't think it's

[flexcoders] Re: Developing RIA book

2006-06-26 Thread klumikaze
There's a new Flex 2 book coming out shortly... saw it online as being available soon from Amazon, Chapters, etc. Brian --- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote: Yes, the book is a real nice starting point for using Flex. :) It's in pile near my reading chai.

[flexcoders] Re: div like behaviour?

2006-06-26 Thread klumikaze
I've been trying to get the Flow.as code working in Flex 2... I've discovered that layoutChildren() is now updateDisplayList() and that the Container class is now under mx.core. Can anybody point me in the right direction for something else that might have changed? Or even if there is a new way

[flexcoders] Re: Developing RIA book

2006-06-27 Thread klumikaze
http://www.amazon.co.uk/exec/obidos/ASIN/059652689X/qid=1151415448/sr=1-2/ref=sr_1_1_2/203-7642234-7931963 I'm actually talking about that one. Thanks, Brian --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: Hello klumikaze, There's a new Flex 2 book coming out

[flexcoders] Re: div like behaviour?

2006-06-27 Thread klumikaze
; rowHeight = Math.max(rowHeight, child.height); } } } } --- In flexcoders@yahoogroups.com, klumikaze [EMAIL PROTECTED] wrote: I've been trying to get the Flow.as code working in Flex 2... I've discovered

[flexcoders] Re: XML with namespaces HTTPService

2006-06-27 Thread klumikaze
http://www.darronschall.com/weblog/archives/000223.cfm That will solve all of your issues. I just had the same problem. :) Hope it helps... Brian --- In flexcoders@yahoogroups.com, iloirdnam [EMAIL PROTECTED] wrote: Hello, I'm trying to navigate the following XML source ins AS3: ?xml

[flexcoders] Re: Flex 2 released tomorrow

2006-06-29 Thread klumikaze
I can't get the Flash Player 9 plugin working on my MacBook Pro (even with Rosetta emulation on the browser). It simply won't install. Did you happen to get it to work? Thanks, Brian --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 28 June 2006 09:10,

[flexcoders] Re: send email with PHP

2006-06-29 Thread klumikaze
Simple contact form application in Flex: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:HTTPService id=sendMail url=http://www.yoursite.com/mailscript.php; useProxy=false method=POST mx:request xmlns=