[flexcoders] Question about printing

2008-08-15 Thread Darren Houle
I haven't played with printing much, but I've been looking and haven't been able to find a good answer to this anywhere yet... This might be an oversimplification, but apparently when it comes to the FlexPrintJob you can either print what's displayed (visible) in your app, or else employ the

RE: [flexcoders] Question about printing

2008-08-15 Thread Darren Houle
Sorry, I'm new to printing so none of that made much sense... You can almost always make a DG look like a List by having one column with the headers invisible. So, start with temporarily replacing your list with a single column DG, work out the kinks, then shovel it off to PDG to print.

[flexcoders] Array reference vs values

2008-07-16 Thread Darren Houle
This might be a basic AS question, but I encountered it building a Flex app, so... I create a Date var date:Date = new Date(); I create an Array var arr:Array = new Array(); I set the first element of the array equal to the date arr[0] = date; I create another date

RE: [flexcoders] Array reference vs values

2008-07-16 Thread Darren Houle
don't need to, nor can you remove the date instance created above. That's the job of the garbage collector.-Josh On Thu, Jul 17, 2008 at 11:25 AM, Darren Houle [EMAIL PROTECTED] wrote:

RE: [flexcoders] Array reference vs values

2008-07-16 Thread Darren Houle
PROTECTED]: Thu, 17 Jul 2008 12:18:35 +1000Subject: Re: [flexcoders] Array reference vs values On Thu, Jul 17, 2008 at 11:55 AM, Darren Houle [EMAIL PROTECTED] wrote: Josh Yes, what you're describing is exactly what I described and is, in fact, what it happening... but to say I don't ever need to do

[flexcoders] Code for preventing browser caching of SWF

2007-11-12 Thread Darren Houle
I'm trying to stop the client's browser from caching my flex app swf so that each time they call the html wrapper they get the latest swf. I've found some suggestions out there for accomplishing this, and I think adding the myapp.swf?build=12341234 (some timestamp) solution looks cleanest,

[flexcoders] Opening CFM disguised as Flashpaper SWF

2007-09-28 Thread Darren Houle
Not purely a Flex question, but came up as a result of building a Flex reporting component... Using IE 6.0.2... When I download http://myserver.com/index.htm with a SWF embedded in the HTML Flash works fine and runs the embedded SWF in the browser. When I download

[flexcoders] FlashPaperLoader Crashes Browser!

2007-08-28 Thread Darren Houle
I'm using Darron Schall's FlashPaperLoader to load cfr's into a flex app. Works great (thanks Darron!) for the first report, but when I load the second report the entire browser crashes. Do I need to explicitly unload the first Flashpaper swf before loading the next? How? Are there other

RE: [flexcoders] FDS / CF Endpoints

2007-04-19 Thread Darren Houle
. On 4/18/07, Darren Houle [EMAIL PROTECTED] wrote: I'm building an FDS app but instead of defining an assembler.class, dao.class, and customobject.class on the FDS server in Java I'm defining them on a ColdFusion server using CFCs. I'm following Tom Jordahl's article located here: http

RE: [flexcoders] FDS / CF Endpoints

2007-04-19 Thread Darren Houle
Peter I was just following Tom's article, which specifies you add the following to your FDS services-config.xml !-- ColdFusion specific RTMP channel --channel-definition id=cf-dataservice-rtmp class=mx.messaging.channels.RTMPChannel endpoint uri=rtmp://{server.name}:2048

RE: [flexcoders] FDS / CF Endpoints

2007-04-19 Thread Darren Houle
more detailswith the information you sent me it's very limitated to understand what you're looking for.Regards. On 4/19/07, Darren Houle [EMAIL PROTECTED] wrote: Yes, I have a * crossdomain policy in place (on both servers, just in case.) Darren To: [EMAIL PROTECTED]: [EMAIL PROTECTED

RE: [flexcoders] FDS / CF Endpoints

2007-04-19 Thread Darren Houle
If you are just using FDS with CF and they run in different servers you'll have to define a hostname property to tell FDS where to find CF (I think, it's in the resource config folder, check the data-management-config.xml to check the exact property). This property must be defined in

