Re: [flexcoders] Collapsible Panel

2010-02-20 Thread Jose adriano Alves
Do you have a sample? I would like a lot... I have experience but in Delphi, but I going step by step in Flex... Em 19 de fevereiro de 2010 22:13, Jake Churchill reyna...@gmail.comescreveu: just make your layout th en look at animateProperty. You can build one of those from scratch in

Re: [flexcoders] Flex Builder build and search functions die on Vista

2010-02-20 Thread Lee Jenkins
Tom McNeer wrote: Very strange. Vista, 32-bit. Flex Builder 3 plug-in. Eclipse 3.4 Ganymede. Flex SDKs 3.4 and 3.5. A couple of days ago, I noticed that Flex Builder was not re-building projects before running them. I attempted to compile using Project Build Project, and nothing

[flexcoders] Agent Platform for Actionscript

2010-02-20 Thread Everson Alves
We are interested in developing an experimental project, an Agent Platform for Actionscript, something similar to JADE. What you guys think? -- Jhonny Everson

Re: [flexcoders] HTTPService return times Air vs Flash (Solved - Kinda)

2010-02-20 Thread Lee Jenkins
Lee Jenkins wrote: Web based flex applications seem to take magnitudes longer to return a result than do Air based application. I've tried with HTTPService and URLLoader components and it is the same. I've created one small air application and one small web based flex app

RE: [flexcoders] Re: Still getting Security Sandbox violations...

2010-02-20 Thread Tracy Spratt
Also be aware that there are a couple additional lines required in the crossdomain file in some circumstances, especially for webservce: site-control permitted-cross-domain-policies=master-only/ allow-http-request-headers-from domain=* headers=*/ I'm with you on despising the constraints of

[flexcoders] Re: How transmiting a string to variable in contexmenu

2010-02-20 Thread jaywood58
Your posting is unclear. What is it that you want to copy to searchString? Your snippet will set searchString to [object ContextMenu]. Is that really what you want? Also, ContextMenu already has a clone() method, so I don't get why you are declaring one of your own. --- In

[flexcoders] Scalable drawings in a Canvas

2010-02-20 Thread Christophe
Hello, I would like to draw some graphics (with Sprite) inside a Canvas for replacing a background image. But, I would like that this drawing is scalable. How to develop that ? Thank you, Christophe

[flexcoders] Re: Modify context menu of TextArea

2010-02-20 Thread jaywood58
You can't alter the clipboard items (cut, copy, paste, etc.), but you can add your own custom items. If that's what you want to do, see the code example on Adobe livedocs for the ContexMenu class. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I'm pretty sure you can't alter

[flexcoders] Re: Modify context menu of TextArea

