I am sure there is an easy answer for this but I have tried a few things and not sure where to go from here. I have a list that is populated from an array in a...
Heres a quick answer from my undercafineated brain <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> ...
... Just change the line in the loop to: states.removeItemAt(delState[i]-i); Everytime you remove an item, all of the indexes need to be shifted left 1. If...
I am new to flex, i have the flex builder software and Jrun server, i installed jrun first and Flexbuilder next, but when i start the jrun server the...
Have you considered de-incrementing the loop? Take the last one first then the compression would not change the lesser values. I think this might be more...
... If you're really worried about the efficiency you shouldn't use removeItemAt, but rather just call: states.splice( index, 1 ); That will delete a single...
When you say not all the changes percolate what do you mean? Calling invalidate() on a container should normally cause everything to update layout-wise. _____...
Have you checked the RestaurantFinder tutorial on Christophe's blog (http://www.coenraets.com/ <http://www.coenraets.com/> )? I'd start checking out your...
You're going to need to set up another system since every DataGrid is going to update to the last result that fired. <mx:Script> Function getProducts(propId,...
Yep, HTTPService supports event.call the same as RemoteObject. Matt _____ From: flexcoders@yahoogroups.com [mailto:jruud@...] Sent: Friday, April 29,...
What is the problem here? The DataGrid isn't as wide as you want? Set your width and height to 100% and maybe set your margins down to 0 if those extra ...
That's not going to return source though, it will end up compiling the application and returning the html wrapper for the swf. I think you should look into...
Check out christophe's demo here: http://www.coenraets.com/viewarticle.jsp?articleId=90 <http://www.coenraets.com/viewarticle.jsp?articleId=90> Matt _____ ...
You can file a bug report here: http://www.macromedia.com/go/wish <http://www.macromedia.com/go/wish> . Most of these you can workaround by dropping into...
hai! I want some change to occur in a datagrid on double click of an image in the Tile.. The datagrid and the tile are in seperate Mxml files,they are...
hi, i am trying to create a menu dynamically using a xml file obtained from a web service. my code snippet looks some thing like this. <mx:WebService...
Hi, Matt! What about the encoding topic? Known issue? ________________________________ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]...
Hi Matt, Oops, I lapsed. So, if I want to change styles dynamically, I can use StyleManager. And if I want to change styles without changing the source code, I...
Yokota Satoshi
sato-shi@...
May 2, 2005 12:15 pm
14325
Hello, I'm using Cairngorm framework, and I use a lot of RemoteObjects. So, the flex-config.xml file is large in size. I really want to split up...
Yokota Satoshi
sato-shi@...
May 2, 2005 12:24 pm
14326
Hi, if you open your Flex server's web.xml file you'll find an entry that configures the RemoteObject gateway. There you can define the location where the...
Hi everybody, I try to create a function allowing me to open all the branches of my tree. Problems i face with are : 1. I open only the first branch 2. The...
Hi, it's possibile i call this TitleWindow, the ppv value is dispaly? Sorry, i wish that the value is "selected", in this way my end user write a new value...
Hi all! I'm trying out the AdvancedTabNavigator and ran into some problems when using Cold Fusion I have AdvancedComponentSet-0_1.swc in my user_classes...
Rick Schmitty
flexcode@...
May 2, 2005 2:25 pm
14332
Hello, I am trying to center my application, but can't seem to make it work. <?xml version="1.0" encoding="utf-8"?> <mx:Application...
If you just want to set the styles once when the application starts, using CSS is best practice; it's fast and it decouples the styles from the code so that...