[flexcoders] FDS / CF Endpoints

2007-04-18 Thread Darren Houle
I'm building an FDS app but instead of defining an assembler.class, dao.class, and customobject.class on the FDS server in Java I'm defining them on a ColdFusion server using CFCs. I'm following Tom Jordahl's article located here:

[flexcoders] Programmatically Define Service Adapter

2007-03-21 Thread Darren Houle
I've found AS code examples for dynamically/programmatically defining channel sets, channels, RemoteObjects, endpoint URI's, etc for RPC services at runtime... but nowhere can I find an example of someone defining/selecting an adapter (adapter-definition) to use. IE the JavaAdapter,

RE: [flexcoders] FDS to CF RemoteObject

2007-03-16 Thread Darren Houle
adapter when the Flex client is compiled and served from the FDS server? Darren From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Thursday, March 15, 2007 7:41 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] FDS to CF RemoteObject Peter

[flexcoders] FDS to CF RemoteObject

2007-03-15 Thread Darren Houle
I have built a Flex app that loads from the CF server and successfully calls a RemoteObject (CFC) back on that same CF server. I'm using the basic ColdFusion destination in the services-config.xml which looks like... channels channel-definition id=my-cfamf

RE: [flexcoders] FDS to CF RemoteObject

2007-03-15 Thread Darren Houle
for you to create a matching ChannelSet for a destination... you can always just do this yourself in ActionScript. Pete From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Thursday, March 15, 2007 3:56 PM To: flexcoders

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Darren Houle
From: Tom Chiverton [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] FDS services-config for CFC's Date: Fri, 9 Mar 2007 14:34:19 + On Friday 09 Mar 2007, Darren Houle wrote: You don't install FDS on Coldfusion 7.0.2

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Darren Houle
Okay, but... install it how, where? Not using the integrated JRun server, right, because CF is already running on an app server, right? So where do you unpack the fds war file? Into which directory under the CF Enterprise install? Darren From: João Fernandes [EMAIL PROTECTED] Reply-To:

[flexcoders] FDS services-config for CFC's

2007-03-08 Thread Darren Houle
There seems to be lots of services-config.xml samples out there for defining FDS destinations using the java and hibernate adapters, but I can't seem to find a sample that details how to define an FDS destination when using CFC's as your assembler/dao/bean. Does anyone know where I could find

Re: [flexcoders] FDS services-config for CFC's

2007-03-08 Thread Darren Houle
You don't install FDS on Coldfusion 7.0.2, it includes built in support for FDS with CFCs, but there's no instructions or sample files anywhere that describe how to configure the services-config.xml destination or what (if any) adapter to use. Darren From: João Fernandes [EMAIL PROTECTED]

[flexcoders] FDS and single items

2007-03-06 Thread Darren Houle
I am developing my first FDS application. It's small, and basically just a big form comprised of about 75 fields; radio groups, comboboxes, text inputs, etc. Each time a new form is submitted it creates one row in a large table. The form can be retreived and edited later, which just updates

[flexcoders] ChangeWatcher inside Cairngorm ModelLocator