2010-02-20 Thread jaywood58
Here is a very simple example in MXML: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute contextMenu={cm} creationComplete=init() mx:TextArea id=myTA x=10 y=10 width=200 height=100/ mx:Script ![CDATA[ import

[flexcoders] Array Collection

2010-02-20 Thread criptopus
I have an array collection from a HTTPService and I need to pass it over to a component that has use for one of the fields in the collection. I don't really want to pass the whole array collection over to the component but I need a list of user names from it to make sure the component dosn't

[flexcoders] Chromeless AIR app in Flash Builder 4?

2010-02-20 Thread tex_learning_flex
Does anyone know how to create a chromeless AIR app in Flash Builder 4? thanks

[flexcoders] Re: Array Collection

2010-02-20 Thread criptopus
Something like ... for each (var member in membData) mEdit.membAccounts.push(member.usraccount); not sure what to type member though? - Stephen

Re: [flexcoders] Re: Still getting Security Sandbox violations...

2010-02-20 Thread Warren
Yes, I'm using CF8. I didn't know the endpoints changed in. When you get all this to work, could you post it. Soon I will be transitioning to CF9 and would like the benefit of your lessons learned. - Original Message - From: Laurence To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Re: .CFC cannot be accessed remotely...

2010-02-20 Thread Jochem van Dieten
On Fri, Feb 19, 2010 at 12:11 PM, Laurence wrote: Very weird...  The access was set to public.  Don't know how that was working on my old server -- I didn't change any code at all...  And it worked fine on the old setup... Your old server probably was not up to date on its security patches:

Re: [flexcoders] FlexBuilder 3 and ColdFusion 9 Extensions...

2010-02-20 Thread Jochem van Dieten
On Fri, Feb 19, 2010 at 5:06 AM, Laurence wrote: Anyone know where I can download the ColdFusion 9 Extensions for  Eclipse?  I can find only the CF8 Extensions...  I'd really like to install the CF9 Extensions, assuming they exist... I believe they go by the name CFBuilder now:

[flexcoders] SQL Question

2010-02-20 Thread Wally Kolcz
I know this is out of the core topic, but I am banging my head on this simple issue..or probably is... I am trying to write a SQL query (in ColdFusion) for my database (MySQL 5) when I am looking for a passed in argument value in the column (which is set as a varchar). I am passing in '0' for

[flexcoders] Reason for image list flickering

2010-02-20 Thread Aaron Hardy
Hey flexers, When scrolling a list of images up and down there is some flickering that goes on. I know how to fix it, but I'd really like to know the underlying reason it occurs. Ely Greenfield (

[flexcoders] Re: SQL Question

2010-02-20 Thread Jeff
I strongly recommend that you modify your database structure so that you do not store comma separated lists in a field. Read up on many to many relationships and intersection/linking tables. If I had to theorize on your problem; SQL is seeing your 'ageGroups' and 'accountType' fields as a

Re: [flexcoders] Re: SQL Question

2010-02-20 Thread Wally Kolcz
Thanks Jeff. I already started that process. I was hoping that since I have so many relationships I would have to do that...just being lazy. On 2/20/2010 8:00 PM, Jeff wrote: I strongly recommend that you modify your database structure so that you do not store comma separated lists in a

[flexcoders] How to get a value

2010-02-20 Thread Wally Kolcz
I have an instance of a Class (Page) which has a textarea on it which is editable. I added an eventlistener to the TextArea for FocusEvent.FOCUS_OUT. When the FocusEvent (e) gets to the hander, I can use e.currentTarget to get the value of the TextArea, but I need a value in a variable in the

[flexcoders] Re: .CFC cannot be accessed remotely...

2010-02-20 Thread Laurence
I'm guessing you're right. I was running CF 8.01 (not ever patched, to my knowledge) on the old server, and CF9 on the new one. So that explains the lack of enforcement of public vs. remote on the old server. Where do I go to keep up with the patches for CF9? Is there a single page

[flexcoders] Re: SQL Question

2010-02-20 Thread Laurence
First off, I would suggest making your query much simpler, just to diagnose the problem. Then add complexity to it and see if/when it goes wrong... Start with (for example): SELECT roomDisplay, roomID, ageGroup, accountType FROM chatrooms WHERE cfqueryparam value=#arguments.accountType#

[flexcoders] Re: Still getting Security Sandbox violations...

2010-02-20 Thread Laurence
Well, the lesson learned here is -- trust that the services-config.xml file that came with your CF installation is probably properly formatted. Don't make changes unless you know precisely what you're doing. :-) In all seriousness, though, don't go copying everything from your old

Re: [flexcoders] Re: Array Collection

2010-02-20 Thread Alex Harui
The type depends on what the items in the ArrayCollection are. You can use Object if you’re not sure. The cost of using Object is generally ignorable. On 2/20/10 11:31 AM, criptopus sd_br...@ntlworld.com wrote: Something like ... for each (var member in membData)

Re: [flexcoders] How to get a value

2010-02-20 Thread Alex Harui
If you have: Public class Page { private var myTextArea:TextArea; private var journalID:String; override protected function createChildren():void { myTextArea = new TextArea(); myTextArea.addEventListener(FocusEvent.FOCUS_OUT, myFocusOutHandler); }

[flexcoders] Security issues SOLVED. (Mostly...)

2010-02-20 Thread Laurence
So, here's my crossdomain.xml in its final form: cross-domain-policy site-control permitted-cross-domain-policies=master-only / allow-http-request-headers-from domain=www.mydomain.com headers=* secure=false/ allow-access-from domain=www.mydomain.com secure=false /

Re: [flexcoders] Displaying formatted HTML in a flex component?

2010-02-20 Thread Peeyush Tuli
try this - http://code.google.com/p/flex-iframe/ On Thu, Feb 18, 2010 at 7:30 PM, flexnewbie999 wgb.jobsearch@gmail.comwrote: I'm redoing an existing site and the client wants the same HTML that already exists to be displayed in the Flex front end. I'm relatively new to this and

[flexcoders] Capturing a browser-refresh event...

2010-02-20 Thread Laurence
In my app, if you click the browser's refresh button, it re-loads the app and starts it over from the beginning (as you'd expect.) I want my app to be able to capture this refresh event (or perhaps just block it completely?) so that users won't lose all the data they've entered if they

Re: [flexcoders] Re: .CFC cannot be accessed remotely...

2010-02-20 Thread Jochem van Dieten
On Sun, Feb 21, 2010 at 5:27 AM, Laurence wrote: Where do I go to keep up with the patches for CF9?  Is there a single page somewhere that lists all the patches that have been released for CF9? Security patches: http://www.adobe.com/support/security/#coldfusion Optional updates:

[flexcoders] Re: .CFC cannot be accessed remotely...

2010-02-20 Thread Laurence
Thanks! L. --- In flexcoders@yahoogroups.com, Jochem van Dieten joch...@... wrote: On Sun, Feb 21, 2010 at 5:27 AM, Laurence wrote: Where do I go to keep up with the patches for CF9?  Is there a single page somewhere that lists all the patches that have been released for CF9?