[flexcoders] dynamic lineseries?

2008-03-03 Thread Paul Hastings
i need to plot a dynamic set of lines for comparison purposes. the data is being returned from cf as an array of VO something along the lines of: sampleID (string) transmittance (array) waveNumber (array) this bit works fine. i'm having problems getting the graph to plot using the following

Re: [flexcoders] Re: Praise for the Flex 3 Documentation

2008-03-03 Thread Paul Andrews
- Original Message - From: comfederation [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 04, 2008 5:06 AM Subject: [flexcoders] Re: Praise for the Flex 3 Documentation --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: I've just ordered

Re: [flexcoders] item renderer flex 2

2008-03-03 Thread Paul Andrews
to put the item renderer at the root level can i put it inside the package thanks in advance. You don't have to put the item renderer on the root level. I bet you haven't added a new xmlns for your component.. Paul

Re: [flexcoders] Flex Builder complaint

2008-03-02 Thread Paul Decoursey
very funny. Although that is exactly what I did, it is not a solution to an obvious oversight by Adobe. On Feb 29, 2008, at 5:51 PM, Dale Fraser wrote: Get them out of backup or SVN. Regards Dale Fraser From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul

Re: [flexcoders] Need Help on Date Globalization in Flex 3

2008-03-01 Thread Paul Hastings
[EMAIL PROTECTED] wrote: Could any one please help me out in implementing globalization of date format in Flex 3, when I choose the language as US_English or Spanish or French for example here's one approach (based on CLDR data, which is a darned good idea):

[flexcoders] Porting a project from Flex Builder 2 to Flex Builder 3

2008-02-29 Thread Paul Steven
if it is not a problem with my code. Thanks in advance Paul

[flexcoders] Flex Builder complaint

2008-02-29 Thread Paul Decoursey
I just imported some projects from Flex 2 into Flex 3 and it wiped out my html-templates... I spent hours tweaking those files and all that work is gone.

Re: [flexcoders] Re: missing results in datagrid

2008-02-27 Thread Paul Andrews
it the way it was i get 2 lines. Two lines of what? Paul - Original Message - From: vr6stress [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 27, 2008 3:05 PM Subject: [flexcoders] Re: missing results in datagrid This is the response dubbing warning: unable

Re: [flexcoders] Programmatically know if property is a Getter or Setter?

2008-02-27 Thread Paul Andrews
It could be either, both or none of those. How would knowing which it is help? Paul - Original Message - From: [EMAIL PROTECTED] To: FlexCoders flexcoders@yahoogroups.com Sent: Wednesday, February 27, 2008 5:41 PM Subject: [flexcoders] Programmatically know if property is a Getter

Re: [flexcoders] Flex 3 Upgrade

2008-02-27 Thread Paul Andrews
). Paul - Original Message - From: twcrone70 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 27, 2008 6:05 PM Subject: [flexcoders] Flex 3 Upgrade In order to be eligible for the Flex Builder 3 Upgrade do you only need a Flex Builder 2 license or do you need

Re: [flexcoders] Help-files as PDF-documents?

2008-02-26 Thread Paul Andrews
and/or looking at the online offerings of lynda.com/totaltraining.com BTW I'm not trying to dissuade you from printing off small sections of the docs! Paul /Hye

Re: [flexcoders] Carousel component - help yourself

2008-02-26 Thread Paul Decoursey
the left right arrows don't always work. cool component however . On Feb 22, 2008, at 1:06 PM, Giles Roadnight wrote: Hi All A friend needed a carousel compnent the other and I had a pretty good idea of how to implement it so I went ahead and had a go one evening. I'm really pleased

Re: [flexcoders] New files in project not compiled?

2008-02-26 Thread Paul Andrews
In Flex 2 the only time that happens to me is when I mess up the package names.. Paul - Original Message - From: Barnaby Jones [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 26, 2008 8:35 PM Subject: [flexcoders] New files in project not compiled? My flex

Re: [flexcoders] Re: New files in project not compiled?

2008-02-26 Thread Paul Andrews
Look for a binding with a missing closing brace.. Paul - Original Message - From: Barnaby Jones [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 26, 2008 8:46 PM Subject: [flexcoders] Re: New files in project not compiled? I have cleaned the project( many times

Re: [flexcoders] missing results in datagrid

2008-02-26 Thread Paul Andrews
Try dataProvider={form1.lastResult.accountCouponRow} Paul - Original Message - From: vr6stress [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 26, 2008 11:18 PM Subject: [flexcoders] missing results in datagrid [newbie] it seems fairly straight forward, i

[flexcoders] Repeater

2008-02-26 Thread Paul Kukiel
Which is working fine but I really need 4 buttons per row then to start a new row. At the moment they just push of the side of the page. Ideas? Paul.

[flexcoders] No Serial Numbers for Flex Builder 3?

2008-02-25 Thread Paul Whitelock
I purchased the upgrade to Flex Builder 3 Professional and after the order went through instead of a serial number all that I got was a message that said Contact Customer Service. I just got off of a 15 minute phone call with Customer Service and was told that it will take 24 to 48 hours before

[flexcoders] Re: No Serial Numbers for Flex Builder 3?

2008-02-25 Thread Paul Whitelock
Just checked my online account here in the U.S. and it still says Contact Customer Service so it appears that U.K. Adobe support is more efficient that then U.S. Adobe support (which actually seems to be based in India). Paul --- In flexcoders@yahoogroups.com, Ian M. Jones [EMAIL PROTECTED

Re: [flexcoders] CairngormEvent - Place to put the static variable that stores the name of the event

2008-02-25 Thread Paul Andrews
I always put the event name into the class - cairngorm event, or any event. I don't know why anyone wouldn't. This way around you can't have mismatched event class names (well not easily) and you have only one place to go to maintain your event. Paul - Original Message - From

Re: [flexcoders] Where did the value go?

2008-02-24 Thread Paul Andrews
Steve, I think Alex has already pointed out the reason you have a problem: selectedItem={selectedSlide} Remove this line. If you have a panel that contains fields that should be bound to the selected item, you need to have the binding there, not as above. Paul - Original Message

Re: [flexcoders] array.length

2008-02-24 Thread Paul Andrews
Try myMap.push(a); myMap.push(b); myMap.push(c); I'm not sure if you really mean: myMap.push(A); myMap.push(B); myMap.push(C); Don't be afraid to use the flex help! Paul - Original Message - From: annouss79 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, February 23

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
- Original Message - From: moelshimy [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 24, 2008 4:12 PM Subject: [flexcoders] Flex Open Source Hi,I want to decompil SWF File to Flex Files what can i do What has that to do with Open Source? Is there ever a

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
sure if the OP is expecting mxml files! On Sun, Feb 24, 2008 at 12:23 PM, Sherif Abdou [EMAIL PROTECTED] wrote: you can't do that, SWF file for Flex/AIR will not be decompiled. - Original Message From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

Re: [flexcoders] Flex Open Source

2008-02-24 Thread Paul Andrews
is compiled down to actionscript in a precompile mechanism (before the swf compilation even begins) Yes, you and I know that, but the OP? That's why I asked what a flex file was! On Sun, Feb 24, 2008 at 12:45 PM, Paul Andrews [EMAIL PROTECTED] wrote: - Original Message

Re: [flexcoders] Where did the value go?

2008-02-24 Thread Paul Andrews
Steve, There's no magic about all this. The original binding was probably affecting the change. It's perfectly possible to have a loose binding. Have you tried your code since removing the offending line? Paul - Original Message - From: justSteve To: flexcoders@yahoogroups.com

Re: [flexcoders] How to turn off exception messages in release version.

2008-02-22 Thread Paul Andrews
- Original Message - From: lytvynyuk [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 22, 2008 5:40 PM Subject: [flexcoders] How to turn off exception messages in release version. How to turn off exception messages ( e.g. ActionScript errors ) in release

Re: [flexcoders] as3 global variables - no more

2008-02-22 Thread Paul Andrews
and activate the playing. A method of this application class can be called by the buttons click handler.. Paul

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-21 Thread Paul Hastings
We're using java maybe have a look at iText.

Re: [flexcoders] closeButton.explicitHeight

2008-02-21 Thread Paul Decoursey
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Decoursey Sent: Thursday, February 21, 2008 11:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] closeButton.explicitHeight Adobe, Why have you done this in the Panel closeButton.explicitWidth = closeButton.explicitHeight = 16

[flexcoders] closeButton.explicitHeight

2008-02-21 Thread Paul Decoursey
Adobe, Why have you done this in the Panel closeButton.explicitWidth = closeButton.explicitHeight = 16; Paul

Re: [flexcoders] Re: do you need CS Degree to get a job?

2008-02-20 Thread Paul Andrews
education. For roles where a more formal approach to development is required, a computer science degree is a big, big help. Paul --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: A bit off-topic but I was just wondering since i have no reminescense

Re: [flexcoders] Flex Component Kit Help!

2008-02-20 Thread Paul Decoursey
Is there a way to validate a SWC? Or to see what classes are in them and can be loaded by Flex? On Feb 19, 2008, at 8:51 PM, Paul Decoursey wrote: I've been having a lot of trouble lately with the Flex Comp Kit. I can't seem to get even the simplest thing to be seen in Flex. I do see

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-20 Thread Paul Decoursey
in Flex, it is called mc_bestbuycar. I just need someone to tell me if it works for them so I can narrow down where the problem might be. Paul On Feb 20, 2008, at 6:59 AM, Sujit Reddy wrote: Hi Paul, Please try to follow the steps in the URL below and see if you can embed the Flash assets

Re: [flexcoders] do you need CS Degree to get a job?

2008-02-20 Thread Paul Andrews
I think the original question tends to ignore the fact that no two employers are indeed the same. So there's no yes or no to be had, just maybe.. Paul - Original Message - From: Daniel Freiman To: flexcoders@yahoogroups.com Sent: Wednesday, February 20, 2008 3:09 PM Subject

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-20 Thread Paul Decoursey
I think I've tracked it down to a bad Project... sort of... I don't know. I create a new Project and import all my sources and it works. I need to add my back my external source, Papervision and APE, and see if it might be caused by one of those. Paul On Feb 20, 2008, at 9:39 AM, Paul

[flexcoders] Free Image Cropping Component

2008-02-20 Thread Paul Whitelock
the component, documentation and source code here: http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/ Paul --- Paul Whitelock Denver, Colorado

Re: [flexcoders] Fixed Price Contract in Flex with a DataGrid - I never would!

2008-02-19 Thread Paul Andrews
bad Flex is? Paul

Re: [flexcoders] Re: Is it possible to have 2 children of viewstack visible?

2008-02-19 Thread Paul Andrews
I doubt it's possible. Having two visible doesn't really fit with the idea of a stack. Why not roll your own component? Paul - Original Message - From: m.frigge [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 5:40 PM Subject: [flexcoders] Re

Re: [flexcoders] Terminating a function

2008-02-19 Thread Paul Andrews
return; Paul - Original Message - From: ghus32 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 4:56 PM Subject: [flexcoders] Terminating a function How do you terminate or stop a function in Flex 2.0? Thanks -- Flexcoders Mailing List FAQ

[flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
yet(the DVDs are not with me). Can anyone either tell me what is wrong with my code or verify that my swf is muxed??? Thanks, Paul

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
mime type is wrong... I have no control over it, you'll have to adjust it client side. On Feb 19, 2008, at 12:14 PM, Sherif Abdou wrote: file wont open and it saves as a word document - Original Message From: Paul Decoursey [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
They are symbols already are they not? Anyway I think that my Flash is messed up. I'm having trouble with other timeline based swfs as well, where nothing appears when loaded. Paul On Feb 19, 2008, at 12:37 PM, Sherif Abdou wrote: All right so i hope i understood what your saying, what

[flexcoders] Any ArrayCollection tricks?

2008-02-19 Thread Paul Andrews
to avoid this duplication. Paul

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
everything works, but I need AS3 for some of the other assets I will be exporting that are not in the file I posted. Paul On Feb 19, 2008, at 1:38 PM, Sherif Abdou wrote: they were not symbols when i opened the file, i am not familiar with flash but they were movieClips and not Graphics

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
bill my client for this time. Paul On Feb 19, 2008, at 3:11 PM, Paul Decoursey wrote: How do you access in Flex then? This still doesn't work for me either. Paul On Feb 19, 2008, at 2:39 PM, Sherif Abdou wrote: BestBuyLogo BestBuyCar - Original Message From: Paul Decoursey

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
How do you access in Flex then? This still doesn't work for me either. Paul On Feb 19, 2008, at 2:39 PM, Sherif Abdou wrote: BestBuyLogo BestBuyCar - Original Message From: Paul Decoursey [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 2:21:51 PM

Re: [flexcoders] Re: Implementing Office 2007 menus

2008-02-19 Thread Paul Decoursey
For losers like me that have no idea what Office 2007 is like, are there any real world examples that we can experience this with that won't cost us our children? On Feb 19, 2008, at 3:45 PM, Fidel Viegas wrote: On Feb 19, 2008 8:15 PM, lytvynyuk [EMAIL PROTECTED] wrote: What is the

Re: [flexcoders] Re: Any ArrayCollection tricks?

2008-02-19 Thread Paul Andrews
Thanks Dan, Simon and Ralf. I found a great example here, which is perfect: http://viconflex.blogspot.com/2006/11/listcollectionview-different.html Paul - Original Message - From: Daniel Freiman To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 9:24 PM Subject

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
, but I was really just looking for validation that my SWF was junk, not that my methods were faulty. Paul On Feb 19, 2008, at 4:57 PM, Sherif Abdou wrote: ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete

Re: [flexcoders] do you need CS Degree to get a job?

2008-02-19 Thread Paul Decoursey
. Paul On Feb 19, 2008, at 6:20 PM, Doug McCune wrote: I don't think I've ever been asked about my education when discussing potential work. When I was first getting into Flex consulting I didn't even give out resumes with that information before getting hired. If you have solid samples

[flexcoders] Flex Component Kit Help!

2008-02-19 Thread Paul Decoursey
I've been having a lot of trouble lately with the Flex Comp Kit. I can't seem to get even the simplest thing to be seen in Flex. I do see an UninitializedError in top level that I can't seem to find any information on anywhere... does this mean something? Paul

[flexcoders] List ItemRenderer woes

2008-02-16 Thread Paul Andrews
I am prepared for a Doh moment. Can anyone explain why uncommenting the creation complete handler stops the menu from working? Paul ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:XMLList id=optionValues node label

Re: [flexcoders] List ItemRenderer woes

2008-02-16 Thread Paul Andrews
Thanks Sherif - that did the trick. Paul - Original Message - From: Sherif Abdou To: flexcoders@yahoogroups.com Sent: Saturday, February 16, 2008 2:54 PM Subject: Re: [flexcoders] List ItemRenderer woes don't forget to rap it in an xmlCollection mx:XMLList id

Re: [flexcoders] PopUpMenuButton woes - still

2008-02-16 Thread Paul Andrews
- Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Saturday, February 16, 2008 8:39 PM Subject: Re: [flexcoders] List ItemRenderer woes Thanks Sherif - that did the trick. Paul I spoke too soon.. ?xml version=1.0 encoding=utf-8

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread Paul Andrews
Shared objects? - Original Message - From: yiğit boyar To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 3:41 PM Subject: Re: [flexcoders] Re: passing variables between two consecutive flex applications actually it does no work :( i can store value to a

Re: [flexcoders] Checkbox with function problem

2008-02-15 Thread Paul Andrews
Maybe it should really be: if (!signature_include.selected) { Paul - Original Message - From: steven pollard To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 5:43 PM Subject: RE: [flexcoders] Checkbox with function problem I tried that and still the same

Re: [flexcoders] Flex hummmmmm in PC speakers...bizarre

2008-02-15 Thread Paul Andrews
If not that, does it happen with any intensive application? Could just be bad internal shielding when the processor is stressed. Paul

Re: [flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread Paul Andrews
to quantify, I suspect is a more worthwhile benefit that management having an afternoon at the golf course, deciding future strategy.. ;-) Paul --- In flexcoders@yahoogroups.com, Jim Hayes [EMAIL PROTECTED] wrote: Good points from Tracy there. If it saves you only 15 minutes a day, say 5

Re: [flexcoders] How do I procedurally select multiple items in a list control

2008-02-15 Thread Paul Andrews
the selectedIndices and selectedItems properties for a list. Paul I am new to flex, still learning stuff, and have traditionally used php generated html for the data entry and editing side and flex for the client side UI. Any help would be appreciated, I thought I'd try to do this purely in flex

Re: Requests/Votes re Printing, PDF, MARS (was RE: [flexcoders] Re: Flex Feedback for the Future)

2008-02-14 Thread Paul Andrews
a 'print preview' and printing capabilities via the reader, plus an option to archive the print-ready document. Flash paper has kinda passed me by. Paul On Thu, Feb 14, 2008 at 3:21 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 13 Feb 2008, David Mendels wrote: PrintJob, sumbit

Re: [flexcoders] Re: Flex Feedback for the Future

2008-02-13 Thread Paul Andrews
Thanks Muzak. It feels surreal that Adobe is moving towards an XML based document/printing/reporting solution yet there's hardly a stir on Flexcoders. I'll certainly check it out. Paul - Original Message - From: Muzak [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday

[flexcoders] Disable Auto-Highlighting in FlexBuilder 3?

2008-02-13 Thread Paul Whitelock
I just started working with the FlexBuilder 3 beta and found that it highlights (in an ugly cyan color) all instances of a variable name, function name, etc. whenever you click in one. Is there any way to disable this or change the color? Can't seem to find anything in the Eclipse 3.3.1.1

Re: [flexcoders] Happy Valentines Day!

2008-02-13 Thread Paul Andrews
- Original Message - From: Ed Capistrano [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 13, 2008 5:25 PM Subject: [flexcoders] Happy Valentines Day! Ahh I wonder if any of the tech guys here and @ adobe do celebrate Valentines Day? Hehe... They aren't

[flexcoders] Re: Disable Auto-Highlighting in FlexBuilder 3?

2008-02-13 Thread Paul Whitelock
@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: Top, --Mark Occurences is that what you are talking bout. - Original Message From: Paul Whitelock [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 13, 2008 11:45:59 AM Subject: [flexcoders] Disable Auto

Re: [flexcoders] Flex Feedback for the Future

2008-02-12 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 11:57 AM Subject: Re: [flexcoders] Flex Feedback for the Future On Monday 11 Feb 2008, Paul Andrews wrote: printing, client-side. I know there are server-side

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Paul Andrews
of such a facility will always be a problem for serious application developers - we aren't just printing to get screenshots of a web page anymore. Where should I post this request? Paul PS the nearest thing I can find to support client side printing is FlexReport - http://flexreport.riaforge.org/ (haven't had

Re: [flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-10 Thread Paul Andrews
with the actual component and having different types for the setter and getter is just bad practice.. Paul - Original Message - From: danielvlopes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 10, 2008 4:28 PM Subject: [flexcoders] Re: Adobe SDK, why flex comps accept

Re: [flexcoders] Re: Flex Interview Questions

2008-02-08 Thread Paul Andrews
- Original Message - From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 08, 2008 10:41 AM Subject: Re: [flexcoders] Re: Flex Interview Questions - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Flex Interview Questions

2008-02-08 Thread Paul Andrews
and setters? One's written in Java and the other isn't ? My java is rather old school, but my getters and setters are explicitly coded methods rather than generated for me as in AS3. Here is an old (but fun) article: http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html Paul

Re: [flexcoders] Re: Flex Interview Questions

2008-02-08 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 08, 2008 10:14 AM Subject: Re: [flexcoders] Re: Flex Interview Questions On Thursday 07 Feb 2008, Uber_Nick wrote: 1) What's the difference between Java and AS3 getters and

Re: [flexcoders] Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-08 Thread Paul Decoursey
Is your property bindable? On Feb 7, 2008, at 2:39 PM, danielvlopes wrote: Hello, i observe a strange behavior when i try extend label component to do a character counter. I try pass to my comp something like this: com:MyLabel max={myTextArea.lenght} / max is a custom property, i create

Re: [flexcoders] Re: createPopUp question

2008-02-08 Thread Paul Kukiel
; PopUpManager.centerPopUp(helpWindow); } Assuming CustomComponent.popWhatToShow is a public string of CustomCompontent. Paul. On 09/02/2008, at 8:42 AM, markgoldin_2000 wrote: But I can't say WhatToShow:Class because WhatToShow is a class name which is a string. --- In flexcoders

RE: [flexcoders] Remoting over SSL

2008-02-07 Thread Paul Kukiel
Anyone? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Kukiel Sent: Wednesday, 6 February 2008 12:51 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Remoting over SSL Ok I figured it out I removed the endpoint from the RemoteObject tag and it worked

RE: [flexcoders] createPopUp question

2008-02-07 Thread Paul Kukiel
Try this: var helpWindow:WhatToShow = WhatToShow(PopUpManager.createPopUp(parent, WhatToShow, true); PopUpManager.centerPopUp(helpWindow); Paul. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Friday, 8 February 2008 4:56 AM

Re: [flexcoders] Some Advises.

2008-02-06 Thread Paul Andrews
along the way before it grew so big. Paul

Re: [flexcoders] Flex Interview Questions

2008-02-06 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, February 06, 2008 2:07 PM Subject: Re: [flexcoders] Flex Interview Questions On Tuesday 05 Feb 2008, Jimmi Prajapati wrote: From where can I find Flex Interview Questions.

Re: [flexcoders] Actionscript 3.0

2008-02-06 Thread Paul Andrews
Flex or Flash CS3. Paul

Re: [flexcoders] Re: Flex Interview Questions

2008-02-06 Thread Paul Andrews
On the basis of these questions, what's the 'hit rate' on suitable applicants? Paul - Original Message - From: ecancil [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, February 07, 2008 1:53 AM Subject: [flexcoders] Re: Flex Interview Questions I regularly conduct

Re: [flexcoders] LayOut Design

2008-02-05 Thread Paul Andrews
. Please help me out..And also can we include a Canvas container inside a Canvas Container.. Yes. Why are you nesting canvases? Paul Thanks..

[flexcoders] Remoting over SSL

2008-02-05 Thread Paul Kukiel
Hi, I'm having an issue using remote objects over ssl. I have got this to work in FireFox but not in IE. I have searched around and have added add-no-cache-headersfalse/add-no-cache-headers to the properties tag of channel-definition but it's still not working. This is the error I am

RE: [flexcoders] Remoting over SSL

2008-02-05 Thread Paul Kukiel
Ok I figured it out I removed the endpoint from the RemoteObject tag and it worked. However it won't work when I compile as Air. Is anyone using Remote Objects over SSL in air? Any good references? Paul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul

Re: [flexcoders] Re: Flex running in Flash Lite 3 Developer edition

2008-02-04 Thread Paul Andrews
that the FlashLite3 can be coerced into it by having flash compile against Flex swcs I was under the impression FlashLite was only ActionScript 2, so can't use Flex 2 components. I'm sure you're impression is correct. http://www.adobe.com/products/flashlite/architecture/ Paul -- Tom Chiverton

Re: [flexcoders] Flex 3 Beta 2 expired today!! Is the a workaround?

2008-01-31 Thread Paul Andrews
This same question was asked when Beta1 expired and I don't think there's a resolution besides moving to a newer Beta. It seems fair enough in the context of a Beta programme. Paul - Original Message - From: eric_mahe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday

Re: [flexcoders] NEW Flex 3 Beta 2 expired Question

2008-01-31 Thread Paul Andrews
I think that the Beta releases expire at set dates and you'll have to change from Beta 2 to Beta 3.. - Original Message - From: essuark [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, January 31, 2008 11:59 AM Subject: [flexcoders] NEW Flex 3 Beta 2 expired Question I

Re: [flexcoders] Array vs ArrayCollection

2008-01-30 Thread Paul Andrews
Well, I suspect binding has a lot to do with choosing ArrayCollection (simply because it can generate the change events), but for performance, even if you use an ArrayCollection you can always do the speed calculations on the source array. Paul - Original Message - From: rmarples

Re: [flexcoders] Re: Working with maps / latitude / longditude data

2008-01-30 Thread Paul Hastings
Abyss Knight wrote: http://modestmaps. com/ http://modestmaps.com/ Yahoo's AS3 connection kit is another option, but the support on that it's AS2 requires a bit of hoop jumping. front has been spotty at best. ESRI has a Flex API coming out soon as well: it's out already works plenty

Re: [flexcoders] Working with maps / latitude / longditude data

2008-01-30 Thread Paul Hastings
Giles Roadnight wrote: I'm considering doing a project that involves displaying latitude / longitude data on a map. i would recommend esri's aws. fairly rich API, fairly easy to work with, good support flex 2. Are there any examples or anything out there like this?

Re: [flexcoders] Role based rendoring of MXML components - visibility and editability

2008-01-28 Thread Paul Andrews
access to or do anything that isn't permitted for that user. It's good to raise the flag that client-only verification isn't sufficient for robust security, but I don't see anything in the OPs request for a tag-based UI customised for roles and security settings that is inherently unworkable. Paul

Re: [flexcoders] Role based rendoring of MXML components - visibility and editability

2008-01-28 Thread Paul Andrews
with the security component updating states rather than directly manipulating components. Hope that helps. Paul - Original Message - From: cool.king08 To: flexcoders@yahoogroups.com Sent: Sunday, January 27, 2008 5:04 PM Subject: [flexcoders] Role based rendoring of MXML components

Re: [flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Paul Andrews
You need to create a new xml namespace. for example: xmlns:view=com.foo.foo.foo.views.*and add it to the the mxml file that references the component. I keep my actionscript classes amd components completely separate.. Paul - Original Message - From: Glenn Williams [EMAIL

Re: [flexcoders] Re: itemRenderer in folder other than source root

2008-01-26 Thread Paul Andrews
I have found that putting in a relative path seems to do the trick: itemRenderer=z.IRSnippetForSelection Where z is in a sub directory of my source. Paul - Original Message - From: Glenn Williams [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 26, 2008 3:44 PM

Re: [flexcoders] Flex LineSeries and Complex XML!!! Almost IMPOSSIBLE!!!

2008-01-25 Thread Paul Andrews
. specifiying fields as attributes (@) when they were not, doesn't help. Good luck. Paul BTW - change the URL back to what it should be first.. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=feedRequest.send() mx:XML id=mlb source

Re: [flexcoders] excel like evaluator for TextInput controls?

2008-01-25 Thread Paul Decoursey
I have not seen one, it sounds like a very useful thing. I'd imagine it would be a fairly big undertaking depending on how far you want to take it. I have not really looked at this too much, but this might be a potential starting point, http://www.solve-et-coagula.com/?p=9 looks like this

Re: [flexcoders] mxml loader

2008-01-25 Thread Paul Andrews
without using dynamically generated mxml. Paul thanks again ricardo http://www.resource.com/ mailto:[EMAIL PROTECTED] -- 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] First flex app

2008-01-24 Thread Paul Andrews
with an X in them, not sure what they are or do. I think basically the map needs some work! Good luck! Paul

Re: [flexcoders] First flex app

2008-01-24 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 2:52 PM Subject: Re: [flexcoders] First flex app On Thursday 24 Jan 2008, Paul Andrews wrote: Had a quick look - looking good, though the map is seriously broken

Re: [flexcoders] First flex app

2008-01-24 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 4:05 PM Subject: Re: [flexcoders] First flex app On Thursday 24 Jan 2008, Paul Andrews wrote: The GUI also doesn't resize itself to my browser. LOL, it's

Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Paul Andrews
, with the application floating centrally. Paul Regards Gustavo Gustavo A. Duenas Creative Director LEFT AND RIGHT SOLUTIONS 904. 265 0330 - 904. 386 7958 www.leftandrightsolutions.com Jacksonville - Florida

Re: [flexcoders] mxml loader

2008-01-24 Thread Paul Andrews
. Paul Thank you in advance, Ricardo Kirkner -- 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

Re: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Paul Andrews
you create each atom, put a reference to it in an array. When you think you've populated all the parentAtom references, check them all by cycling through the array. Somewhere, somehow, you must have a null parentAtom value. Sorry, not very helpful. Paul - Original Message - From

<    3   4   5   6   7   8   9   10   11   12   >