Re: [flexcoders] [BETA3] I am still having a problem.

2006-05-22 Thread Bryan Choi
Hi, stacey. Many thanks for your help. I see how can add  child node on a Tree with dataDescriptor from you. I had strived to know how I can do it. Thank you, Bryan. - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Tuesday, May 23, 2006 2:03 PM Subject: Re: [f

[flexcoders] Flex2B3 Accordion creationPolicy="all"

2006-05-22 Thread Tim Hoff
The help docs recommend the following code to instantiate all controls for every panel in the accordion container when the application starts:http://www.adobe.com/2006/mxml">        ...        ...In this sample: http://www.iepl.net/cairngorm2viewStates.html, there is an accordion container (Appl

Re: [flexcoders] [BETA3] I am still having a problem.

2006-05-22 Thread stacey
Use the dataDescriptor for the tree- here is an example from some base code i posted earlier about selecting a tree node item - but the jist of it is : var xm:ITreeDataDescriptor=myTree.dataDescriptor; xm.addChildAt(treeData.node.node[0]," ",0); FULL CODE FOLLOWS :) ,,-

Re: [flexcoders] [BETA3] I am still having a problem.

2006-05-22 Thread Bryan Choi
Hi,   As you can see below, I solved the problem.   private function addChildAtTree ():void {  var foo:XMLList = capitalColl.children ();  var foo_0 :XMLList = foo[0].children();  var fooColl :XMLListCollection = new XMLListCollection ( foo_0 );  fooColl.addItem ( new XML ( "" )

RE: [flexcoders] FlexSession sample code? Documentation?

2006-05-22 Thread Avik Chakrabarty
Hi, I wanted to off the right click option while it creates a swf file in the browser. Nothing get displayed on the right click. e.g. Macromedia Flash Player 8.0, I don't want anything. Can anyone put any light on this? Regards, Avik Chakrabarty On Thu, May 11, 2006 at 11:31 AM, Tom Bray

RE: [flexcoders] DataGrid cell edit and Row color problem

2006-05-22 Thread stacey
I think you need to have your renderer implement one of the interfaces like mx.controls.listClasses.IDropInListItemRenderer but not 100 percent sure. it might give you somewhere to look.. > > > > I assume you are not using Flex 2 as I am pretty sure setPropertiesAt is > no longer supported. But

Re: [flexcoders] Including External Files

2006-05-22 Thread jeremy lu
how about this ? (adding a slash) /Assets/Models/touchPlans.as"/> On 5/23/06, Ethan Miller <[EMAIL PROTECTED]> wrote: Greetings -Per the Flex documentation, I'm trying to include an external ASfile, as follows:The file "touchPlans.as" exists in the specified location, however when compiling,

RE: [flexcoders] DataGrid cell edit and Row color problem

2006-05-22 Thread Karl Johnson
I assume you are not using Flex 2 as I am pretty sure setPropertiesAt is no longer supported. But even in 1.5, setPropertiesAt can only be used to set a very small amount of styles/properties. Color I know is not one of them. You can set backgroundColor, icon and maybe one or two others. Otherw

[flexcoders] [BETA3] I am still having a problem.

2006-05-22 Thread Bryan Choi
var foo:XMLList = capitalColl.children ();foo.appendChild(new XML ( ""));     I tried to execute it.   I can see that it show me follow message.   ---   TypeError: Error #1086: The appendChild method only works on lists contain

Re: [flexcoders] Tree inside of Datagrid

2006-05-22 Thread stacey
have you tried making a custom listRenderer and have that be a component that extends hbox and put the tree in that>? > > > > Hi Everyone, > > Wondering if anyone has been able to put a tree control inside of a > datagrid control.  > > I'm working with Beta3. > > Any ideas on this is greatly ap

[flexcoders] CF, Flexmessaging and FDS2: Unknown destination 'ColdFusionGateway'

2006-05-22 Thread Barry Beattie
I'm trying to get Ben Forta's CF/FDS2/gateway example going http://www.forta.com/blog/index.cfm/2006/2/1/Getting-Started-With-ColdFusion-And-Flex-Enterprise-Services and keep hitting Unknown destination 'ColdFusionGateway' this means that FDS2 can't find ColdFusion's gateway, yes? - FDS2 (loca

[flexcoders] Re: 1.5 migration: How are you handling the loss of undefined and null states for vars?

2006-05-22 Thread Tim Hoff
Thanks Gordon.  I was wondering if that had changed from an older sample I had seen.  Ahh, Special Types.  Good to know. -TH--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:>> > Objects still support undefined and null > > No; type Object can store null but not undefin

[flexcoders] Tree inside of Datagrid

2006-05-22 Thread sufibaba
Hi Everyone, Wondering if anyone has been able to put a tree control inside of a datagrid control.  I'm working with Beta3. Any ideas on this is greatly appreciated. Cheers, Tim -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] DataGrid cell edit and Row color problem

2006-05-22 Thread sinacapho
Dear all, i have need to change the row color after the one of the cell have been edit. people says that it can use dg.setPropertiesAt(2, {backgroundColor:0xFF}); i find it work ^_^, but i have also add other properties by 1) dg.setPropertiesAt(2, {backgroundColor

[flexcoders] PopupManager breaks ComboBox

2006-05-22 Thread alex_aka_joe
Hi I am experiencing some problems with ComboBoxes within Forms that have been loaded by PopupManager I have a custom form that contains a ComboBox. When this form is loaded statically in MXML, there are no problems. However, if I use PopupManager to load the form (modal or non-modal), The Com

RE: [flexcoders] Re: 1.5 migration: How are you handling the loss of undefined and null states for vars?

2006-05-22 Thread Gordon Smith
> Objects still support undefined and null No; type Object can store null but not undefined. Only an untyped var (indicated by foo:*) can store undefined. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff Sent: Monday, May 2

[flexcoders] Flex 2b3 webservice returned error message --- usability issue?

2006-05-22 Thread Larry Liang
Yesterday, I developed a simple web app using cairngorm. I made a simple mistake when trying to use a coldfusion cfc through webservice. It seemed like if you serve a cf function as a webservice, all the variables declared with are requied, doesn't matter if you use requied="yes" or not.I forgo

RE: [flexcoders] 1.5 migration: How are you handling the loss of undefined and null states for vars?

2006-05-22 Thread Gordon Smith
Title: 1.5 migration: How are you handling the loss of undefined and null states for vars? Either create a flag variable for each Boolean property, or use type Object or * rather than Boolean for your true-false-or-unknown properties.   - Gordon   From: flexcoders@yahoogroups.

RE: [flexcoders] Re: set node selected on a tree

2006-05-22 Thread stacey
I hacked a example from the docs. Looks like it works. http://www.adobe.com/2006/mxml" >                                                                  

[flexcoders] Calling all 1.5 Skinning experts

2006-05-22 Thread Jonathan Miranda
Alright, got a stumper...least for me. Most basic graphical skinning with the Flash exporting of swc involves the base assets - datagrid, combobox, button, etc. Right, so checking out the base ComboBox assets - there's only skinning for the base control (the dropdown arrow control on the right)

[flexcoders] Re: 1.5 migration: How are you handling the loss of undefined and null states for vars?

2006-05-22 Thread Tim Hoff
Objects still support undefined and null.  Can you think of a way to bind objects to your boolean variables (like an associative array hashmap)? -TH --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > This has definitely become my biggest issue.  I have been de

[flexcoders] 1.5 migration: How are you handling the loss of undefined and null states for vars?

2006-05-22 Thread Tracy Spratt
Title: 1.5 migration: How are you handling the loss of undefined and null states for vars? This has definitely become my biggest issue.  I have been depending on checking for uninitialized variables containing undefined or null, but in 2.o this is no longer possible. I can see coming up wi

Re: [flexcoders] Re: TabNavigator & Accordion crashing when on another state

2006-05-22 Thread Josh Buhler
Ethan - Thanks for the info - I just found the updated thread on labs, and got your message a few minutes later. I added the historyManagementEnabled = false, and it worked great.Hopefully this one will get fixed soon, as it's something I could see happening fairly often if not fixed.- JoshOn May

Re: [flexcoders] FlexBuilder bug: unwanted, incorrect code completion

2006-05-22 Thread Tom Bray
Nice!  Thanks, Graham.On 5/22/06, Graham Weldon <[EMAIL PROTECTED]> wrote: Hi Tom, The option is turned off by going to: Window > Preferences > Flex > Editors > Actionscript Editor and turn off the "Wrap string automatically" option. Regards, Graham Weldon w. http://graham.weldon.ath.cx T

RE: [flexcoders] Re: set node selected on a tree

2006-05-22 Thread Tracy Spratt
I have not done this in 2.0 yet, but in 1.5 you want to set selectedNode, not selectedItem. Also in 1.5, you have to get a reference to the node somehow.  Usually I traverse(recursively, or using the index) the tree and compare the node values to whatever I need to find.  If the tree was fairly

[flexcoders] Re: TabNavigator & Accordion crashing when on another state

2006-05-22 Thread ekokurtz
Josh, I had the same trouble and had also posted on here about it looking for answer.  I was able to get a reply from an Adobe person via the Adobe/Macromedia forums -    set the historyManagementEnabled attribute = false for the tab,    accordion, etc.  This is a bug with the current beta

Re: [flexcoders] FlexBuilder bug: unwanted, incorrect code completion

2006-05-22 Thread Graham Weldon
Hi Tom, The option is turned off by going to: Window > Preferences > Flex > Editors > Actionscript Editor and turn off the "Wrap string automatically" option. Regards, Graham Weldon w. http://graham.weldon.ath.cx Tom Bray wrote: > Check out his snippet: > > onlineUsersPanel.

[flexcoders] Re: FlexBuilder bug: unwanted, incorrect code completion

2006-05-22 Thread Tom Bray
To make it a little more clear, I was converting this:onlineUsersPanel.users = new ArrayCollection( [ 'tom','suzy','megan','troy' ]);                Into this:onlineUsersPanel.users = new ArrayCollection(                     [                        {label:'tom'},                        {label:'

Fw: [flexcoders] Re: set node selected on a tree

2006-05-22 Thread Jesús Iglesias
Please, I had no response to this. On Flex2b3. I have a tree with an object as dataProvider. In response a some events of my aplication I need to select one node from the tree. The problem is I don't know how to do it. I tried treExplorer.selectedItem=treExplorer.getChildAt(i); but it does

[flexcoders] FlexBuilder bug: unwanted, incorrect code completion

2006-05-22 Thread Tom Bray
Check out his snippet:                onlineUsersPanel.users = new ArrayCollection(                    [                        {label:'tom'},                        {label:'suzy'}," +                                 "'megan','troy']); Notice how there's a double quote, a plus sign, a new line,

Re: [flexcoders] mx.automation

2006-05-22 Thread michael . corbridge
Thanks Graham, I have already reviewed the docs.  I was just looking for a kick-start that included some working code. --- This e-mail message (including attachments, if any) is intended for the use of the individual or en

RE: [flexcoders] mx.automation

2006-05-22 Thread Gordon Smith
Don't get excited about these because they've been removed since Beta 3. Sorry 'bout that. The automation features are being redesigned to have less impact on SWF size, and they won't be ready in time for the Flex 2 release; they'll be released later. - Gordon -Original Message- Fro

Re: [flexcoders] Event not bubbling when using PopUpManager

2006-05-22 Thread Carlos Rovira
great!  : )2006/5/22, Xavi Beumala <[EMAIL PROTECTED]>: Hi Carlos,that was it!! Thanks so muchX.On 5/22/06, Carlos Rovira < [EMAIL PROTECTED] > wrote: Hi Xavi,I don't know if this could be of help to you:http://www.darronschall.com/weblog/archives/000224.cfm Please tell me if is related to

Re: [flexcoders] mx.automation

2006-05-22 Thread Graham Weldon
Hi Michael, http://livedocs.macromedia.com/labs/1/flex20beta2/langref//mx/automation/IAutomationObject.html This site lists the details about the IAutomationObject, and also lists its known implementing classes:   ComboBox

[flexcoders] mx.automation

2006-05-22 Thread michael . corbridge
IAutomationIdHelper IAutomationMouseSimulator IAutomationObject IAutomationObjectContainer IInteractionReplayer Anyone know how these are used?  Any examples out there? --- This e-mail message (including attachments, if an

Re: [flexcoders] Event not bubbling when using PopUpManager

2006-05-22 Thread Xavi Beumala
Hi Carlos,that was it!! Thanks so muchX.On 5/22/06, Carlos Rovira <[EMAIL PROTECTED] > wrote: Hi Xavi,I don't know if this could be of help to you:http://www.darronschall.com/weblog/archives/000224.cfm Please tell me if is related to your problem Best,C.2006/5/22, Xavi Beumala <[EMAIL PROTECTE

[flexcoders] Strange thing happening with Flex 2 Beta 3 (eclipse plugin) - possible bug?

2006-05-22 Thread Greg Morphis
I've got a combo box being populated via code:               Basic Info     VM-Detail     Paging     TechData     Simple Freedom     SID     Anyways, when I run this the first time I don't see the Simple Freedom entry (the space for it is there and if I click

Re: [flexcoders] Event not bubbling when using PopUpManager

2006-05-22 Thread Carlos Rovira
Hi Xavi,I don't know if this could be of help to you:http://www.darronschall.com/weblog/archives/000224.cfmPlease tell me if is related to your problem Best,C.2006/5/22, Xavi Beumala <[EMAIL PROTECTED]>: Hi all,I'm launching a popUp with a custom component inside through PopUpManager. This cu

[flexcoders] Re: Flex Builder & Java dev setup best practice?

2006-05-22 Thread Martin Longo
Thanks Tom, that really helps!  I knew there had to be something out there... Martin --- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote: > > Here's a link that was really helpful for me: > > http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:Debugging > > You'

[flexcoders] Re: Login System

2006-05-22 Thread s_hernandez01
Hey Bill, In beta 3 where is the coldfusion wizard because it doesn't show on the "create new poject menu"? --- In flexcoders@yahoogroups.com, "Bill Sahlas" <[EMAIL PROTECTED]> wrote: > > Here's a Login sample app that uses the > RemoteObject.setRemoteCredentials(username, password) and the

[flexcoders] Including External Files

2006-05-22 Thread Ethan Miller
Greetings - Per the Flex documentation, I'm trying to include an external AS  file, as follows: The file "touchPlans.as" exists in the specified location, however  when compiling, I get this error: Unable to open included file: C:\Proto\Assets\Components\Assets\Models\touchPlans.as. 

[flexcoders] Re: Array filter method

2006-05-22 Thread sergio_trejo_r
Thanks for the response. The problem in my code is that I have a local variable named the same as the input parameter 'element:*' of the callback function.  If you modify the callback function to the following you will see the behavior that I was describing. private function isArray(elem:*, in

[flexcoders] Event not bubbling when using PopUpManager

2006-05-22 Thread Xavi Beumala
Hi all,I'm launching a popUp with a custom component inside through PopUpManager. This custom component has a button that when pressed dispatches an event. The launcher application is subscribed to this event but the event never gets to the listener. Here's the code:FILE: Launcher.mxmlhttp://www

[flexcoders] [flex coders]Flex Buider don't import mx package

2006-05-22 Thread Eduardo Dias
Hi,I am trying import mx package in Action Acript Project but the Flex Buider don't show me this package. If i try import this package the Flex Builder show me a message "could not be found". -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt S

Re: [flexcoders] Flex Builder & Java dev setup best practice?

2006-05-22 Thread Tom Bray
Here's a link that was really helpful for me:http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:DebuggingYou'll have to adjust some of the steps because they're for a previous Beta, but you'll figure it out. HTH,TomOn 5/22/06, flexabledev <[EMAIL PROTECTED]> wrote: I'm wondering if

[flexcoders] Re: How to use e4x

2006-05-22 Thread Geoffrey Williams
The xml returned defines it's own namespace: private function onInit ():void{         var loader:URLLoader = new URLLoader();         var request:URLRequest = new URLRequest ("http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml");         loader.addEventListener(Event

[flexcoders] Flex Buider don't import mx package

2006-05-22 Thread Eduardo Dias
Hi,I am trying import mx package in Action Acript Project but the Flex Buider don't show me this package. If i try import this package the Flex Builder show me a message "could not be found". -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt S

Re: [flexcoders] Re: TabNavigator & Accordion crashing when on another state

2006-05-22 Thread Josh Buhler
Yeah, I tried that, but it didn't make a difference. The weird thing was that the error only happened when running the swf within an HTML page. If I ran the swf by itself, either in the browser or stand-alone player, it worked fine.- JoshOn May 22, 2006, at 11:47 AM, Tim Hoff wrote: Are you sure

RE: [flexcoders] How does FileReference work? f2b3

2006-05-22 Thread Mitch Grasso
You need to keep the FileReference variable from going out of scope. In the examples, the FileReference variable is within the function. Moving it into the class fixes the example. mitch -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dima Uli

[flexcoders] Flex Builder & Java dev setup best practice?

2006-05-22 Thread flexabledev
I'm wondering if anyone can suggest the best way to set up a Flex Builder (beta 3 as eclipse plug-in) project that will also contain Java classes (accessed via Flex Remoting and/or Data Services).  Is it best to set up two projects, one for Flex and one for Java?  Can I have both in one project

RE: [flexcoders] SOAP dateTime to ActionScript date conversion

2006-05-22 Thread Peter Farland
> 1) Why is flex deserializing this as a String instead of a Date? [Pete] This would be a bug. Are you on the beta program and are you able to log a bug? If not, let me know and I can help. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt S

[flexcoders] Re: TabNavigator & Accordion crashing when on another state

2006-05-22 Thread Tim Hoff
Are you sure that setting creationPolicy="all" on the Accordion's container doesn't remove the null error? -TH --- In flexcoders@yahoogroups.com, Josh Buhler <[EMAIL PROTECTED]> wrote: > > Just wondering if anyone here has found a workaround to the issue  > that's described in this thread fr

[flexcoders] Re: SOAP dateTime to ActionScript date conversion

2006-05-22 Thread Tim Hoff
If you are just interested in displaying the date in MXML, here is an easy way using a date formatter. The text would show something like "05/22/06 at 5:00 AM".  Just add or remove the different formatString options to meet your needs. -TH --- In flexcoders@yahoogroups.com, "yomahz" <[EM

[flexcoders] Re: SOAP dateTime to ActionScript date conversion

2006-05-22 Thread yomahz
Thanks, that works great. --- In flexcoders@yahoogroups.com, "Harald Dehn" <[EMAIL PROTECTED]> wrote: > > Hi, > >  > > i had the same problem... > >  > > var dateReg:RegExp = > /^(\d{4})\-(\d{2})\-(\d{2})T(\d{2})\:(\d{2})\:(\d{2})/; > > var result:Object = dateReg.exec(soapDateValue);

WG: [flexcoders] Flex2B3 - Problems with the garbage collector

2006-05-22 Thread Harald Dehn
Hi, I am still having problems with the gc (see below), could anyone help me? Thanks, Harald -Ursprüngliche Nachricht- Von: Manish Jethani [mailto:[EMAIL PROTECTED] Gesendet: Montag, 22. Mai 2006 17:13 An: Harald Dehn Betreff: Re: [flexcoders] Flex2B3 - Problems with the garbage coll

AW: [flexcoders] SOAP dateTime to ActionScript date conversion

2006-05-22 Thread Harald Dehn
Hi,   i had the same problem…   var dateReg:RegExp = /^(\d{4})\-(\d{2})\-(\d{2})T(\d{2})\:(\d{2})\:(\d{2})/; var result:Object = dateReg.exec(soapDateValue); return new Date(Number(result[1]), Number(result[2]) -1,         Number(result[3]), Number(result[4]),   

[flexcoders] SOAP dateTime to ActionScript date conversion

2006-05-22 Thread yomahz
I'm having problems with Flex2 (b3) properly converting my SOAP dateTimes to ActionScript dates. The object in the ResultEvent shows it as a String instead of a Date:   2006-05-22T05:00:00.000Z The WSDL definition:   XML generated from the web service:   xmlns:ns_inventoryDate='http://mya

[flexcoders] How to use e4x

2006-05-22 Thread Jesús Iglesias
Title: Mensaje Hi, This is my code on F2b3. I load the "Euro foreign exchange reference rates" from http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml. It seems like all is fine but nothing happens. XML is well received, Alert.show(externalXML.toXMLString()) shows the xml, but then th

[flexcoders] Re: Amazon ECS SOAP requests via mx:request tags [FB2b3]

2006-05-22 Thread Renaun Erickson
Good to know, thank you for the find. Renaun --- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote: > > From earlier versions of Flex? I just noted this wasn't mentioned in the > docs in Flex 2 and have logged a bug. > > Thanks, > Pete > > -Original Message

[flexcoders] F2B3: NetStream onMetaData "request"

2006-05-22 Thread John C. Bland II
(no real "request"...just a "wouldn't it be nice"; explain if I'm missing something though)Wouldn't it be nice to add an event listener for onMetaData? This is so we don't have to do the following (per LiveDocs): "an instance of a Netstream subclass. Netstream is a sealed class, which means that

RE: [flexcoders] Cairngorm & Flex Data Services

2006-05-22 Thread Steven Webster
  Joao,   You ask some excellent questions.  Within Adobe Consulting, we're currently focussed on establishing some best-practice guidance here, but as always our best-practice guidance is based upon field experience as much as possible.  We're running a number of projects right now with F

[flexcoders] Fwd: logging via rpc -> crash, change to filter?

2006-05-22 Thread Ralf Bokelberg
This weekend i created a logging target, which passes the values to the server via rcp. The problem is, that rpc itself logs something internally, which results in a endless recursion. When i create a filter for my log target it works. But this imposes a second question: When i create a filter

[flexcoders] Is anyone else having trouble accessing components?

2006-05-22 Thread ubiqueros
Ok, here's the rub. I have the base mxml file that is referencing an external actionscript file. Now in Fb2 things were great, champagne fell from the heavens, etc, etc. However upon switching to bf3, I seem to be having a problem accessing properties custom components, but standard one as well,

Re: [flexcoders] Flex 2b3 - Clear Selected Item in List

2006-05-22 Thread Manish Jethani
On 5/22/06, porsoc <[EMAIL PROTECTED]> wrote: > In flex 1.5 there was a clearSelected() method on the list control > that would unselect the any items from the list.  I can not find this > or similiar functionality in flex 2.0.  Any one have any suggestions? Try setting selectedItem/selectedIt

[flexcoders] itemRenderer/dataGrid rollOverColor question

2006-05-22 Thread djbrown_rotonews
I've got a dataGrid setup, with each cell having an itemRenderer associated with it. The itemRenderer is setting the text color based on the value in each cell, via a setStyle("color", ) call. The problem is that this prevents my rollOverColor declaration in my DataGrid from working (you can

Re: [flexcoders] F2B3: Javascript security

2006-05-22 Thread Manish Jethani
On 5/22/06, FineLine <[EMAIL PROTECTED]> wrote: > I'm trying to develop a Flex app that calls a _javascript_ function in the container page. I did a simple test app using the call() method of the ExternalInterface API, and it worked fine with the HTML page and the SWF file in the original compi

RE: [flexcoders] F2B3: Javascript security

2006-05-22 Thread Rostislav Siryk
Maybe crossdomain Policy File will help?             Rost     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of FineLine Sent: Monday, May 22, 2006 11:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] F2B3: _javascript_ securit

[flexcoders] TabNavigator & Accordion crashing when on another state

2006-05-22 Thread Josh Buhler
Just wondering if anyone here has found a workaround to the issue that's described in this thread from the labs forums:http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=584&threadid=1153391&enterthread=yEssentially, if I create an app with two states, and place an Accordion or Ta

[flexcoders] Flex 2b3 - Clear Selected Item in List

2006-05-22 Thread porsoc
In flex 1.5 there was a clearSelected() method on the list control that would unselect the any items from the list.  I can not find this or similiar functionality in flex 2.0.  Any one have any suggestions? Josh -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcode

[flexcoders] Cairngorm & Flex Data Services

2006-05-22 Thread João Fernandes
Hi there,   Where does messaging and data-services fit in cairngorm? Should I put them define them in the serviceLocator like my remote Objects? How to handle conflict/message notifications ? should my command implement a new interface? How about messaging?   Thanks,   João Fer

[flexcoders] logging via rpc -> crash, change to filter?

2006-05-22 Thread Ralf Bokelberg
This weekend i created a logging target, which passes the values to the server via rcp. The problem is, that rpc itself logs something internally, which results in a endless recursion. When i create a filter for my log target it works. But this imposes a second question: When i create a filter

Re: [flexcoders] FlexBuilder 2 error

2006-05-22 Thread [sami]
Hello,I'm having problems with getting values from components with mouseX and mouseY. Going through the code with stepper sems to lead to missing mx.automation (mx.automation::Automation$/get mouseSimulator) class. Maybe these two problems have a same reason?-SamiOn 5/17/06, Kevin Roche <[EMAIL

RE: [flexcoders] HTTP Service Error

2006-05-22 Thread sreedhar reddy
Hi Peter,      I did not try browsing to the URL directly. Just I executed .mxml file direcltly inside Flex Builder 2.0 Beta 3.0. Here, I made Tomcat5.5\webapps\Root as default project location.  Peter Farland <[EMAIL PROTECTED]> wrote: Have you tried browsing to the URL directly?

RE: [flexcoders] Get new component dimensions without rendering it

2006-05-22 Thread Rick Englert
To do exactly what you're asking is probably possible, but I don't know how to do it.  You might "hide" the flash by putting a short show/hide fade effect on it.  I haven't tried it, but in my mind it should still reposition itself immediately (while visibility of the fade effect is still close

[flexcoders] F2B3: Javascript security

2006-05-22 Thread FineLine
I’m trying to develop a Flex app that calls a _javascript_ function in the container page. I did a simple test app using the call() method of the ExternalInterface API, and it worked fine with the HTML page and the SWF file in the original compile folder. But when I moved both files, the

[flexcoders] CF Flex Connectivity : Flex Output Window, Channel-Definitions and Destinations

2006-05-22 Thread dirtmediaworld
I moved the cf-dataservice-rtmp and cf-polling-amf channel definitions to the flex-enterprise-services.xml file, along with moving the cfcontact destination definition to the flex-data-service.xml files into c:\fds2\jrun4\servers\default\flex\. Then when I start the flex server the following DOE

Re: [flexcoders] Reducing Initial Startup time in Flex 1.5

2006-05-22 Thread Sreejith Unnikrishnan
Use a creationPolicy on the container. You could use "queued" if you want the rest of the app to load in the background or "none" if you want to load when explicitly requested.   - Original Message - From: Tom Chiverton To: flexcoders@yahoogroups.com Sent: Monday, May 22

Re: [flexcoders] Reducing Initial Startup time in Flex 1.5

2006-05-22 Thread Tom Chiverton
On Friday 19 May 2006 08:08, web_manager_2004 wrote: > How can we reduce initial startup time of a flex application ? Suppose > we have a large application , and we want to reduce application > startup time. Is it possible that we are able to devide application > into multiple SWF files and (Ini

[flexcoders] How does FileReference work? f2b3

2006-05-22 Thread Dima Ulich
In f2b2 filereference worked fine, but now I can't get it to work. I have used example I found in help, but with no luck. Debug shows that there was #2037 error (Functions called in incorrect sequence, or earlier call was unsuccessful.) Am I doing anything wrong or is there a bug in fileReferen

[flexcoders] Cold Fusion/Flex Application Wizard and Images

2006-05-22 Thread Paolo Bernardini
I tryed the new Cold Fusion/Flex Application Wizard and find it very usfull, one thing that I would like to see is the possibility to upload images in a custom dir and save the url string on the db. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexco

RE: [flexcoders] Sourcesafe for Flex beta 2 / eclipse 3.1x

2006-05-22 Thread Jonas Windey
I’m bumping this message because the VSS plugin still isn’t working in beta 3.   Any help?   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonas Windey Sent: dinsdag 25 april 2006 14:10 To: flexcoders@yahoogroups.com Subject: [flexcoders] Sourcesafe f