[flexcoders] Re: Flex creating an unwanted extra item in list

2008-06-03 Thread Claudiu Ursica
--- In flexcoders@yahoogroups.com, spirit_ryder2k [EMAIL PROTECTED] wrote: Hi, I'm doing a small app which loads a list of songs from an XML and display it in a list. I'm using a TileList with a custom renderer to render the songs. Because I want to keep track which song has loaded I put a

[flexcoders] Re: Undefined Method Error

2008-07-08 Thread Claudiu Ursica
Have you tried to access it via outerDocument.methodName, you'l find some example if you google for this It means that you use outerDocument to to target the method outside your inline item renderer... PS. If I'm not mistaking there is also a parentDocument, but better check before trying

[flexcoders] Tabbing children from custom item renderer inside List

2008-08-01 Thread Claudiu Ursica
Hi, I have a List, whose dataprovider is loaded from a server. The list is using a custom itemRenderer to render data. The renderer has amongst other things 2 numeric steppers inside it. The list can have durin execution none, one or many items. I want to be able to use tab and go through the the

[flexcoders] Re: Tabbing children from custom item renderer inside List

2008-08-03 Thread Claudiu Ursica
Ok, I managed to send the focus to the second numeric stepper, but when I hit tab again I loose the tab and cannot sent the focus to the second item in the list on the first numeric stepper. Now my code looks something like this: mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: Tabbing children from custom item renderer inside List

2008-08-03 Thread Claudiu Ursica
Ok, I managed to send the focus to the second numeric stepper, but when I hit tab again I loose the tab and cannot sent the focus to the second item in the list on the first numeric stepper. Now my code looks something like this: mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: Tabbing children from custom item renderer inside List

2008-08-04 Thread Claudiu Ursica
preventDefault when it is time to transfer the tab to the next renderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claudiu Ursica Sent: Sunday, August 03, 2008 5:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tabbing

[flexcoders] Re: how to change the state of custom item renderer of list control on itemFocu

2008-08-04 Thread Claudiu Ursica
I tried myself several times to get itemFocusIn on the list but it doesn't for some strange reason. However you can have a state variable on the parent of the list and send that to the renderer. Depending on the type of renderer: inline set currentState = {outerDocument.stateNameOrWhateverYouName

[flexcoders] Re: How to show the Hand Cursor on the Close Button?

2008-08-05 Thread Claudiu Ursica
var btn:Button = this.mx_internal::closeButton; btn.useHandCursor = true; However the mx:internal might change in the future so this is not bullet proof. --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, In the titlewindow component, I set showCloseButton =

[flexcoders] Re: coloring a box

