Re: [flexcoders] List ScrollToIndex does not work for last item in List

2009-07-08 Thread niamath basha
It works fine, have a look at this.. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=load() mx:Script ![CDATA[ import mx.collections.ArrayCollection; private function load():void { var

[flexcoders] how to set a layout object's height to 100%?

2009-07-08 Thread coder3
Hi All I create an object as Grid, and i need to set the height to 100%. how to do it in script? for example: var grid:Grid = new Grid(); for(..) { var gridrow:GridRow = new GridRow(); grid.addChild(gridrow); } //now how to set grid.height = 100% instead of grid.height=222??? --

Re: [flexcoders] how to set a layout object's height to 100%?

2009-07-08 Thread thomas parquier
The little unknown percentHeight property should work : percentHeight = 100; thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2009/7/8 coder3 rrhu...@hotmail.com

Re: [flexcoders] Re: Flex in eclipse

2009-07-08 Thread Tom Chiverton
On Tuesday 07 Jul 2009, vladakg85 wrote: Ok, I downloaded xsd4MXML project and opened it in Eclipse...Build...It works... but what do I get with this? Am I wrong in something? You get a .xsd file, which gives you syntax highlights and insight for MXML files. You can install it via a procedure

[flexcoders] How can change the font direction?

2009-07-08 Thread j2me_soul
There are many titlewindows in my application, so I have to lay out them in order. I wanna change the panel size, position, and the direction of panel title in order to display the title readability when the titlewindow is vertical. But I can't find a wish way to change the directio of the

[flexcoders] Problem with calling customcomponent second time.

2009-07-08 Thread Ganesh Suyampirakasam
Hi I have two Link button, First button contain canvas with more fields,similar way second also contain few fields One field is Customcomponent,ie combox. In 1st link button the combo will load with creation complete. in second link button i can have the option to add few moreentries to

Re: [flexcoders] Problem with calling customcomponent second time.

2009-07-08 Thread niamath basha
don't call it on creationComplete instead call it on 'show' event. With Regards, Niamath Basha www.niamathbasha.wordpress.com On Wed, Jul 8, 2009 at 12:55 PM, Ganesh Suyampirakasam ganesh.suyampiraka...@yahoo.co.in wrote: Hi I have two Link button, First button contain canvas with

[flexcoders] Re: Horrible... 3 seconds initialization time for the first frame? Frustrated....

2009-07-08 Thread Dan
Hi Alex, Thanks, then my question is, can the classes in Frame1 of a Module be offloaded to RSL or by Link-Report? My applications are using nearlly hundred of Module, maybe due to what you mentioned about Frame1 class cannot be offloaded, Flex 3 has much more classes in Frame1 then in Flex

[flexcoders] Re: Horrible... 3 seconds initialization time for the first frame? Frustrated....

2009-07-08 Thread Dan
One more question, the ResourceManager are new element in Flex3, what if we don't want that (we have our own language bundle) can we removed that? As from the rpt file, there are so many new classes introduced in Flex 3, is there any compilation arguement have to be set, from livedocs, it seems

[flexcoders] Re: Flex in eclipse

2009-07-08 Thread vladakg85
I have installed WTP, associate mxml with XML editor, add xsd schema in xml catalog...but don't work :( I found some tool AXDT it works fine, but only thing I miss is debuger, I don't know how to add breakpoint and watch my variables while code executes, somebody know? --- In

[flexcoders] Establishing a AMF Secure connection need 1 second delay!!!?

2009-07-08 Thread Dan
Hi, Does anyone notice that it takes nearlly ONE second for the first AMF or AMFsecure call to establish? Is there way to make this time shorter? The observation is from when the swf is loaded, imediately a amfsecure A' call is made, from a Charles proxy, there is another unknown amfsecure

[flexcoders] Re: Fishbone Chart/Ishikawa Chart

2009-07-08 Thread Pedro Sena
Someone? :( On Mon, Jul 6, 2009 at 5:37 PM, Pedro Sena sena.pe...@gmail.com wrote: Hi Guys, I need to develop a fishbone(Ishikawa) chart . I would like to know if someone already did it and can point me some resource/link, even paid softwares I'm accepting. I could generate it in PHP

[flexcoders] help with a flex project

2009-07-08 Thread Gustavo Duenas
Hi Guys, long time no see, I was wondering if you could know how can I do this: I have some flv. videos, I write them up into a an xml list. Ok, I want to make a repeater that once It get clicked launch the video in a window . everyone could help with a step by step guide or at least

[flexcoders] Re: how to set a layout object's height to 100%?

2009-07-08 Thread kenny14390
percentHeight is probably what you want, but another way to achieve 100% height is so set top=0 and bottom=0. This is the natural way to achieve 100% in the design mode of Flex Builder. --- In flexcoders@yahoogroups.com, coder3 rrhu...@... wrote: Hi All I create an object as Grid, and i

[flexcoders] setStyle not valid

2009-07-08 Thread j2me_soul
I try to change the style at runtime mx:Button x=38 y=44 label=为中国喝彩 click=butClickHandler(event)/ mx:Label id=styleLabel text=I'm Label/ private function butClickHandler(event:MouseEvent):void { /* it doesn't work */ styleLabel.setStyle(font-size, 72); }

Re: [flexcoders] Re: Flex in eclipse

2009-07-08 Thread Tom Chiverton
On Wednesday 08 Jul 2009, vladakg85 wrote: I found some tool AXDT it works fine, but only thing I miss is debuger, I don't know how to add breakpoint and watch my variables while code executes, somebody know? I'm not aware of a (free) Eclipse-integrated debugger. You can use 'fdb' from the

[flexcoders] Re: Flex Browse File Video

2009-07-08 Thread gilbert_mizrahi
In AIR loading a video works fine. In Flex (FP10) I was able to load the file as a ByteArray, but I don't know how to process it to view it on a VideoDisplay or FLVPlayback component. I asked that question in another thread, but got no answers. --- In flexcoders@yahoogroups.com, Battershall,

[flexcoders] undefined in stack trace (Console), stack overflow (2nd try)

2009-07-08 Thread erikdebruin_nl
Hi, I've Googled me senseless, but I can't find a clue to my latest problem: When I run my application in the browser, all is fine. When the same app in AIR (we've build it so the same codebase is shared between on- and offline versions), I get an exception and the last line in the stack trace

[flexcoders] undefined in stack trace (Console), stack overflow

2009-07-08 Thread erikdebruin_nl
Hi, I've Googled me senseless, but I can't find a clue to my latest problem: When I run my application in the browser, all is fine. When the same app in AIR (we've build it so the same codebase is shared between on- and offline versions), I get an exception and the last line in the stack trace

Re: [flexcoders] Re: Flash MiniBuilder: online AS3 IDE

2009-07-08 Thread Victor
Yes, quite a few things were fixed, but the verify error seem to come from an older version of FlashPlayer The app needs Player 10, as it uses Vector and lots of other new features. Please comment on my blog if you are interested in the project, I'll be off this list, it has too much activity

Re: [flexcoders] Re: Horrible... 3 seconds initialization time for the first frame? Frustrated....

2009-07-08 Thread Anatole Tartakovsky
Dan, The classes explicitly referenced in SystemManager are always linked in the first frame. That said, given the fact that you have open source SDK, you can play quite a few tricks on Flex/linker. First, if you are loading in the application domain you can place your own SystemManager of ~0

[flexcoders] Re: Accesing Webservices behind Firewall

2009-07-08 Thread valdhor
So long as the server hosting WebORB can access the Web Service behind the firewall, then you can use WebORB. Just download the latest version of WebORB. --- In flexcoders@yahoogroups.com, vin.flex vin.f...@... wrote: Hi there, I have developed a Flex app with .NET webservices as the

[flexcoders] Re: Establishing a AMF Secure connection need 1 second delay!!!?

2009-07-08 Thread valdhor
I don't use secure communications (My applications are deployed in an intranet) but I just had a look at my communications in Charles. On startup I create two remote objects that call a total of three remote methods. Each remote object sends a Command Message of 2.3KB which takes 160ms. The

[flexcoders] Re: setStyle not valid

2009-07-08 Thread Tim Hoff
styleLabel.setStyle(fontSize, 72); -TH --- In flexcoders@yahoogroups.com, j2me_soul j2me_s...@... wrote: I try to change the style at runtime mx:Button x=38 y=44 label=ΪÖйúºÈ²Ê click=butClickHandler(event)/ mx:Label id=styleLabel text=I'm Label/ private function

Re: [flexcoders] undefined in stack trace (Console), stack overflow

2009-07-08 Thread thomas parquier
You may have one type of event (A) handled in a function which dispatches another type of event (B) handled in a function which dispatches an event of type A. If dispatching occurs before handler functions return you may get a stack overflow. thomas --- http://www.web-attitude.fr/ msn :

[flexcoders] How to set TileList autoscroll sensitivity during drag and drop live scrolling

2009-07-08 Thread flexwdw
Hey all, I have a TileList with rather large tiles and a sometimes small view. At times, this means that only two rows are shown in the tile list view. I need the functionality to drag and drop items in the tile list for sorting. The problem is that the sensitivity of the live scrolling in

[flexcoders] Re: Fishbone Chart/Ishikawa Chart

2009-07-08 Thread valdhor
I don't know of anything available at this time. You may like to make a suggestion to ILOG (http://www.ilog.com/products/ilogelixir/) and/or Fusion (http://www.fusioncharts.com/flex/) to add this type of chart. Best Regards Steve --- In flexcoders@yahoogroups.com, Pedro Sena

[flexcoders] Re: undefined in stack trace (Console), stack overflow (2nd try)

2009-07-08 Thread valdhor
A co-worker had the same error the other day (In the web application though, not in AIR): Stack Overflow. In his case it turned out to be rampant events. He made sure to use event.stopImmediatePropagation() when the event was no longer required to bubble and the error went away. This may not

Re: [flexcoders] Re: Fishbone Chart/Ishikawa Chart

2009-07-08 Thread Richard Rodseth
Also take a look at Degrafa. And I recently saw this: http://www.insideria.com/2009/07/axiis---an-introduction-and-tu.html On Wed, Jul 8, 2009 at 8:55 AM, valdhor valdhorli...@embarqmail.com wrote: I don't know of anything available at this time. You may like to make a suggestion to ILOG (

Re: [flexcoders] Re: Fishbone Chart/Ishikawa Chart

2009-07-08 Thread Pedro Sena
I will take a look at Degrafa. The link is very interesting. Thanks for the feedback. PS On Wed, Jul 8, 2009 at 1:30 PM, Richard Rodseth rrods...@gmail.com wrote: Also take a look at Degrafa. And I recently saw this: http://www.insideria.com/2009/07/axiis---an-introduction-and-tu.html

[flexcoders] mx:DataGridColumn

2009-07-08 Thread ram ramesh
Hi, I need to implement the below concpet. The value for headerText of  mx:DataGridColumn should be a dynamic value from Action Script setting variable. Any sample code please send to me

[flexcoders] best way to summarize and display data

2009-07-08 Thread Ramsey, Robert L
Hi, I'm trying to think of the best way to let a user summarize and display data. The data is in xml format and looks like this(simplified some): orgs org nameFoo/name date01-01-2009/date

Re: [flexcoders] undefined in stack trace (Console), stack overflow

2009-07-08 Thread Erik de Bruin
Hi, Thanks for your swift reply. I did a check to see if what you suggest might be the case, by inserting a trace() in all the event dispatch and handler functions, but nowhere in the chain does this type of recursion occur. I do however see that the entire chain is run dozens of times, while

RE: [flexcoders] Re: Horrible... 3 seconds initialization time for the first frame? Frustrated....

2009-07-08 Thread Alex Harui
You can fake a link-report or use compiler options to exclude any class you want. In Flex3 ResourceMgr is baked into frame1 so it will be linked in. In Flex4 it wont. If you're not shipping until after October or so, you might want to move to Flex 4. Alex Harui Flex SDK Developer Adobe

Re: [flexcoders] mx:DataGridColumn

2009-07-08 Thread Richard Rodseth
You mean something like: mx:Script [Bindable] public var columnName:String; /mx:Script mx:DataGridColumn headerText={columnName} This is pretty standard data binding. See: http://www.adobe.com/devnet/flex/quickstart/using_data_binding/ On Wed, Jul 8, 2009 at 2:05 PM, ram ramesh

[flexcoders] 3.3 API confusion

2009-07-08 Thread Brian Sterling
I'm confused. The livedocs show a new addAll() method in ListCollectionView: http://livedocs.adobe.com/flex/3/langref/mx/collections/ListCollectionView.html#addAll() However, even after installing SDK 3.3 from http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk , I was unable

[flexcoders] Flex 4 System Manager idle threshold

2009-07-08 Thread superabe superabe
Is there a way to change the idle time threshold for the Flex 4 SystemManager. ? I'd like to change the idle time to be 2 seconds but the value seems to be read from a private static const in SystemManager and set to a default of 1 second? TIA, superabe

[flexcoders] Possible to change the Fill Color for ColumnSeries on itemRollOver?

2009-07-08 Thread gmoniey22
Is it possible to change the fill color of 1 column when the mouse is over it? I can't seem to figure it out I have something along these lines: mx:SolidColor id=barColor color=0x00FF00/ mx:SolidColor id=hoverBarColor color=0xFF/ mx:ColumnChart id=chart type=overlaid

[flexcoders] How to link effects so that one starts after one finishes?

2009-07-08 Thread gmoniey22
I have two components, and I want to swap between them using wipe down/up. i.e. click a button, the visible panel slides down, and after that panel is no longer visible, the other panel slides up and takes its place. I have tried something like the following (please excuse the crude example),

[flexcoders] Re: Nested Objects with webORB PHP

2009-07-08 Thread raja_s_patil
thanks valdhor Just treat them as you normally would. WebORB's serialization/deserialization should take care of everything for you. I have used nested objects (Or objects containing other objects) when sending from PHP to Flex. I have not done it the other way but would expect it to

[flexcoders] Re: dynamic image gallery

2009-07-08 Thread stinasius
hi i have changed the dataprovider of the gallery from an array to an arraycollection, what an trying to archive is that when someone clicks on the list a different set of images is loaded in the gallery, that mean i would like to update the arraycollection with a new set of images when an item

RE: [flexcoders] Flex 4 System Manager idle threshold

2009-07-08 Thread Alex Harui
I don't see an easy way to change it. Probably have to monkey-patch it Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of superabe superabe Sent: Wednesday,