[flexcoders] Newbie Question: Error being thrown on Grid Sort

2006-04-17 Thread Mike
Using Flex Beta2, I'm populating a grid via XML through an HTTPService component. Grid populates fine, but, if I sort the grid with a column click, and any of the cells are Null, the grid throws the following error: Error: Cannot determine comparator for SortField with name 'LastName' at

Re: [flexcoders] How to understand and fix reported errors?

2006-07-29 Thread Mike
Anybody? I can't believe that I'm the only "lucky one".Heeelp!!!mike_pq4 [EMAIL PROTECTED] wrote: I am running a simple app generated by Flex2 Builder using CF Wizard.Trying to login I get this:ReferenceError: Error #1069: Property message not found onmx.messaging.messages.ErrorMessage

Re: [flexcoders] How to understand and fix reported errors?

2006-07-29 Thread Mike
this, in some way, helps you track down atleast the problem file in your situation. I'll replyif I figure anything else on mine out.--- Mike [EMAIL PROTECTED]com wrote: Anybody? I can't believe that I'm the only "lucky one". Heeelp!!! mike_pq4 [EMAIL PROTECTED]com wrote: I am running a

Re: [flexcoders]Solved How to understand and fix reported errors?

2006-07-30 Thread Mike
tools to test different connectivity issues. Unfortunately I lost almost all my trial period...Mike [EMAIL PROTECTED] wrote:Getting some what closer. The original error was generated by the following call: private function serverFault(event:FaultEvent):void { errorMessage(event.message

[flexcoders] Flex Application structure

2006-07-30 Thread Mike
Hi,I ma looking at replacing the presentation layer of a CFMX 7 app with Flex 2.0The application has a number of modules and I am not sure if any of the structures bellow presents any advantages over the other. Any comments appreciated:Version1:Application Module1 Controllers Models Views

[flexcoders] dynamically adding constraintRows

2007-11-08 Thread Mike
so, Grid is now deprecated. I thought I would try and embrace the new constraint layout API. One of my use cases of Grid is to dynamically create and remove rows based on user input. I tried to do the same thing with ConstraintRow and was successful. However, it get's really slow after a couple of

[flexcoders] Re: dynamically adding constraintRows

2007-11-09 Thread Mike
I was using stock SDK which came with Flex Builder 3 Beta 2. I took your advice and installed nightly build #187237 and everything works now. Thanks so much! --- In flexcoders@yahoogroups.com, Peter DeHaan [EMAIL PROTECTED] wrote: Mike, Which version of the Flex SDK are you using

[flexcoders] Performance profile strangeness

2008-07-18 Thread Mike
I profiled my app and the only way I can see any method level activity in the Performance Profile is to select 'Show zero time methods'. It shows the number of times a method is called but all of the timing columns are zero. Memory profiling looks fine. Any ideas? Thanks-- Mike

[flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Mike
? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Friday, July 18, 2008 4:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Performance profile strangeness I profiled my app and the only way I can see any method level activity

[flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Mike
. --- In flexcoders@yahoogroups.com, Gaurav. Jain [EMAIL PROTECTED] wrote: Do you have any filters applied? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Friday, July 18, 2008 2:58 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Mike
I went back to the default filters, no change. I see all of my methods as zero time... it would be nice if it were that fast :-) --- In flexcoders@yahoogroups.com, Mike [EMAIL PROTECTED] wrote: No, no filters. I've removed the flash.*.* mx.*.* filters as well... I'm pretty sure what I'm

[flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Mike
Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Friday, July 18, 2008 4:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Performance profile strangeness I went back to the default filters, no change. I see all of my methods

[flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Mike
Of Mike Sent: Friday, July 18, 2008 1:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Performance profile strangeness I went back to the default filters, no change. I see all of my methods as zero time... it would be nice if it were that fast :-) --- In flexcoders

[flexcoders] Re: Performance profile strangeness

2008-07-20 Thread Mike
are using the debug player too http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19245 some updates have a mysterious way of switching to the release player I've noticed. DK On Fri, Jul 18, 2008 at 6:02 PM, Mike [EMAIL PROTECTED] wrote: 9,0,115,0 ... the one that came with my

[flexcoders] Re: mxmlc | Java heap space + maven

2008-12-30 Thread Mike
In case anyone has this issue using Maven, try setting environment variable MAVEN_OPTS=-Xmx512 --- In flexcoders@yahoogroups.com, ivo cervantes_v...@... wrote: Hi, This has come up before. You need to increase the memory available to Java and Ant. Search the archives for ANT_OPTS -

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Mike
Jason, I'm doing something similar with checkboxes and the DataGrid. Are you able to turn the visibility of your component on/off ? Rather than modify the dataset, you may be able to use a checkbox event to trigger the visibility change of your display component. ~Mike --- In flexcoders

[flexcoders] @font-face adjustments

2009-09-27 Thread Mike
or leading might fix that. I've tried several ideas, nothing had any effect. It would be best to modify the @font-face declaration or the .plain CSS type declaration. Mike

[flexcoders] Re: FB3 Plug-In Migration

2009-09-30 Thread Mike
Check out http://www.insideria.com/2009/09/fixed-an-internal-build-error.html Mike

[flexcoders] Trapping Control-A in webapp

2009-11-05 Thread Mike
I want to pass Control-A to a Flex app running in a browser. Seems the browser grabs Control-A and does not pass it to the Flex app. I tried adding this to index.template.html: script language=JavaScript type=text/javascript !-- function disableCtrlModifer(evt) { var disabled = {a:0, c:0,

[flexcoders] Re: Inserting Datagrid printscreen in PDF with AlivePDF

2009-12-09 Thread Mike
easily enough. Mike

[flexcoders] asdoc Error: Property is write-only.

2010-01-14 Thread Mike
. If I put that statement anywhere in the class that it belongs to, the error appears. Something about this class triggers the error message. If it put the statement in a subclass of the problem class, no error results. Suggestions? Mike

[flexcoders] Re: asdoc Error: Property is write-only.

2010-01-14 Thread Mike
I also get the same error any time Math.ceil() or Math.floor() is used in another file. Math.min() and Math.max() do not generate the error message.

[flexcoders] Using PlotSeries icon in a seperate control

2010-01-18 Thread Mike
displayName=Plot 2 / /mx:series /mx:PlotChart mx:TabNavigator height=50% id=tab width=100% / /mx:Application Suggestions? Mike

[flexcoders] Re: Flex and Java projects - deployment via FlexBuilder and Java Eclipse to Tomcat

2010-02-01 Thread Mike
See http://www.slinnbooks.com/books/serverSide Mike

[flexcoders] Re: What's up Adobe?

2010-02-03 Thread Mike
-notch developer, your standards are too low. One cannot excel at both career paths - humans are too finite. Mike ... who tries to excel as a developer and has great respect for excellent designers “Yes, I can see your point. I think the two of us are the only people who think

[flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
unanswered. Hopefully this one won't suffer the same fate! :) Mike

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
I need to post the displayed data to a server, complete with formatting. The dataProvider does not help much; I'd have to replicate the work that the datagrid does in determining the properties displayed by each column, and duplicate the job of the item renderers in order to extract the

[flexcoders] Re: Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
Export, $7. If that product includes source code, then it would be a worthwhile source of inspiration. Does the download include source? Mike --- In flexcoders@yahoogroups.com, Flex myflexdownlo...@... wrote: Sorry to hear your posts get unanswered. I can only suggest a 'try'...did you

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
of the items in the dataProvider, because the height isn't set. Then go about inspecting the itemRenderers like you proposed earlier; to get the data for your service call. Not the best solution, but this is an unusual use-case. -TH Sounds like a workable suggestion, thanks. Mike

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
I must take the DataGrid as I find it. If no labelFunction is defined, that approach won't work; also each item in the dataProvider might be manifested in 0 or more columns. This approach probably won't be general enough. Thanks, Mike You should be able to do this by running

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Mike
that if item renderers are used, they need to be instantiated and the text values for each cell read out... and the export routine has to figure out how to do this without any clues beyond what it can discover from the dataGrid. Something to go 'hmm' about... Mike --- In flexcoders@yahoogroups.com

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-13 Thread Mike
I have no control over the dataProvider at all. Performance is not an issue, because the data extraction only happens once, and it can be time-sliced it so the webapp does not appear to freeze. Passing through multiple event handlers, including EnterFrame would be perfectly acceptable. 3)

[SPAM] Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-13 Thread Mike
any type of renderer on demand. Hopefully constructive suggestions will be forthcoming soon. Mike --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Except the memory implications of rendering every row must be considered. And I still haven't figured out what you'd do

[flexcoders] Re: Using PlotSeries icon in a seperate control

2010-02-16 Thread Mike
I never got a reply to this, so I though I would try again and see if anyone can help. Mike --- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I need to create an instance of a PlotSeries icon. It's easy enough to discover the PlotSeries item renderer: var renderer:ClassFactory

[flexcoders] Re: Deep Object Copy?

2010-02-17 Thread Mike
You can see the source code for ObjectUtil.copy() here: http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/ObjectUtil.as You can use this type of code to write unit tests that exercise ActionScript serialization and deserialization for your value

[flexcoders] Re: Deep Object Copy?

2010-02-17 Thread Mike
I just noticed the ObjectUtil.clone() method, new for Flex SDK 4. public static function clone(value:Object):Object { var result:Object = copy(value); cloneInternal(result, value); return result; } private static function cloneInternal(result:Object,

[flexcoders] Re: Deep Object Copy?

2010-02-17 Thread Mike
Alex, Do you mean that the clone() method was provided by a party other than Adobe, and hasn't passed or won't pass a Q/A cycle? Mike

[flexcoders] Re: Strategies for switching between testing and deployment addresses

2010-02-23 Thread Mike
I cover this issue in detail in my book (http://slinnbooks.com/books/serverSide), with code examples and explanations. The book shows how to discover the originating domain and how to dynamically configure data services accordingly. Mike I've been writing some small programs that use

[flexcoders] Re: Partial LineSeries - is it possible?

2010-02-27 Thread Mike
I made a video showing an example of interactively hiding data points by filtering the chart's dataProvider. There are a number of subtleties involved ;) http://www.youtube.com/watch?v=WV8-mE8BYOs Mike

[flexcoders] Re: LCDS Configuration Settings - Best Practices?

2010-03-09 Thread Mike
This book has information that should be quite helpful: http://www.slinnbooks.com/books/serverSide/ Mike

[flexcoders] Re: Loading Flex sub-applications as sandboxed applications within the same domain

2010-04-03 Thread Mike
If Apache httpd is serving your Flex application, you can use mod_proxy to make a URL pattern appear to be served from another subdomain. Mike --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: If the two domain names match, you cannot get a new SecurityDomain. You will need

[flexcoders] Re: Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread Mike
am working on can't update the SDK for a while due to enterprise computing constraints. Mike --- In flexcoders@yahoogroups.com, Robert VanCuren Jr robert.vancuren...@... wrote: You can use the arguments class to get some of this info. http://livedocs.adobe.com/flash/9.0

[flexcoders] Re: Efficient SOAP WebService invocation

2010-04-21 Thread Mike
Once created, the WebService and Operation objects can be used many times, including multiple concurrent invocations. I am putting together a manuscript on enterprise-grade web services. You can track progress at http://slinnbooks.com and/or follow me on twitter: mslinn. Mike

[flexcoders] Re: Yahoogroups really sucks - let's go somewhere else.

2010-04-28 Thread Mike
. Mike

[flexcoders] Re: Web Services and ObjectProxy question for the Flex Gurus

2010-07-22 Thread Mike
WebService, see my slide show and YouTube video at http://www.slideshare.net/mslinn/using-flex-with-enterprise-web-services Mike I'm using Flex 4 and I set the returntype for the webservice to return an array of Cars - Cars[]. If the web service returns more than 1, it successfully

[flexcoders] Re: Translate application with the google translator

2010-08-19 Thread Mike
That is one of the code examples in this book: http://www.slinnbooks.com/books/serverSide/ Mike --- In flexcoders@yahoogroups.com, Hermes Alves hermes.al...@... wrote: Has anyone tried to make a multi-language application using the api of google translator? It would be fantastic program

[flexcoders] Re: flashBuilder.ini

2010-09-04 Thread Mike
-Xms800m-Xmx800m-XX:MaxPermSize=384m-XX:Pe\ rmSize=128m-Djava.net.preferIPv4Stack=true I would like to increase Xmx to a larger value, but get an error when I do so. Can anyone paste a working FlashBuilder.ini file with a larger value? Mike

[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread Mike
that called the library function in real time, so a mouse could be tracked while live X and Y intercepts were displayed, etc. Sorry I can't offer the source code. Hopefully this gives you an idea of how you might proceed. Mike

[flexcoders] Re: Using modules and remote objects

2010-09-07 Thread Mike
advised to do the same. Mike

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread Mike
-vmargs -Xms800m -Xmx800m -XX:MaxPermSize=384m -XX:PermSize=128m -Djava.net.preferIPv4Stack=true Mike

Re: [flexcoders] File - flexcodersFAQ.txt

2005-08-14 Thread Mike Chambers
fyi On : Q: When is Flex 2.0 coming out, what will be in Flex 2.0? We have released some information on Mistral in the Flash Platform Whitepaper (page 21) http://www.macromedia.com/platform/whitepapers/platform_overview.pdf http://www.macromedia.com/go/platform mike chambers [EMAIL

Re: [flexcoders] Macromedia Labs site

2005-10-17 Thread Mike Chambers
Yes. It is using MediWiki, which powers wikipedia. mike chambers [EMAIL PROTECTED] Hans Omli wrote: Ben Forta puts it best... The Wiki is written in PHP, because it is the best Wiki software out there (the one used by Wikipedia and others). And thus far no one has ported it to CF, or even

Re: [flexcoders] Macromedia's Sho Kuwamoto says he put sample code on flex2 site but it's not there

2005-10-19 Thread Mike Chambers
Which examples? mike chambers [EMAIL PROTECTED] Robert Thompson wrote: Thanks Sho. But just so you know, my original question on the post was in regards to the other show case demos not having a link to source code, while your demo already included a link to the code. Any chance

Re: [flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Mike Chambers
Yes. Basically the compiler thinks you are trying to subtract things. This may end up being a Fact of Life (FOL). mike chambers [EMAIL PROTECTED] Manish Jethani wrote: On 11/18/05, Xavi Beumala [EMAIL PROTECTED] wrote: // this is failing at compile time trace

Re: [flexcoders] JavaScript in flex

2005-11-22 Thread Mike Chambers
It does. ExternalInterface allows multiple types to be passed back and forth (basically, everything the Flash / Javascript kit supports). mike chambers [EMAIL PROTECTED] Philippe Maegerman wrote: I think ExternalInterface doesn't allow you to pass native objects between AS/JS

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread Mike Chambers
fyi, we now have an SDK download for Windows, Mac and Linux: http://www.macromedia.com/cfusion/entitlement/index.cfm?e=labs#flexsdk2 (no more having to copy from windows) mike chambers [EMAIL PROTECTED] Richard Leggett wrote: I didn't see whether you specified 1.X or 2.0, and I'm sure

Re: [flexcoders] Flex 2.0: mxmlc question

2006-03-23 Thread Mike Chambers
Yes. We have not rebuilt those SWCs for beta 2 yet (trying to track down one bug). In the meantime, you can link against the source which has been updated. http://labs.macromedia.com/wiki/index.php/Source:get Sorry about the hassle. mike chambers [EMAIL PROTECTED] Tobias Patton wrote

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread Mike Chambers
Make sure you are doing incremental compiles by passing: --incremental=true on the command line. mike chambers [EMAIL PROTECTED] Alisdair Mills wrote: Mike, just out of interest... is there any way to get the SDK compiler to compile as quickly as the compiler in flex builder? Using

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread Mike Chambers
What are the specs on your mac and pc? mike chambers Alisdair Mills wrote: yeah... i add incremental but for some reason it still takes between 8 and 20 seconds. the output from mxmlc is as follows Files: 546 Time: 8458ms Linking... 100ms Optimizing... 901ms SWF Encoding... 180ms

Re: [flexcoders] Re: Flex2: version control plugin

2006-03-25 Thread Mike Chambers
Works well with FlexBuilder also. Info on how to install it here: http://labs.macromedia.com/wiki/index.php/Flex_Builder:resources:plugins:subversion mike chambers [EMAIL PROTECTED] Kelly @ Dekayd Media Inc. wrote: Subclipse is a great plugin. It is definitely a timesaver. --Kelly

Re: [flexcoders] Yahoo! Maps API

2006-03-25 Thread Mike Chambers
That is correct. mike chambers [EMAIL PROTECTED] Brendan Meutzner wrote: Hey Matthew, I'm going to go out on a limb here and suggest that the current swc is only compatible with 1.5. When I tried importing the it into a 2.0 project, it threw errors. Someone correct me if I'm wrong

Re: [flexcoders] Re: Internal Build Error

2006-03-29 Thread Mike Chambers
fyi, I forwarded this to the Flex Builder team. mike chambers [EMAIL PROTECTED] Tim Sawyer wrote: Still shouldn't blow up the compiler though should it. :-) Our old beta 1 code says: var kpiList:Array = Array(this.myData)[0]; and the compiler warning is Array(x) behaves the same

Re: [flexcoders] Too many mistakes

2006-03-29 Thread Mike Chambers
Make sure to check out the beta 1 to migration document: http://labs.macromedia.com/wiki/index.php/Flex:Beta_1_to_Beta_2_Changes It covers some of the issues you mentioned. mike chambers [EMAIL PROTECTED] Sachin Dharmapurikar wrote: Hi Michael, You are absolutely correct. Beta products

Re: [flexcoders] About Flash Player 8.5

2006-03-29 Thread Mike Chambers
Please make sure to report these issues: http://www.macromedia.com/go/fp_public_beta_feedback mike chambers [EMAIL PROTECTED] Dreamer wrote: hello,everyone when I installed Flash Player 8.5,I find that when I browse some websites the Player popup errors,but these websites are normal

Re: [flexcoders] HTTPService in AS class

2006-03-30 Thread Mike Chambers
What are you having a problem with. You can just instantiate it via ActionScript, set the appropriate properties, and listen for the result event. Make sure you are importing the correct class though: mx.rpc.http.HTTPService mike chambers [EMAIL PROTECTED] Stefan Richter wrote: I know

Re: [flexcoders] Re: Calling previous state

2006-04-10 Thread Mike Chambers
change: public function setOldState(evt:StateChangeEvent):void to public function setOldState(evt:MouseEvent):void since click is a MouseEvent mike chambers [EMAIL PROTECTED] Jeremy Rottman wrote: this is code that I am trying. But it gives me this error. Implicit coercion of a value

[flexcoders] Clarification if Remoting is included with Flex 2.0

2006-04-12 Thread Mike Anderson
that technology. I am only interested in using Remoting - and built my Flash Development career around it. Thanks in advance, for any 100% accurate information you can throw my way. Mike -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives

RE: [flexcoders] Clarification if Remoting is included with Flex 2.0

2006-04-12 Thread Mike Anderson
? Hopefully I worded that well enough :) Thanks!! and I appreciate your help on this topic (seriously, I do thank you). Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jennifer Larkin Sent: Wednesday, April 12, 2006 8:30 PM To: flexcoders

RE: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Mike Anderson
and dirty app that incorporates RemoteObject, and maybe just populating a DataGrid with a Result Set (or something like that). Thanks anybody, if you could throw a quick example up here, or a URL. Take Care! Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Flex 2: Inline ItemRenderer -- Getting current row of DataGrid

2006-04-20 Thread Mike Collins
of the DataGrid from in an itemrenderer like this? Am I missing another approach? Thanks, Mike -- 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

Re: [flexcoders] Flickr App in Beta 2?

2006-05-05 Thread Mike Chambers
Not looking at the code, you may need to change: {dataObject} to {data} within Thumbnail.mxml. mike chambers [EMAIL PROTECTED] Faisal Abid wrote: I have sucessfully got the webservice running and it is displaying but i cannot render the objects to images using Thumbnail.mxml because

[flexcoders] setting up RemoteObject to access POJO on Tomcat

2006-05-11 Thread Mike Wertheim
that method invokable by a RemoteObject component? The Flex Data Services docs give an example of how to set that up using JRun, but I haven't been able to find a doc that describes how to do this with Tomcat. Thanks! -Mike -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

[flexcoders] Re: setting up RemoteObject to access POJO on Tomcat

2006-05-11 Thread Mike Wertheim
answered my question. On 5/11/06, Mike Wertheim [EMAIL PROTECTED] wrote: Is there a step-by-step guide somewhere that explains how to use a RemoteObject to access a POJO on Tomcat? Suppose I have class com.mycompany.Foo installed on my Tomcat server, and Foo provides this method: public int doSomething

[flexcoders] RichTextEditor setFocus()?

2006-07-14 Thread Mike Britton
I have a custom component containing a RichTextEditor. How do I set cursor focus on its internal textarea? I've tried all the obvious things to no avail. Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email.

[flexcoders] Re: RichTextEditor setFocus()?

2006-07-14 Thread Mike Britton
To save time, I ended up using a simple TextArea instead. I suspect I need to do a getChildAt() to access the TextArea, then use setFocus(). --- In flexcoders@yahoogroups.com, Mike Britton [EMAIL PROTECTED] wrote: I have a custom component containing a RichTextEditor. How do I set cursor

[flexcoders] Re: Dumb Newbie Question - Underlined Hyperlinks

2006-07-16 Thread Mike Britton
I hate myself for this, but: var link:String = bua href='http://www.google.com' target='_blank'View Listing/au/b; I can't find a way to change the link color through an external CSS file though, and it's killing me. You have to define the class like a DOM object and there's no flippin way to

[flexcoders] RemoteObjects - ActionScript parameters

2006-07-19 Thread Mike Anderson
#1, which file (and where is it located on the server) do I need to edit, in order to give my Flex App the ability to make Remoting calls? Thanks SO much to all of you - I truly appreciate your time on this topic. Mike :) P.S. I did update my ColdFusion Server, using the latest patch from Adobe

Re: [flexcoders] Re: Flex and CF

2006-07-19 Thread Mike Nimer
Joao, Your right there isn't much information, and we need more. We'll work on that. However, to answer you question now. To get this working so you can call FDS destinations of CF via Flash Remoting you would do it this way. 1) Configure CF on 1 instance/server 2) Configure FDS on 2nd

Re: [flexcoders] Flex Builder 2 RDS Connection problems

2006-07-19 Thread Mike Nimer
Try connecting with Homesite or Dreamweaver, if you have them. If that works compare the configuration. ---nimer - Original Message From: Brian Holmes [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Wednesday, July 19, 2006 2:56:41 PMSubject: [flexcoders] Flex Builder 2 RDS

Re: [flexcoders] return STRUCT type from CFC to flex

2006-07-20 Thread Mike Nimer
Next time you run intoa problem like this, you can use this to dump what is being returned and figure out what's wrong. http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel ---nimer - Original Message From: Nick Collins [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent:

Re: [flexcoders] So? What are folks here actually building...?

2006-07-21 Thread Mike Britton
I'm working on a Flex port of my ARP web log (prototype: http://tinyurl.com/nnt37), and a Flex 2 prototyping tool that links devnotes to application states (prototype: http://tinyurl.com/nk7ob). The web log will be built in ARP, the devnotes in Cairngorm. Mike Yahoo

Re: [flexcoders] Still Fuzzy about Flex 2.0 and CFCs

2006-07-24 Thread Mike Britton
will send you a few code examples.hth,Mike On 7/24/06, Battershall, Jeff [EMAIL PROTECTED] wrote: Obviously, FDS would be a preferred way of integrating with CF if available, but if it is not, what options exist? 1) HTTP Service - ok. 2) Web Service - ok. 3) Remoting

Re: [flexcoders] Difficulty moving app from dev machine to server

2006-07-24 Thread Mike Nimer
Make sure the WEB-INF\flex folders match on both machines, if they do and your still getting the error compare the web.xml files. Also in your cfusion\lib folder you should have 4 jar file that start with "flex-". If you don't you 7.0.2 upgrade probably wasn't successful. ---nimer -

Re: [flexcoders] Re: FDS on CFMX configuration problems

2006-07-24 Thread Mike Nimer
Are you running CF in standalone mode or multi-server? If you are in standalone mode, the easiest is to just install the 2 servers independently of each other and start them both up. Once they are running CF and Flex will find each other (assuming your flex server services-config.xml is

Re: [flexcoders] Caringorm - Visual Flowchart Poster!

2006-07-25 Thread Mike Britton
That rocks! Make sure you do a hi-res version so I can hang it on my office door :-) Mike Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/3EuRwD/bOaOAA/yQLSAA/nhFolB/TM

Re: [flexcoders] Which PHP Plugin for Flex IDE?

2006-07-26 Thread Mike Britton
Same, but I don't like PHPEclipse. I'd buy Zend studio if it was an Eclipse plugin. Mike __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-26 Thread Mike Anderson
- an Array of Objects, all properly formatted and casted. If you could shed further light, as to why no data shows up in my DataGrid when the app runs, I'd be very grateful :) Thanks - Mike = ?xml version="1.0" encoding="utf-8"?mx:Applic

[flexcoders] My application suddenly not compiling!

2006-07-27 Thread Mike Anderson
into this problem? Thanks in advance for all your help, Mike -- 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 the web, go to: http

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-27 Thread Mike Anderson
ecially since I ONLY write Data-Driven applications (RIA's) which allmake massive amounts of database calls. Thanks for all your wonderful advice! Mike From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave CarabettaSent: Thursday, July 27, 2006 1:

RE: [flexcoders] Re: ArrayCollections

2006-07-28 Thread Mike Anderson
. These are just my observations for the moment, but it's amazing how radical of a difference it makes, doing things in a slightly different way - even know it shouldn't make any difference. It is however, the difference between something working, and NOT working... Mike -Original Message- From

Re: [flexcoders] ArrayCollection

2006-07-28 Thread Mike Nimer
countries = event.result. countries as ArrayCollection; In ColdFusion all queries are returned as a true ArrayCollection objects, so you don't need to create your own. So with this syntax you are just casting, or telling the compiler,the variable that you already know the datatype of

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Nimer
new" keyword. Create new categories = new ArrayCollection( (event.result as ArrayCollection).souce ); // the .source property of the ArrayCollection is a proper Array. hope that made sense, ---nimer ----- Original Message From: Mike Anderson [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent

Re: [flexcoders] remote object mapping frustration

2006-07-28 Thread Mike Nimer
I have a hunch the compiler hasn't linked in your AS classes, so when a VO is passed in with flash remoting the flash player doesn't have the as class files in memory so it can't convert the VO into the right classes. In your creationComplete function try this: { var foo1:user = new

RE: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Anderson
Yep! The post you just replied to a few minutes ago, just clarified that. Up until then, I was not aware of that. Thanks again for the info - Mike From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike NimerSent: Friday, July 28, 2006 10:18 AMTo: flexcoders

RE: [flexcoders] ArrayCollection

2006-07-28 Thread Mike Anderson
to be highly valuable. Thanks everyone for all your help, Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, July 28, 2006 10:38 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ArrayCollection On Friday

Re: [flexcoders] How does Flex 2.0 handle ColdFusion Query results?

2006-07-28 Thread Mike Britton
I don't think this is OT since Kelly mentioned it above, but concerning the column names being all uppercase, when calling the same method that returns a query as a webservice (using mx:WebService), the columns ARE uppercase. Returning a query with RemoteObject, the column names are normal. I

RE: [flexcoders] ArrayCollection

2006-07-28 Thread Mike Anderson
Oh, this makes sense. Thanks for the clarification - I was dealing with this problem too, and it all seems to work now, after I treat the result as an ArrayCollection right off the bat. Thank you for your input on this, Mike From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] passing VOs using ColdFusion Event gateway Adapter

2006-07-29 Thread Mike Nimer
Seems like it could be a deeper error in the cfml, double check all of the CF logs and see if you can find a better error. Also you might want to try sending the object through the flash remoting adapter, to see if you can get either a better message or to confirm that CF doesn't have a

Re: [flexcoders] Are the contents of a WSDL document accessible?

2006-07-29 Thread Mike Britton
What language are you using?mx:WebService id=insertBookService wsdl=http://localhost:8500/remotingExample.cfc?wsdl result=handleFormResult(event) showBusyCursor=true fault=errorHandler(event) mx:operation name=addBook mx:request bookAuthor{bookAuthor.text}/bookAuthor

Re: [flexcoders] Cairngorm - Invoking screens

2006-07-30 Thread Mike Britton
for people to check out. I also recommend checking all the examples at Adobe -- Mike Potter's, etc -- they are extremely helpful. hth, Mike Britton -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

  1   2   3   4   5   6   7   8   >