2006-09-15 Thread Darren Houle
I'm building a Cairngorm app and trying to use a ChangeWatcher in the ModelLocator, but I can't seem to get it to work. In the ModelLocator, I create a few vars like normal, and then in the Constructor I call initDefaults() that inits all the app vars (handy for when the user logs out and then

RE: [flexcoders] ChangeWatcher inside Cairngorm ModelLocator

2006-09-15 Thread Darren Houle
: Darren Houle [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] ChangeWatcher inside Cairngorm ModelLocator Date: Fri, 15 Sep 2006 10:59:45 -0400 I'm building a Cairngorm app and trying to use a ChangeWatcher in the ModelLocator, but I can't seem

RE: [flexcoders] ChangeWatcher inside Cairngorm ModelLocator

2006-09-15 Thread Darren Houle
. Nowhere does can I find where it says you can just bind a site Obj to a host Obj. Not only that but binding the AC.source property to another AC.source property didn't even work, as the documentation would have you believe. What's up with this? Darren From: Darren Houle [EMAIL PROTECTED

[flexcoders] WebService vs RemoteObject

2006-09-12 Thread Darren Houle
This was not designed as a controlled experiment, just something I coded, noticed, and thought I'd pass on... I'm building a small Cairngorm application and one of it's functions is to display two sets of network user accounts in two datagrids. Initially I used a WebService to call a

Re: [flexcoders] RemoteObject Setup

2006-09-07 Thread Darren Houle
not yet had a chance to go through this article, but Nahuel and Laura do top notch work, so I expect that this article will be another great resource. Happy Flexing! g On 9/6/06, Darren Houle [EMAIL PROTECTED] wrote: Greg, where do I send the check? :-) It did work, although I had to tweak

Re: [flexcoders] RemoteObject Setup

2006-09-06 Thread Darren Houle
Actually Greg I do have a question. I downloaded the zip (thanks!) and started in on the instructions but hit a problem right away... Step 2 says Create a folder named Phones in the CFIDE/samples folder (under the web root). If a folder named samples does not exist under your CFIDE folder,

Re: [flexcoders] RemoteObject Setup

2006-09-06 Thread Darren Houle
Application on your hosted account and see if this works? (fyi ... Be sure to confirm they are running CF 7.0.2.) I have CF behind Apache and the remoting/RemoteObject work fine. If you run into any problems, please post back. hth, g On 9/6/06, Darren Houle [EMAIL PROTECTED] wrote

[flexcoders] RemoteObject Setup

2006-09-05 Thread Darren Houle
Can anyone point me to concise setup instructions for starting to use RemoteObjects? For instance... 1. Make sure you have CF 7.0.2 2. Write some CFCs and put them here [...] 3. Edit the remoting-config.xml in CF and add this code [...] to point to your CFCs 4. Create remoteObject tags in

RE: [flexcoders] HTTPService Result to ArrayCollection

2006-08-29 Thread Darren Houle
Depends on your XML data. An ArrayCollection is basically an Array of Arrays, so... if your XML is complicated and multilayered with lots of nested tags in nested tags I'm not sure you can easily convert it to an ArrayCollection. But... if your XML looks something like this: person

RE: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Darren Houle
I know it's more work, but... Instead of using creationComplete=someFunction() in your first view, take the button/widget or whatever that causes the app to switch over to the first view and add your someFunction() to that button/widget's click= event. In other words call sommeFunction()

RE: [flexcoders] bind enabled to 2 conditions with a logical and

2006-08-25 Thread Darren Houle
Lisa mxml files are made out of XML, so you have to obey XML rules, so using chars like and and confuse the XML parser. All you have to do is replace them with standard XML entity references... so becomes amp;amp; Darren From: Lisa Nelson [EMAIL PROTECTED] Reply-To:

RE: [flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-24 Thread Darren Houle
://www.cynergysystems.com/blogs ystems.com/blogs Email: [EMAIL PROTECTED] mailto:dave.wolf%40cynergysystems.com stems.com Office: 866-CYNERGY --- In [EMAIL PROTECTED] mailto:flexcoders%40yahoogroups.com ups.com, Darren Houle [EMAIL PROTECTED] wrote: Franck, I agree with you, but... how do

RE: [flexcoders] Re: How to cast a WebService lastResult when CFC returnType=xml

2006-08-24 Thread Darren Houle
Mike, Yes, I'm good with HTTPService, it was WebService that was causing me the grief, but I'm good now. Thanks, Darren From: Mike Collins [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to cast a WebService lastResult when

RE: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-23 Thread Darren Houle
(); } } regards, peter From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Monday, August 21, 2006 4:33 PM To: flexcoders@yahoogroups.com Subject: RE

[flexcoders] Similar Node Access Question

2006-08-23 Thread Darren Houle
Don't know if this is the same problem as my recent, previous post, or if it's different, but I basically have the same question... Now I'm calling a CF WebService that returns a Query object... it just contains one row, one column, called FULLNAME. Using the WebService lastResult in a

RE: [flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-23 Thread Darren Houle
Franck, I agree with you, but... how do you handle security in a stateless back-end? I mean... how do you maintain logged-in / user session information? Or unauthorized access of the web services by others? If Flex is *completely* agnostic of the back-end technology then how do you

RE: [flexcoders] Similar Node Access Question

2006-08-23 Thread Darren Houle
[0].FULLNAME; and if you wanted to bind to that purely in mxml you could also use... mx:ArrayCollection id=ac source=MyWebService.myOperation.lastResult / mx:TextArea text={ac.getItemAt(0).FULLNAME} / Darren From: Darren Houle [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Choice of backend systems - which provides best functionality

2006-08-23 Thread Darren Houle
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, Darren Houle [EMAIL PROTECTED] wrote: Franck, I agree with you, but... how do you handle security

RE: [flexcoders] Variable Type for Web Service Result

2006-08-23 Thread Darren Houle
Ethan, I don't think it's your typing, I think it's your timing. Looks like you're flipping your postTyper() when the combobox is changed, but that's not firing a new send() like the original blogger example did. Try changing your code so that changing the combobox triggers the send() and

RE: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-23 Thread Darren Houle
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Wednesday, August 23, 2006 1:30 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml Peter, Thanks! But I'm not using

RE: [flexcoders] Variable Type for Web Service Result

2006-08-23 Thread Darren Houle
dataField=clicks width=50 textAlign=right/ mx:DataGridColumn headerText=Post Excerpt dataField=postExcerpt wordWrap=true/ /mx:columns /mx:DataGrid /mx:Panel /mx:Application Darren From: Darren Houle [EMAIL

RE: [flexcoders] Cairngorm and MVC: Quickie

2006-08-22 Thread Darren Houle
Start off with one model for your app and as your application grows, you will probably see the need to refactor. At that time, create a second model and so on and so forth. Just to give u a quick idea, I have 3 models in my current project: BizModel - hold main data that actually goes back and

RE: [flexcoders] Re: Cairngorm2 SequenceCommand

2006-08-21 Thread Darren Houle
, Darren Houle [EMAIL PROTECTED] wrote: Does anyone know where I can find a working example of a SequenceCommand in a Cairngorm 2 app? Something I can import into Builder that will run? Thanks Darren -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

RE: [flexcoders] weather web service

2006-08-21 Thread Darren Houle
Don't know if they have *exactly* what you're looking for, but www.xmethods.net lists a bunch of web services. I quickly counted 9 different weather services (but didn't read them in any detail.) Darren From: Robin Burrer [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To:

RE: [flexcoders] Getting started with Cairngorm

2006-08-21 Thread Darren Houle
Not sure if this is it, but when I create my ModelLocator I always rename like public class AppModelLocator implements ModelLocator { so that my class and the Cairngorm base class aren't both named ModelLocator Like I said, not sure that would cause a circular reference or if there's

RE: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-21 Thread Darren Houle
Bump?? Darren From: Darren Houle [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml Date: Fri, 18 Aug 2006 23:08:44 -0400 I have a ColdFusion Component (web service

RE: [flexcoders] Cairngorm and MVC: Quickie

2006-08-21 Thread Darren Houle
Yup, you got it. To be even more specific... 1:N Views A) bind to data in the 1 ModelLocator (which contains 0:N Models/VO's) and B) broadcast 1:N Events to the 1 FrontController which maps Events to 1:N Commands which may create 0:N Delegates which trigger 0:N Services (using

RE: [flexcoders] Re: Some Cairngorm questions

2006-08-19 Thread Darren Houle
: I'm pretty sure they're called ValueObjects for a reason :) Ben --- In flexcoders@yahoogroups.com, Darren Houle lokka_@ wrote: As for reusing events and commands from different places, most of what I could find from the Cairngorm creators suggest that Commands be specific use

RE: [flexcoders] Cairngorm eLearning Course and Quiz - who's in?

2006-08-18 Thread Darren Houle
A: Worth Doing – are interested in using the training for yourself and/or your team Definitely B: Would like to contribute in some way -Script writer -Storyboarder -Expert Review Panel

RE: [flexcoders] Some Cairngorm questions

2006-08-18 Thread Darren Houle
Jeremy... First. I don't see what value the FrontController adds in Flex apps. My initial thought was that it was important to prevent views from coupling to specific commands. Yes, if you subscribe to the idea of an MVC pattern then yes, you need to do this. And if you're not going to do

RE: [flexcoders] How to set up HTTPService calls in Cairngorm? (Flex 2)

2006-08-18 Thread Darren Houle
I'm not sure how to set up an HTTPService call in Cairngorm. I'm trying to load an XML document from a server. I think I got the Event and Command classes right, so here a just code snippets from the Service Locator and the Delegate: this.service =

RE: [flexcoders] Re: Some Cairngorm questions

2006-08-18 Thread Darren Houle
. I think limited logic in the vo's, used to intelligently construct that vo, would be cool, but I'm not sure I'd expect to see much else in there. Darren --- In flexcoders@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: Jeremy... First. I don't see what value

[flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-18 Thread Darren Houle
Oops... I meant to include this attachment with my previous question. Darren -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on

[flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-18 Thread Darren Houle
I have a ColdFusion Component (web service) that looks like... cffunction name=getEmployees access=remote output=false returntype=xml cfxml variable=myxml people person firstnameJohn/firstname lastnameSmith/lastname job

[flexcoders] Cairngorm2 SequenceCommand

2006-08-18 Thread Darren Houle
Does anyone know where I can find a working example of a SequenceCommand in a Cairngorm 2 app? Something I can import into Builder that will run? Thanks Darren -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Cairngorm 2 - Event propagation problem

2006-08-17 Thread Darren Houle
Have you inlcuded the front controller tag in your login.mxml? You should have a line in login.mxml that looks something like... control:ApplicationFrontController id=applicationFrontController / Without this line your program would still compile, but there wouldn't be a front controller

RE: [flexcoders] Flex/Cairngorm Syntax

2006-08-15 Thread Darren Houle
Graham I see someone else answered your question, but... you might also want to look at Darron's page which talks about the Cairngorm Responder vs the Flex IResponder: http://www.darronschall.com/weblog/archives/000234.cfm The onResult(event:* = null):void method you asked about tells me

Re: [flexcoders] Flex/Cairngorm Syntax

2006-08-15 Thread Darren Houle
Actually... in Cairngorm, if a Command implements Responder the Command *must* contain: public function onResult( event : * = null ) : void {} public function onFault( event : * = null ) : void {} ...and if a Command implements IResponder that changes to public function result( event : Object

RE: [flexcoders] Cairngorm:One controller, so many commands, so many delegates, so many events

2006-08-14 Thread Darren Houle
Yes, however, I try to create files that can be reused... that way different save buttons can use the same save event, command and/or the same save service. Oversimplifying, I know, but that's the general idea. If you have an app that performs lots of CRUD then you can generalize your code

RE: [flexcoders] Getting XML from server

2006-08-10 Thread Darren Houle
Try requestSolicitante.lastResult.root.solicitante.nome Darren From: falecomozig [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Getting XML from server Date: Thu, 10 Aug 2006 15:03:14 - Hi fellows. I have a test application

RE: [flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread Darren Houle
Did you try creating and sending that XML I suggested? Darren From: kaleb_pederson [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array parameters fail with Webservices Date: Thu, 03 Aug 2006 15:36:07 - Thanks for the

RE: [flexcoders] Re: Newbie Help - simple login via CFC

2006-08-03 Thread Darren Houle
Assuming this is Delegate code... Implementing the Caringorm Responder requires an onResult(event:*=null):void method, but implementing IResponder requires a result(data:Object):void method, so... this looks like something kinda the same as IResponder only different. It accepts the Object arg

RE: [flexcoders] Re: Error 1119

2006-08-02 Thread Darren Houle
I believe the Operation.result property was changed to Operation.lastResult in Beta3 and has been there ever since. If you check the help (Language Reference) in Flex Builder and look up mx.rpc.soap.Operation you'll see where it lists... lastResult : Object The result of the last

RE: [flexcoders] Re: Array parameters fail with Webservices

2006-08-02 Thread Darren Houle
Renaun, yes, that will send three distinct args, but I believe he needs to send one distinct arg that is an Array of three values. Kaleb, have you tried creating an XML object and passing that into your operation? var message:XML = arglist arg1Moe/arg1 arg2Curly/arg3

[flexcoders] RPC Binding vs Explicit in Cairngorm

2006-08-01 Thread Darren Houle
In Cairngorm a Command creates a Delegate which fires off (e.g.) a WebService operation. The way that's done in most Cairngorm examples is like this: service = ServiceLocator.getInstance().getService('someWebService'); token = service.someWSMethod(someData); This AS way of triggering the

[flexcoders] Calling DashboardIteration1 WebService - Explicit vs Binding

2006-07-31 Thread Darren Houle
I've been messing with the DashboardIteration1 Cairngorm example from Alex Uhlmann's blog and I have a question about the delegate/webservice piece. The example's source code was missing any real web service code (and the delegate was missing the code that calls a web service) so I've added all

RE: [flexcoders] colorPicker, getting the colour out

2006-06-15 Thread Darren Houle
Thought I posted this already, but I haven't seen it appear on the list yet... Is this what you're looking for? mx:Application mx:TextArea id=forChange width=150 text=0x{cp.selectedColor.toString(16)}/ mx:ColorPicker id=cp / /mx:Application Darren From: Sonja Duijvesteijn

RE: [flexcoders] colorPicker, getting the colour out

2006-06-14 Thread Darren Houle
Try this... mx:TextArea id=ta width=150 text=0x{cp.selectedColor.toString(16)}/ mx:ColorPicker id=cp / Darren From: Sonja Duijvesteijn [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] colorPicker, getting the colour out Date: Tue, 13

RE: [flexcoders] stop the help highlighting

2006-06-13 Thread Darren Houle
I don't know of any make the highlighting go away button. I just click Next then Previous in the upper right corner to advance one page and then one back. Makes the highlighting go away. Two clicks instead of one, no biggie. Darren From: Jason [EMAIL PROTECTED] Reply-To:

RE: [flexcoders] Dumb Newbie Question - Underlined Hyperlinks

2006-06-10 Thread Darren Houle
You can also do something like... a href=http://mysite.com/index.cfm;bu#name#/u/b/a It's really basic, but it works fine and the user gets the point. According to the docs... all that happens by default with links is that the mouse turns to a hand, there's no hover, underline, etc. to let you

[flexcoders] Is this a bug?

2006-06-09 Thread Darren Houle
Why does this... package org.mycomp.iaclean.vo { public class LoginVO implements org.nevis.cairngorm.ValueObject { public var uid : String; public var password : String; } } Return an Interface ValueObject was not found error, but if I import first like

RE: [flexcoders] Re: Is this a bug?

2006-06-09 Thread Darren Houle
Tracy and Ben, thank you :-) Darren From: ben.clinkinbeard [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Is this a bug? Date: Fri, 09 Jun 2006 19:44:33 - Yep, in AS3 everything must be imported no matter what. See #5 here:

[flexcoders] MAX 2006

2006-06-08 Thread Darren Houle
As a sequined friend of mine once said Viva Las Vegas... http://www.adobe.com/events/max/ Yahoo! Groups Sponsor ~-- Get to your groups with one click. Know instantly when new email arrives

RE: [flexcoders] layout components from right in HBox

2006-06-03 Thread Darren Houle
You can do this: mx:HBox width=400 mx:Spacer width=100%/ mx:Button label=MyButton/ /mx:HBox You'll see the button is pushed to the right side of the 400 px wide hbox Darren From: Husain Kitabi [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Dispatching multiple events in order with cairngorm

2006-06-01 Thread Darren Houle
I agree with Alex. Say you have a View with a button... you mutate that button's click= event into a CairngormEvent. Your custom Cg Event triggers a Cg Command, which sets state in the ModelLocator. New to Beta 3 is a utility called ChangeWatcher that allows you to watch a bindable value

RE: [flexcoders] Cairngorm question

2006-06-01 Thread Darren Houle
If I'm not mistaken I think this is the latest... http://weblogs.macromedia.com/swebster/archives/2006/05/cairngorm_2_for.cfm Darren From: Michael [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm question Date: Thu, 1

RE: [flexcoders] Re: Multiple instances

2006-06-01 Thread Darren Houle
Doug, I think maybe the lack of replies might be due to the fact you haven't asked a question yet. Need assistance is very vague. Specifically what do you need assistance with? Are you having trouble somewhere in your custom mxml components? Are you looking for a way to bind your interface

RE: [flexcoders] Re: Dispatching multiple events in order with cairngorm

2006-06-01 Thread Darren Houle
--- In flexcoders@yahoogroups.com, Jean-Luc ESSER [EMAIL PROTECTED] wrote: I do agree with you guys, that's the way to go ! Thanx ! BTW, loved Paul's little helper. This one is a sure hit ! -JL - Original Message - From: Darren Houle [EMAIL PROTECTED] To: flexcoders

RE: [flexcoders] Flex Noob Question(s)

2006-05-30 Thread Darren Houle
Hey Cameron, That's one of the things the Cairngorm framework is good for... it uses a ModelLocator object to store all your other application data in one place. It's similar to the session object on an app server, except it's client side in the Flex app. All your Views can bind to the data

RE: [flexcoders] Re: Loading one cairngorm into another cairngorm

2006-05-27 Thread Darren Houle
If that was the case then you'd have to worry about singletons and object names every time you used a SWFLoader to load any other SWF. Any SWF you load might have coincidentally used a duplicate variable, class, or package name. I'm not 100% sure, but I believe that SWFs loaded into other

[flexcoders] Max 2006

2006-05-26 Thread Darren Houle
Slightly off [Flex] topic, but since Adobe people monitor this list I thought I'd ask... Does anyone have any new details on MAX '06? The Call for Topic deadline for MAX '05 was May 13th and we're already past that date for this year, so... is Adobe having a really hard time deciding what

RE: [flexcoders] Max 2006

2006-05-26 Thread Darren Houle
:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Friday, May 26, 2006 2:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Max 2006 Slightly off [Flex] topic, but since Adobe people monitor this list I thought I'd ask... Does anyone have any new details on MAX '06? The Call for Topic

RE: [flexcoders] Loading one cairngorm into another cairngorm

2006-05-26 Thread Darren Houle
If I'm understanding you right I'm not sure whether they're Cairngorm or not has anything to do with it... once they're compiled into SWFs it doesn't matter how you architected your original code. Not sure if this is what you mean, but... you could write Flex app A and make it similar to,

[flexcoders] Bindable Error

2006-05-18 Thread Darren Houle
I don't know if I'm tired, dumb, or just missing something obvious. Why does this... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml mx:Script![CDATA[ [bindable] public var myNum:uint = 0; ]]/mx:Script mx:Label text={myNum} / mx:Button label=Push

RE: [flexcoders] Re: Bindable Error

2006-05-18 Thread Darren Houle
--- In flexcoders@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: I don't know if I'm tired, dumb, or just missing something obvious. Why does this... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script![CDATA

RE: [flexcoders] Using a logical AND in property.

2006-05-16 Thread Darren Houle
Jason, I know this doesn't actually answer your question, but I ran into the same thing recently and found that I was looking at the problem backward. I was trying to set enabled on a Panel based on whether one or more rows were selected in a DataGrid. I tried the same things you did, adding

Re: [flexcoders] Flex Apps and Google/Search Engines

2006-05-16 Thread Darren Houle
Amazon.com and eBay are (arguably) apps and it makes sense to crawl them. Depends on what data you have inside your app and whether you want to make sections of the app or products in the database public, available, and/or easily locatable. Darren From: Manish Jethani [EMAIL PROTECTED]

RE: [flexcoders] delete class instances

2006-05-16 Thread Darren Houle
Is this what you mean...? ActionScript 3.0 does not support using the delete operator to remove an entire object. In ActionScript 2.0, you could use delete to remove an object or on an object property. In ActionScript 3.0, the delete operator is now ECMAScript compatible, meaning delete can

Re: [flexcoders] Re: delete class instances

2006-05-16 Thread Darren Houle
This may have already been answered somewhere, but I've searched and if it's out there it's not really obvious... I am pulling data from a CFC and displaying it in a DataGrid. When I click on a grid header to sort and there's a blank first row in that column I get: Error: Cannot determine

RE: [flexcoders] Does anybody know where I can enroll in a Flex teacher lead class with hands-on exercises?

2006-05-15 Thread Darren Houle
You might try http://www.mikekollen.com/blog/ If he can't help you he might be able to point you to another resource! Darren From: Mahmoud Elsayess [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Does anybody know where I can

[flexcoders] Re: Problem with Clicks Changing View States

2006-05-15 Thread Darren Houle
The mx:component tag creates a new scope block. You can use outerDocument to reference outer scoped variables. See http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0857.html Darren --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Developers Derby - Question for Adobe

2006-05-13 Thread Darren Houle
Does Flex require installing Flash Pro? No, but you might want to have Flash around for writing other SWFs that can be loaded into Flex Can Flex run on a machine that does not have Flash? Flash the player or Flash the development environment? Technically yes, you can install Flex and run

RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Darren Houle
Alternatively you could unzip them anywhere and import the files into a new, empty F2B3 project. I had to do that with a bunch of Cg.99 and Cg2 samples to get them to work. Also, just about every sample Cg app I've run across has something in it somewhere that won't compile in F2B23... Link

RE: [flexcoders] Problem with Cairngorm 2 version of Phones app.

2006-05-12 Thread Darren Houle
You have the actual ServiceLocator file in your folders, so open it up and check and to see if the ServiceLocator code in the file is wrapped with an outer package {} definition. If not then the files trying to import that class won't find that class in the proper package. For instance... in

RE: [flexcoders] Overlap?

2006-05-11 Thread Darren Houle
No replies on this... has no one else seen this happen? No one knows what this overlap is? Any help would be appreciated. Darren From: Darren Houle [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Overlap? Date: Tue, 09 May 2006 00

Re: [flexcoders] Simple XML web service call

2006-05-11 Thread Darren Houle
Yes, the CFC is running, it's Flex that's not dealing with the returned results properly. I finally gave up on doing it this way and now I'm just returning a datatype of query from the CFC which works fine. It just that it seems like the code should work (it's so basic) but yet it didn't.

RE: [flexcoders] Simple XML web service call

2006-05-11 Thread Darren Houle
restrictions. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle Sent: Tuesday, May 09, 2006 2:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Simple XML web service call This is probably very simple and I'm just being stupid

Re: [flexcoders] Article on Cairngorm for Fusion Authority

2006-05-11 Thread Darren Houle
Wow! Seriously? That amazes me. We never would have adopted Flex 1.5 at it's current price model... and it is 1.5 - just slightly more mature than a version 1.0, and our company rarely ever adopts version 1 of anything for use at an enterprise level. I would think that the more mature, less

  1   2   >