2008-10-09 Thread Claudiu Ursica
Try this: package com.whatever.anotherwhatever.gradientbox { import mx.containers.Box; [Style(name=fillColors, type=Array, arrayType=Number, format=Color, inherit=no)] public class GradientBox extends Box { import flash.display.*;

[flexcoders] Re: adding the user input to an arraycollection

2008-10-16 Thread Claudiu Ursica
Add them as Object, the idea is to update the bookSales if I'm reading this right? so when you pass the to the function you do it as pair values {bookType: Fiction, Sales: 143}. HTH, Cheers, Claudiu --- In flexcoders@yahoogroups.com, sainath evuri [EMAIL PROTECTED] wrote: i would like to get

Re: [flexcoders] Locale in Flex

2008-10-16 Thread claudiu ursica
You need to be more specific. If you're running a web app is highly porbably to save that into a cookie on user computer. You pass that to flash as input parameter and precess it when flex loads (mainappp creationComplete or something - you'll have it in the :parameters variable in the main

Re: [flexcoders] Custom event - Create, dispatch, and listen to.

2008-10-17 Thread claudiu ursica
You also may want to avveride the clone method in the custom event class: /** * @private */ override public function clone():Event { return new RemoteClick(type, bubbles, cancelable); } - just omit the arguments if you are not using

Re: [flexcoders] Rippling through state changes

2008-10-17 Thread claudiu ursica
How about write a custom item renderer and expose a public property state name it however you want. Bind that property to the current state of your custom component. When the parent state changes, the item renderer wil update also. HTH, Claudiu - Original Message From: Paul

Re: [flexcoders] custom event not working in popup

2008-10-17 Thread claudiu ursica
Are you sure you are listening for the same event type in main? From what I can see your custom event is of type formSubmitted while the main listens for formUpdate ... Claudiu - Original Message From: Mark Hosny [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, October

Re: [flexcoders] how to add internal padding in canvas?

2008-10-17 Thread claudiu ursica
The panel component supports padding, wil that suit you? HTH, Claudiu - Original Message From: markflex2007 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, October 17, 2008 5:07:27 PM Subject: [flexcoders] how to add internal padding in canvas? I want to add right

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread claudiu ursica
Can you provide a larger code snippet? Try listen to the event on the stage maybe taht will help. Cheers, Claudiu. - Original Message From: Sébastien Tromp [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, October 18, 2008 1:18:39 PM Subject: [flexcoders] Listem to

Re: [flexcoders] Alert.show - Detect when closed from another mxml component

2008-10-21 Thread claudiu ursica
Suposedly you'd have a data model in there, in you app, you can hold a boolean value and set it to true everytime you call Alert show and set it to false on close. In your other mxml just check that property of the model and you're done. (Not sure it is the best way to do it though.). HTH,

Re: [flexcoders] Custom List Renderer Memory Leak

2008-10-22 Thread claudiu ursica
Can you paste the code snippet that update the list? Cheers, Claudiu - Original Message From: darkcube86 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 21, 2008 7:49:53 PM Subject: [flexcoders] Custom List Renderer Memory Leak I have a list which always

Re: [flexcoders] Re: Alert.show - Detect when closed from another mxml component

2008-10-22 Thread claudiu ursica
for the Stage to receive via capture or bubble, for example, mouseclicks (Stage.addEventList ener(MouseEvent. CLICK,clickHandl er)). Is there no way to do this in Flex with the Alert component and the Stage (Application. application? )? --- In [EMAIL PROTECTED] ups.com, claudiu ursica the_braniak

Re: [flexcoders] Binding Getter to Collection Change

2008-10-22 Thread claudiu ursica
Binding only fires when you are hooked into a certain item of the array collection changes. So unless you are bound on a certain item, you should probably add a listener for CollectionEvent. COLLECTION_ CHANGE yourself and handle by hand the update. HTH, Claudiu - Original Message

Re: [flexcoders] Re: PLaying Flash From Scratch

2008-10-24 Thread claudiu ursica
I guess you are having the flash movie embeded in a flex wrapper. Expose a public start (or something)function from there (from the flash movie). Just call that on the state change interception. HTH, Claudiu - Original Message From: John [EMAIL PROTECTED] To:

[flexcoders] Re: Extending the Datagrid to enable paging

2008-10-28 Thread Claudiu Ursica
check this one, http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=11083 hth, Claudiu --- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Hi, all. For a current project, I need to extend the DataGrid to enable paging of the data. Can

Re: [flexcoders] ItemRenderes are consuming more memory

2008-10-28 Thread claudiu ursica
I'm not sure what you are trying to do, but try to add new instances to the list only when needed, otherwise just update already existing elements. Cheers, Claudiu From: jitendra jain [EMAIL PROTECTED] To: flex group flex flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread claudiu ursica
Lots of components within the framework (the VBox or HBox for example) have the the htmlText property. Just assign your page to that property. However I am absolutely sure that there is somewhere there an example related to this issue, they have embeded yahoo in flex. Just cannot find it now,

[flexcoders] Re: Memory issues ... garbage collection only running in IE (not FF or Safari)

2008-10-29 Thread Claudiu Ursica
Here is how we manage collection when it comes to Araay collection. We declare a custom class whic helds an instance of the array collection and an array for fast searching. [Bindable] public class FullGameHistorySuiteStatuses { private var _suiteStatusesArrayCollection : ArrayCollection = new

[flexcoders] Drag and drop module

2008-11-10 Thread Claudiu Ursica
Hi, I have a module who contains a TitleWindow. In the main application i use a ModuleLoader to loads that module at a certain time (when I click a button to be more precise). Everything works fine until I want to move the frehly loaded TitleWindow (from the module) on the screen. I am not able

[flexcoders] Re: Drag and drop module

2008-11-10 Thread Claudiu Ursica
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claudiu Ursica Sent: Monday, November 10, 2008 5:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drag and drop module Hi, I have a module who contains a TitleWindow. In the main application i use a ModuleLoader to loads

[flexcoders] Module loaded but not displayed every time...

2008-11-17 Thread Claudiu Ursica
Hi, I load a module using a custom module loader. Event though the READY event fires every time, and the visible property traces out to true, I am not able to see the module each time I load it. This happens only when I start the application. If I can see it the first time I can then unload and

Re: [flexcoders] Re: dataGrid effciency

2008-11-19 Thread claudiu ursica
You can remember your last index of the scroolbar and use scorllToIndex(index : int) after the refresh. HTH, Claudiu From: Fu Di [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 19, 2008 11:03:39 AM Subject: Re: [flexcoders] Re:

[flexcoders] Re: Module loaded but not displayed every time...

2008-11-25 Thread Claudiu Ursica
to fire so late. Maybe some of you can help with this, TIA, Caludiu --- In flexcoders@yahoogroups.com, Claudiu Ursica [EMAIL PROTECTED] wrote: Hi, I load a module using a custom module loader. Event though the READY event fires every time, and the visible property traces out to true, I am

Re: [flexcoders] Re: Module loaded but not displayed every time...

2008-11-25 Thread claudiu ursica
but not displayed every time... Are you contacting a server by any chance? Perhaps you could post some code? --- In [EMAIL PROTECTED] ups.com, Claudiu Ursica the_braniak@ ... wrote: Hi again, I see nobody bumped into this issue... Since the previous post I have discovered that the module does

[flexcoders] Re: Module loaded but not displayed every time...

2008-11-26 Thread Claudiu Ursica
to reproduce it until now. However this is not something I can be sure of that it is indeed the fix... And the fact that this happend very randomly doesn't help that much either TIA, Claudiu --- In flexcoders@yahoogroups.com, claudiu ursica [EMAIL PROTECTED] wrote: I am, but via bindings (set via

Re: [flexcoders] unload module but flexmodulefactory remains ?

2008-12-28 Thread claudiu ursica
info.removeEventListener(ModuleEvent. READY, modEventHandler)?? before setting it to null HTH, Claudiu From: rockorgames eguilhe...@gmail.com To: flexcoders@yahoogroups.com Sent: Saturday, December 27, 2008 9:20:13 PM Subject: [flexcoders] unload module but

Re: [flexcoders] image in tilelist not showing

2008-12-30 Thread claudiu ursica
Are you sure that your binding expression for Image.source evaluates correctly? You're code seems ok to me. If the type and price are displayed the source might be the issue... Claudiu From: johndoematrix johndoemat...@yahoo.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: image in tilelist not showing

2008-12-31 Thread claudiu ursica
If I were you I'd override the data setter in the ItemRendere and debug in there. If you got the correct data in there you lost me public override function set data(value : Object) : void { super.data = value; //add debugging code in

Re: [flexcoders] 1180 Error

2009-01-03 Thread claudiu ursica
I think Manish is right. There is something wrong with your projects settings or the class is not in the directory structure you specified in the import directive. I'v tried (copy/paste) your code in a new project in my FB eclipse plugin and it works smoothly. I run it and no error it display

Re: [flexcoders] Cairngorm and ChangeWatcher

2009-01-10 Thread claudiu ursica
http://weblogs.macromedia.com/auhlmann/archives/2007/02/creating_a_popu.html#more This should give you some directions... Claudiu From: lampei lam...@gmail.com To: flexcoders@yahoogroups.com Sent: Saturday, January 10, 2009 1:34:25 AM Subject: [flexcoders]

Re: [flexcoders] Re: Cairngorm and ChangeWatcher

2009-01-12 Thread claudiu ursica
years old, and my question still holds. Is this the best practice or is some other method being used with Cairngorm? --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: http://weblogs. macromedia. com/auhlmann/ archives/ 2007/02/creating _a_popu.html# more This should give

[flexcoders] Drag And Drop Tree

2009-01-18 Thread Claudiu Ursica
Hi I'm trying to implement the drag and drop functionality inside a tree, dragging and dropping inside the same tree. However It seems that I cannot drag and drop leaf nodes... When I handle enterDrag event the item seems to be appearing only at debug time and gets lost after that... here is the

Re: [flexcoders] Drag And Drop Tree

2009-01-19 Thread claudiu ursica
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Claudiu Ursica Sent: Sunday, January 18, 2009 9:59 AM To: flexcod...@yahoogro ups.com Subject: [flexcoders] Drag And Drop Tree Hi I'm trying to implement the drag and drop functionality inside a tree, dragging and dropping inside the same tree

Re: [flexcoders] Drag And Drop Tree

2009-01-19 Thread claudiu ursica
: [flexcoders] Drag And Drop Tree Are you using a custom event? And if so, did you implement the clone method? 2009/1/19 claudiu ursica the_braniak@ yahoo.com Hi Alex, I can move simple leafs from the root under a folder with no custom handlers, if the folder is open. However the thing is that I

Re: [flexcoders] Drag And Drop Tree

2009-01-19 Thread claudiu ursica
XML(items); because items is an array. Use XML.toXMLString( ) to make sure you’re trying to put in valid data. From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of claudiu ursica Sent: Monday, January 19, 2009 12:30 AM To: flexcod...@yahoogro ups.com Subject: Re

Re: [flexcoders] Centered preloader that displays while image is loading

2009-01-21 Thread claudiu ursica
put a progress bar into your custom image component, then you liste to ther progress event and and adjust pthe progress property accordingly. HTH, Claudiu From: stinasius stinas...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, January 21, 2009

Re: [flexcoders] Flex calling Java/Apache Axis web service

2009-01-21 Thread claudiu ursica
Do you have a policy acess specified on the linux machine? Claudiu From: paramjit.parmar paramjit.par...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, January 21, 2009 3:20:19 PM Subject: [flexcoders] Flex calling Java/Apache Axis web service Hi

Re: [flexcoders] Re: Flex calling Java/Apache Axis web service

2009-01-22 Thread claudiu ursica
-domain- policy allow-access- from domain=173. 45.239.153 / /cross-domain- policy --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: Do you have a policy acess specified on the linux machine? Claudiu _ _ __ From: paramjit.parmar

Re: [flexcoders] E4X help?

2009-02-15 Thread claudiu ursica
node.da...@key == type ? If U want both values you should iterate ... Claudiu From: flexaustin flexaus...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, February 16, 2009 1:58:46 AM Subject: [flexcoders] E4X help? Is it possible to get the value of

[flexcoders] Re: Question for Cairngorm with Flex Module?

2009-02-21 Thread Claudiu Ursica
--- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi, I build a Flex Module with cairngorm ,I load the module in main application and I need to load it many times. it works fine when I load the module at first time but I get error when I load it again. The error

Re: [flexcoders] Accessing parentDocument using custom events?

2009-02-23 Thread claudiu ursica
First of all why do you need to do this? I'm not sure I understand exactly what you are trying to do but you can inject data into item renderer form parent document and access that data inside the renderer. Or you can hold references to your component (visual component) inside a model class

Re: [flexcoders] Hie

2009-02-27 Thread claudiu ursica
My on the fly thought on this would be have an item renderer for the repeater (eve though I'd go with a List for performance reasons), to override the data setter in your item renderer and check there if the value is valid leave the text alone or put it black and red if invalid. mx:Text

Re: [flexcoders] updating an item renderer

2009-03-02 Thread claudiu ursica
The way I see it all the the item renderer is there only for display purposes. All the sock retrievals goes in to the provider, rr I mean the model which feeds the list provider. If you use binding the list will automatically display that changes. Now here-s something we do to avoid object

Re: [flexcoders] Re: Modules Communication

2009-03-03 Thread claudiu ursica
You should probably have ca comunication manager something like a central event dispatcher (I believe the Mate framework already does this but i might be mistaking) and register panels within that scope. so when a panel fires an event the other listening panels check if the event is adressed to

Re: [flexcoders] Question: Strategies for compiling individual modules into SWCs

2009-03-03 Thread claudiu ursica
Try with ant or maven, have to manually write build scripts though... HTH, Claudiu From: David Adams dpad...@gmail.com To: flexcoders@yahoogroups.com Sent: Friday, February 27, 2009 5:23:56 AM Subject: [flexcoders] Question: Strategies for compiling individual

[flexcoders] Module unload GC

2009-03-05 Thread Claudiu Ursica
Hi, I'm using a module in my app. And I'm profiling the app to see if unloading cleans after itself... The thing is the first time I unload nothing happens all the instances are still there in the Profiler. Now if I load the module again, the memory increases and the insatnces no. doubles.

Re: [flexcoders] Module unload GC

2009-03-05 Thread claudiu ursica
are finished with them. Strategies to manage this will be the focus for a future article. On Thu, Mar 5, 2009 at 3:58 AM, Claudiu Ursica the_braniak@ yahoo.com wrote: Hi, I'm using a module in my app. And I'm profiling the app to see if unloading cleans after itself... The thing is the first time I

Re: [flexcoders] Module unload GC

2009-03-05 Thread claudiu ursica
be very different now. Hope this helps. On Thu, Mar 5, 2009 at 10:08 AM, claudiu ursica the_braniak@ yahoo.com wrote: I read this too, however when watching in profiler the gc runs a removes a set of the instances, the thing that bothers me is that after first load/unload the memory looks like

Re: [flexcoders] Module unload GC

2009-03-06 Thread claudiu ursica
. Blog: http://blogs. adobe.com/ aharui From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of claudiu ursica Sent: Thursday, March 05, 2009 10:26 AM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] Module unload GC I'll try that first thing in the morning

Re: [flexcoders] Bindable Singleton is not propogating the changes of its proprties.

2009-03-09 Thread claudiu ursica
Can you post some code ... Usually you have to bind on AC item if not using list or repeaters or grids ... Or listen to the collection change event manually ... However for Boolean and other primitive types the bindings should fire right away... Claudiu

Re: [flexcoders] Flex Interview Questions

2009-03-09 Thread claudiu ursica
There was a topic like this a few moths ago, check the archives .. you'll find some nice stuff in there ... Claudiu From: Shyam Prasad khtsh...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sunday, March 8, 2009 5:47:27 PM Subject: [flexcoders] Flex

Re: [flexcoders] Sprite doubleclick

2009-03-09 Thread claudiu ursica
In theory you should be able to child.addEventListener(MouseEvent.click, handler) after doing sprite.addChild(child), so you use the child for listening instead of the parent sprite... He child should be able to handle the clicks ... HTH, Claudiu From:

Re: [flexcoders] Array of objects

2009-03-13 Thread claudiu ursica
[ArrayElementType(com.blah.blah.YourClassName)] publica var ar:Array = new Array(); C From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Friday, March 13, 2009 10:46:55 AM Subject: [flexcoders] Array of objects

Re: [flexcoders] Item Rendererer Question

2009-03-17 Thread claudiu ursica
Can you be more specific? Generally speaking IR are reused so there is a high probability that you still have them in there. In theory you should be filtering the list data provider so that the list will display whatever the provider feeds.. Claudiu From:

Re: [flexcoders] round timer

2009-03-20 Thread claudiu ursica
Hi, unfortunately I cannot give you any code since is company property. However we have something similar. It was designed in flash (some circular paths and masks will do the trick) and exported as a flex asset. This is embedded in a flex component which update the timer via a binding. The

Re: [flexcoders] Modules, Cairngorm and Garbage Collection

2009-03-24 Thread claudiu ursica
Hi, why do you bind module to the model locator? If by any chance you have embedded CSS in the module it won't garbage collect ... Claudiu From: Battershall, Jeff jeff.battersh...@dowjones.com To: flexcoders@yahoogroups.com Sent: Tuesday, March 24, 2009

Re: [flexcoders] Using cairngorm for push events

2009-03-24 Thread claudiu ursica
First thing first it depends how fast you want to poll your server for data. As you probably know the browser only allows you to have 2 connections ... You might run into issues if your polling again and again in seconds. We have something similar and decided to make our own ServiceManager

Re: [flexcoders] Modules, Cairngorm and Garbage Collection

2009-03-24 Thread claudiu ursica
a small piece of your available mamory, don't expect the GC to be called. Regards, PS On Tue, Mar 24, 2009 at 2:09 PM, claudiu ursica the_braniak@ yahoo.com wrote: Hi, why do you bind module to the model locator? If by any chance you have embedded CSS in the module it won't garbage

Re: [flexcoders] Korean characters in calendar control

2009-03-25 Thread claudiu ursica
It happened to me when I was playing with air but I didn't dig it out any further cause I was just doing some test example ... but if anyone knows some more about the topic I'd be interested to find out too ... C From: Steve Brownlee

Re: [flexcoders] working with multiple httpservice requests

2009-03-25 Thread claudiu ursica
Make a class with 2 httpservice instances and use a scheduler (have to write logic for it though). You won't be able to run more than 2 parallel connections anyway, the browser won't let you... you have to implement result and fault functions for the calls in there also... hth, Claudiu

[flexcoders] Get component width/height after resize?

2009-03-27 Thread Claudiu Ursica
Hi does anyone how to get a component's new height/width after it is being resized. I got as far as locating them inside the internal vars $height $width. I have also seen somewhere that for images it works with contentHeight and contentWidth. But I have a tabnavgator component which is being

Re: [flexcoders] Why SharedObject.flush so slowly

2009-03-31 Thread claudiu ursica
Runned into the same issue and we decided to write on the Flex Idle event instead immediately, that should help you with animation and all taht to make a smooth UE ... C From: iiley iiley.c...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, March 31,

Re: [flexcoders] Eclipse Ganymede

2009-04-06 Thread claudiu ursica
I use ganymede for quite a while now and haven't ran into any issues... C From: Tim Rowe tim.r...@carsales.com.au To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Monday, April 6, 2009 3:42:19 AM Subject: RE: [flexcoders] Eclipse Ganymede I

Re: [flexcoders] CairngormEvent dispatch question

2009-04-06 Thread claudiu ursica
it is one and the same, the cairngormevent class has been modified to implement a dispatch() method which does exactly what your code doesCairngormEvent. getInstance( ).dispatchEvent( myEvent); so you can use any of the 2 forms you like ... C From:

Re: [flexcoders] Cairngorm Question

2009-04-09 Thread claudiu ursica
You do have acess to the model. The combo 2 will be populated with some data. Put that into the model and bind combo 2 to the model I'm not sure what you actually want to do but it doesn't look like you need cairgorm to do that ... C From: skusunam

Re: [flexcoders] Module Loading and Unloading

2009-04-13 Thread claudiu ursica
Make sure you do not use embedded css into modules and you perform proper cleaning before unloading ... There is a good document from adobe modular.pdf google for it it shoul give you some hints ... C From: murali dharan muralidharan@gmail.com To:

Re: [flexcoders] Validation in Model (rather than in View)

2009-04-14 Thread claudiu ursica
Have a look a the presentaion model pattern maybe helps your cause... C From: Borek bore...@yahoo.co.uk To: flexcoders@yahoogroups.com Sent: Tuesday, April 14, 2009 6:16:56 PM Subject: [flexcoders] Validation in Model (rather than in View) Flex supports

Re: [flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread claudiu ursica
...@yahoo.co.uk To: flexcoders@yahoogroups.com Sent: Tuesday, April 14, 2009 7:25:47 PM Subject: [flexcoders] Re: Validation in Model (rather than in View) How does the Presentation Model pattern help? --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: Have a look

Re: [flexcoders] List sizing - height=100%

2009-04-23 Thread claudiu ursica
there is a rowCount property in the list... tell you how many item should be displayed http://blog.flexexamples.com/2007/10/28/resizing-a-flex-list-control-using-the-rowcount-property/ C From: arieljake arielj...@yahoo.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Pb with File Upload

2009-05-04 Thread claudiu ursica
There is s known bug for flex file upload on slow connections and it is flied on Adobe Jira give it a vote if this is your case too ... http://bugs.adobe.com/jira/browse/FP-1946 C From: christophe_jacquelin christophe_jacque...@yahoo.fr To:

Re: [flexcoders] Generate XML file

2009-06-02 Thread claudiu ursica
the generation of the file is quite trivial, however for the email part it depends on how you want ot do it... it ionvolves some backend work if you want not to use the classic href=mailto ... http://www.tdotblog.info/?q=node/6 C From: christophe_jacquelin

Re: [flexcoders] any example of an application pre- and post- cairngorm or puremvc?

2009-06-10 Thread claudiu ursica
Go to puremvc.org and you'll find several example... As for cairngorm google for the page and youll find several apps there ... C From: daniel_kra...@rocketmail.com daniel_kra...@rocketmail.com To: flexcoders@yahoogroups.com Sent: Wednesday, June 10, 2009

Re: [flexcoders] PureMVC

2009-06-19 Thread claudiu ursica
On pureMVC.org there are several samples in there. check this for example: http://trac.puremvc.org/PureMVC_AS3/ C From: Ashish Verma ashish.ve...@techendeavour.com To: flexcoders@yahoogroups.com Sent: Friday, June 19, 2009 8:52:29 AM Subject: [flexcoders]

Re: [flexcoders] need votes for adobe bugs

2009-06-23 Thread claudiu ursica
Probably to get them up in the fixing queue since many votes gain you attention ... :) C From: Tom Chiverton tom.chiver...@halliwells.com To: flexcoders@yahoogroups.com Sent: Tuesday, June 23, 2009 12:50:16 PM Subject: Re: [flexcoders] need votes for adobe

Re: [flexcoders] Flex View Stack / Component Life Cycle Best practice

2009-06-26 Thread claudiu ursica
And you probably want to try to catch that change event on it's propagation phase instead of bubbling phase. C From: Jeffry Houser j...@farcryfly.com To: flexcoders@yahoogroups.com Sent: Friday, June 26, 2009 12:08:56 AM Subject: Re: [flexcoders] Flex View

Re: [flexcoders] Is there a good log application?

2009-06-27 Thread claudiu ursica
Try Thunderbolt maybe suits your needs... C From: guy.tomer guy.to...@gmail.com To: flexcoders@yahoogroups.com Sent: Saturday, June 27, 2009 9:24:35 PM Subject: [flexcoders] Is there a good log application? Hi, I was wondering if anyone can point me to

Re: [flexcoders] Re: Flex 3 Exam Cert Question

2009-06-29 Thread claudiu ursica
Check the lynda.com videos for LCDS. TH, C From: ew6014 ew6...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, June 29, 2009 12:43:47 PM Subject: [flexcoders] Re: Flex 3 Exam Cert Question hi leds thanks for much. i will look into the flex 3

Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
There is this document issued by adobe where they explain with examples how to handles modules ... http://blogs.adobe.com/flexdoc/pdfs/modular.pdf TH, C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Monday, June 29, 2009

Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
(ModuleEvent .READY, moduleReadyHandler) ; module.load( ); } 在2009-06-29,claudiu ursica the_braniak@ yahoo.com 写道: There is this document issued by adobe where they explain with examples how to handles modules ... http://blogs. adobe.com/ flexdoc/pdfs/ modular.pdf TH, C

Re: Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
; } } mx:ModuleLoader id=AllStaffLoader width=100% height=292 x=0 y=475 x.workAlert= 1 y.workAlert= 478/ 在2009-06-29,claudiu ursica the_braniak@ yahoo.com 写道: Your code looks fine to me... Are you sure the getModule() returns a valid instance?? C From: j2me_soul

Re: [flexcoders] Compiling selected files in Flex

2009-06-29 Thread claudiu ursica
Since the app is very large you should be using ant or maven. Make a script for every module and another one for the shell ap. The you can make a script that runs the all or you can invoke the ant just on the module that has changed ... C From: Vaibhav

Re: [flexcoders] Bring forward something in flex

2009-07-03 Thread claudiu ursica
It is related to the order that you declare component in your mxml ... The latter the better. C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Friday, July 3, 2009 11:36:20 AM Subject: [flexcoders] Bring forward something

Re: [flexcoders] How to disable TitleWindow dragable

2009-07-06 Thread claudiu ursica
Do you mean that the Title window cannot be dragged anymore? C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Monday, July 6, 2009 10:16:21 AM Subject: [flexcoders] How to disable TitleWindow dragable How can I stop

Re: [flexcoders] My itemrenderer is mercurial!!

2009-07-06 Thread claudiu ursica
Item renderers are reused instead of being recreated ... That is why your state is inconsistent... C From: leds usop rptl...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, July 6, 2009 10:59:58 AM Subject: Re: [flexcoders] My itemrenderer is

Re: [flexcoders] Smooth Manual setProgress

2009-07-07 Thread claudiu ursica
Make a flash movie clip and animate it... C From: kenny14390 kenny14...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, July 6, 2009 10:29:38 PM Subject: [flexcoders] Smooth Manual setProgress Hey. I'm using a manual ProgressBar to display progress

Re: [flexcoders] TitleWindow closeButton Color

2009-07-07 Thread claudiu ursica
I use this with a swf and works perfectly TitleWindow { closeButtonDisabledSkin: Embed(source=custom_skins.swf,symbol=CloseButtonDisabled); closeButtonDownSkin: Embed(source=custom_skins.swf,symbol=CloseButtonDown); closeButtonOverSkin:

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

2009-07-09 Thread claudiu ursica
You can play the first effect and listen to the effectEnd event ant in the handler start the second effect or you can go with putting the effects inside a Sequence. C From: Chet Haase cha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com

Re: [flexcoders] Re: better option than repeater?

2009-07-20 Thread claudiu ursica
I'd use lists with custom item renderers. Repeaters are killers for perormance even when you tell them to cache children C From: valdhor valdhorli...@embarqmail.com To: flexcoders@yahoogroups.com Sent: Monday, July 20, 2009 9:45:44 PM Subject:

Re: [flexcoders] Re: better option than repeater?

2009-07-20 Thread claudiu ursica
of how you would convert a single repeater with two nested repeaters into a List with custom item renderers? Thanks, Paul --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: I'd use lists with custom item renderers. Repeaters are killers for perormance even when you tell

Re: [flexcoders] creation timing on panel component

2009-08-01 Thread claudiu ursica
Quick and really dirty... wrap them inside a try catch block... but then I can't believe I just said that... Share some more code and I'll come up with something more engineering like... C From: Jason B nos...@advancedonsite.com To:

Re: [flexcoders] Re: creation timing on panel component

2009-08-01 Thread claudiu ursica
=calldispatch ()/ /mx:Panel --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ wrote: Quick and really dirty... wrap them inside a try catch block... but then I can't believe I just said that... Share some more code and I'll come up with something more

Re: [flexcoders] Re: creation timing on panel component

2009-08-01 Thread claudiu ursica
: [flexcoders] Re: creation timing on panel component mx:Button label=Create Breakfast click=createBreakf ast()/ is in the main.mxml --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: when are you calling the service? C _ _ __ From

Re: [flexcoders] Re: creation timing on panel component

2009-08-02 Thread claudiu ursica
: [flexcoders] Re: creation timing on panel component I didnt include all the code I'll zip it up and email it to you. --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: From what I see here the button click does not make the call to the http service. The general rule

  1   2   3   >