RE: [flexcoders] call from https to http giving sandbox violation error

2007-10-06 Thread Alex Harui
If https load http, then you have to use allowInsecureDomain, but our Security team discourages this configuration as once you do so, a tampered http swf can get at your https swf's data. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] ColdFusion: Do I need a local dev instance to use CF setup with Flex?

2007-10-06 Thread Muzak
http://tech.groups.yahoo.com/group/flexcoders/message/82569 - Original Message - From: Brendan Meutzner [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, October 06, 2007 12:48 AM Subject: [flexcoders] ColdFusion: Do I need a local dev instance to use CF setup with Flex?

[flexcoders] Opening FB2 project in FB3b2

2007-10-06 Thread Steve Hueners
I've tried exporting to achieve but the import in FB3 doesn't recognize it as a valid archive file. It's only recognizing FB3 achieves? Am able to import as Other | General but not as a root project. There's no obvious way to simply open a project that existed in FB2. Are we expected to first

[flexcoders] why I want to see WebKit as a standard Flex control (not just for AIR)

2007-10-06 Thread barry.beattie
the code below is an app that I used Judah's HTMLcontrol.swc for - in three places. While it mostly works, the fact that it uses IFrames and javascript is still a compromise. No disrespect to Judah but I'm trying to totally remove the influence of the browser - that's why I'm using Flash in the

Re: [flexcoders] Opening FB2 project in FB3b2

2007-10-06 Thread Paul Dale
I've regularly imported between them. Not as an archive, just export-general-file system. Same for import ... On 10/6/07, Steve Hueners [EMAIL PROTECTED] wrote: I've tried exporting to achieve but the import in FB3 doesn't recognize it as a valid archive file. It's only recognizing FB3

Re: [flexcoders] why I want to see WebKit as a standard Flex control (not just for AIR)

2007-10-06 Thread hank williams
I gotta say I totally agree it would be incredibly cool. I am doing some stuff in AIR with the HTML control that has nothing to do with local access. The only reason not to include it (and its a big one) is the fact that adobe wants to keep the size of the player down. Of course in the next few

[flexcoders] Re: Passing ID from master to detail

2007-10-06 Thread stlum9495
Ah...I understand what you are doing. Is this the best way though? I can see how it's EASY. But putting a reference to the details canvas w/in the master canvas tightly couples them together. Some might say they that a master and detail should be tightly coupled but I go for a loosely coupled

[flexcoders] DataTips on DataGrid shows entire XML line item, why?

2007-10-06 Thread Mark
I have a Web Service pulling in XML which I'm putting into an ArrayCollection. public function fullResult(event:ResultEvent):void { var fullXML:XML = XML(event.result); var deployLength:Number = fullXML.deployment.length(); for(var i:Number = 0; i deployLength; i++){

Re: [flexcoders] Filtering out list items?

2007-10-06 Thread Arpit Mathur
Use ArrayCollection as the dataProvider and use the filter function. Bind the List's dataProvider to the output of the filter. On 10/5/07, Robert Csiki [EMAIL PROTECTED] wrote: Hello, I have a List using a custom component as item renderer. I want some items not to be displayed, based

RE: [flexcoders] DataTips on DataGrid shows entire XML line item, why?

2007-10-06 Thread Alex Harui
bug. fixed in moxie. use datatipfunction From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Saturday, October 06, 2007 10:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataTips on DataGrid shows entire XML line item,

Re: [flexcoders] Filtering out list items?

2007-10-06 Thread Paul Dale
Assuming folderViewData is a collection ... private function myFilter(item:Object) : Boolean { return some_boolean_comparison_on_item; } folderViewData.filterFunction = myFilter; Note, you must refresh the collection after a change happens (for instance on change of a textinput used for a

[flexcoders] Cancel an HttpService call

2007-10-06 Thread Guillermo Villasana Cardoza
Is there a way to cancel an HttpService call? What I want to do is that if someone click button 1, then an httpsevice is called,but if button 2 is clicked then cancel button 1 call and call a new httpservice. Is this possible? Thanks

[flexcoders] Re: Framework Caching not working

2007-10-06 Thread danielvlopes
Some one can help?? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: My flash player is 9,0,60,235 Even i use Beta 2, caching still not working. I don't know why, some one can help? Something wrong with my buil.xml? --- In flexcoders@yahoogroups.com, Tom

RE: [flexcoders] Re: Framework Caching not working

2007-10-06 Thread Alex Harui
Sorry, I think the guy who owns this feature was on vacation this past week. I'll try to look at it if I get a chance. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, October 06, 2007 1:23 PM To:

RE: [flexcoders] Cancel an HttpService call

2007-10-06 Thread Alex Harui
Looks like you can call cancel() on the service/operation If that doesn't work, I would remove my result handler or put a flag so the result handler just returns without doing anything. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Tree branch closed on display?

2007-10-06 Thread Paul Dale
expandItem or expandChildrenOf on the root would do it (with the second param set to false ...) On 10/6/07, candysmate [EMAIL PROTECTED] wrote: When my tree is first diaplayed, some of the branch nodes are expanded by default. How can I have them closed by default?

[flexcoders] BUG IN Flex Builder 3 Beta 2

2007-10-06 Thread danielvlopes
Hello, flexbuilder 3 beta 2 had a bug in forms. This error arruined layout of forms when happen. In my case i had a component based in form and in this form i dont specify the height because inside this form some formitem will be create in repeart dinamically. If i not specify height all form

[flexcoders] Re: Framework Caching not working

2007-10-06 Thread danielvlopes
Thanks again alex. :-) --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Sorry, I think the guy who owns this feature was on vacation this past week. I'll try to look at it if I get a chance. -Alex From:

Re: [flexcoders] adding an event listener to a dynamically added component

2007-10-06 Thread Robert Munn
That was easy, thanks Alex! BTW, I had to cast the target on the remove function to avoid an implicit coercion error: searchRows.removeChild(DisplayObject(e.target)); Rob On 10/5/07, Alex Harui [EMAIL PROTECTED] wrote: var newRow:SearchInputRow = new

Re: [flexcoders] X and Y position of AIR app...

2007-10-06 Thread Scott Prentice
OK .. it's working now. The get works fine with .. stage.nativeWindow.x .. OR .. nativeWindow.x .. (that's with a lowercase stage) But the set *only* works with .. nativeWindow.x This may be obvious to a more experienced Flex coder, but wasn't to me. :) Cheers, ...scott

[flexcoders] Flex 3 beta 2 grew my app

2007-10-06 Thread Guillermo Villasana Cardoza
I installed FB3 beta2 and after compiling my app, it grew from 500K to 725K why? I had --optimze option enable... what made it grew?

RE: [flexcoders] Flex 3 beta 2 grew my app

2007-10-06 Thread Alex Harui
Did you export a release build? Normal builds now all have debug information in them. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guillermo Villasana Cardoza Sent: Saturday, October 06, 2007 9:57 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Framework Caching not working

2007-10-06 Thread Alex Harui
I think the rsl line is supposed to look like this: -runtime-shared-library-path=C:\moxie\frameworks\libs\framework.swc,fram ework_3.0.183453.swz,,framework_3.0.183453.swf This signifies the use of a digital signature for the rsl which turns on the cross-domain rsl feature and requests that

RE: [flexcoders] BUG IN Flex Builder 3 Beta 2

2007-10-06 Thread Alex Harui
Please file a bug with a simple test case From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Saturday, October 06, 2007 3:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] BUG IN Flex Builder 3 Beta 2 Hello,