[flexcoders] Image source path bug?

2006-03-23 Thread Alberto Albericio Salvador
? Thanks in advance -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your

[flexcoders] BackgroundImage options

2006-03-06 Thread Alberto Albericio Salvador
Hi all, I use backgroundImage to set a container's background but is there any property to repeat this background to fill the whole container? Something like the background-repeat CSS attribute or the background HTML attribute. Thanks -- Alberto Albericio Salvador Aura S.A. Seguros

Re: [flexcoders] Dynamic UI question

2006-03-03 Thread Alberto Albericio Salvador
whenever I select that checkbox? Thanks Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Alberto Albericio Salvador escribió: Hi all, I want to create a vertical dynamic UI and Im currently trying 2 approaches: 1) mx:TileList id=list listItemRenderer=myThumbnail

Re: [flexcoders] Dynamic UI question

2006-03-03 Thread Alberto Albericio Salvador
got it! I just used the Repeater component without any Tile* component hehe Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Alberto Albericio Salvador escribió: I think I cant use the Tile* components because they resize their tiles to the same width and height

Re: [flexcoders] Flex2: DateField formatFunction bug

2006-02-27 Thread Alberto Albericio Salvador
I found the same bug some weeks ago. I cant use the formattingFunction and I hope it gets fixed soon Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Benoit Hediard escribió: I've encountered this annoying bug today. When using the formatFunction attribute of DateField

[flexcoders] DataGrid automatic height

2006-02-24 Thread Alberto Albericio Salvador
Hi all, Is there any property on the DataGrid component to automatically resize the datagrid to show the number of items of its dataProvider? I use height=dataProviders.length * Number but it's not exact enough Thanks -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática

Re: [flexcoders] Dispatching events from cairngorm viewhelper

2006-02-23 Thread Alberto Albericio Salvador
and memory Im just writing in a sec hehe Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Alex Uhlmann escribió: Hi Alberto, When dispatching events you have to be sure that the object you call dispatchEvent from is a display object (all display objects extend

[flexcoders] Cairngorm and memory administration

2006-02-23 Thread Alberto Albericio Salvador
of these options, I must use the same mechanism to get the new product list... thats 10 new delegates, events, etc on memory? What if I set to Nothing the new Delegate created after each use? -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ

[flexcoders] Binding question

2006-02-22 Thread Alberto Albericio Salvador
code with these functions? -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links

[flexcoders] Binding using Boolean expressions

2006-02-22 Thread Alberto Albericio Salvador
true; else return false; } Why and how to solve this so I dont have to fill my code with these functions? -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Cairngorm2 reusable commands

2006-02-21 Thread Alberto Albericio Salvador
Thats it! I like it and it works 100%. Thanks Feiy! Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática feiy escribió: u can extends the event,add a source attribute to it eg: public class SourceEvent extends CairngormEvent{ public SourceEvent(type:String

[flexcoders] Cairngorm2 reusable commands

2006-02-17 Thread Alberto Albericio Salvador
needs to know where to send back the results and run setResults on the corresponding caller. How can I achieve this? Thanks in advance -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

Re: [flexcoders] Cairngorm2 reusable commands

2006-02-17 Thread Alberto Albericio Salvador
. What I say is: I need both components to dispatch the same event(getWeather) but with different parameter (zip code) and get the results back to them using the same command. I dont want to use a single application pool to store my results. Alberto Albericio Salvador Aura S.A. Seguros

[flexcoders] Flex2 data binding

2006-02-16 Thread Alberto Albericio Salvador
Hi all, Is there a way to extend the Array class so that I can bind UIcomponents properties to the array.length property? Something like: mx:VBox visible={myArray.length 0} / -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http

Re: [flexcoders] Flex2 data binding

2006-02-16 Thread Alberto Albericio Salvador
Using the ArrayCollection instead of Array, that do not update controls when modified. Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Alberto Albericio Salvador escribió: Hi all, Is there a way to extend the Array class so that I can bind UIcomponents properties

Re: [flexcoders] Binding refresh

2006-02-16 Thread Alberto Albericio Salvador
Hi Jonathan, If your're working with Flex2, try using an ArrayCollection instead of an Array. The Array class does not throw any event on change to update such controls anymore. Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Jonathan Miranda escribió: Alright, I am

[flexcoders] Dispatching events from cairngorm viewhelper

2006-02-14 Thread Alberto Albericio Salvador
and in my custom viewhelper. public function getPoblaciones(cp:String):void { var event : LocalidadesEvent = new LocalidadesEvent(cp); dispatchEvent(event); } Has anybody run into this issue? -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática

Re: [flexcoders] Dispatching events from cairngorm viewhelper

2006-02-14 Thread Alberto Albericio Salvador
Hi Joao, Im working with Flex2b1 and I dont import anything, neither in the main view nor in my custom viewhelper. Anyway, importing that continues throwing the error: Call to a possibly undefined method 'dispatchEvent' Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática

Re: [flexcoders] Dispatching events from cairngorm viewhelper

2006-02-14 Thread Alberto Albericio Salvador
Dirk, I have chosen your second approach and it works fine: thats letting my view to dispatch the event. Thank you very much Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Dirk Eismann escribió: To dispatch events, your ViewHelper class has to extend

Re: [flexcoders] Dispatching events from cairngorm viewhelper

2006-02-14 Thread Alberto Albericio Salvador
: LocalidadesEvent = new LocalidadesEvent(cp); dispatchEvent(event); } But I get the error: Call to a possibly undefined method 'dispatchEvent' Im using the same code in the main view and in the helper and it should work, but it doesnt. Alberto Albericio Salvador Aura S.A. Seguros Departamento

[flexcoders] Flex2 combobox performance

2006-02-14 Thread Alberto Albericio Salvador
Hello all, I've noticed that performance of mx:ComboBox is really low. I mean, when using a Flex2b1 combobox component, expanding its contents gets lagged, not fluid. Has anyone else noticed this behaviour? -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática

[flexcoders] Automatic layout positioning

2006-02-13 Thread Alberto Albericio Salvador
to use the visible property in Flex, it just hides/shows the UIcomponent but it does not rearrange anything. Is there any trick or official procedure to emulate this behaviour? Thanks -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http

Re: [flexcoders] Automatic layout positioning

2006-02-13 Thread Alberto Albericio Salvador
Hi and thanks Abdul! I found the same solution looking at the help provided by the new FlexBuilder : visible + includeInLayout. Thanks again Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Abdul Qabiz escribió: Hi Alberto, If you are using Flex 2.0, you can use

[flexcoders] Cairngorm ViewHelpers

2006-02-09 Thread Alberto Albericio Salvador
is arguing about Cairngorm ViewHelper.as and Cairngorm ViewLocator.as? Thanks -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

Re: [flexcoders] Sending complex data to java services

2006-02-06 Thread Alberto Albericio Salvador
are also returning this type of objects that Flex understands nativelly. Greetings, Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Matt Chotin escribió: All of that sounded like a good plan. What was the problem? Matt -Original Message- From: flexcoders

[flexcoders] Sending complex data to java services

2006-02-03 Thread Alberto Albericio Salvador
) and then send a ValueObject with X elements representing each model. Thank you in advance -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail

[flexcoders] ZORN and Flex server

2005-11-16 Thread Alberto Albericio Salvador
Hi all, Is Zorn able to compile flex projects that use mx:WebService, mx:RemoteObject, etc or that type of services will only be available in the server version? For me, it is not clear enough the limitations of Zorn. thanks in advance -- Alberto Albericio Salvador Aura S.A. Seguros

[flexcoders] Binding question

2005-09-06 Thread Alberto Albericio Salvador
working. I know Im adding items to the array correctly because I have a list bound to ModelLocator.SOMEARRAY and it's working fine. What am I doing wrong? Thanks in advance -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Sponsor

Re: [flexcoders] Binding question

2005-09-06 Thread Alberto Albericio Salvador
I forgot to mention Im adding items at the beginning of the array, at position 0. So the ModelLocator.SOMEARRAY[0] is always the last item added. Alberto Albericio Salvador escribió: Hi all, When I bind a text label to the first position of an array like this : mx:Label text

Re: [flexcoders] Binding question

2005-09-06 Thread Alberto Albericio Salvador
/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Salvador Sent: Tuesday, September 06, 2005 8:08 PM

Re: [flexcoders] Re: Custom Component builder

2005-09-02 Thread Alberto Albericio Salvador
Ok, thanks all... it seems I will have to deal with AS hehe parinda_b_patel escribió: You will need to write your own MXML or ActionScript to perform that. There is no ready to use tool in order to do that. --- In flexcoders@yahoogroups.com, Alberto Albericio Salvador [EMAIL PROTECTED] wrote

[flexcoders] Strange List behaviour

2005-09-01 Thread Alberto Albericio Salvador
know this is not a natural Flex question but I cant find why it is not working the way I want. Nuke this post if you feel this is not the right place for it and sorry. -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Sponsor

Re: [flexcoders] Strange List behaviour

2005-09-01 Thread Alberto Albericio Salvador
/1/05, *Alberto Albericio Salvador* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi all, Im using a List component to display the messages incoming from a msg push server. The dataProvider of the List is bound to some array variable. If I use the method *addItem

[flexcoders] Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
components to these vars. I hope someone can help chosing the best option. Thanks all in advance. -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
the flash comm server when you know you are not interested in receiving updates and maybe even a 'recovery plan' for the service should the connection to the FCS be broken. rgds dan --- In flexcoders@yahoogroups.com, Alberto Albericio Salvador [EMAIL PROTECTED] wrote: Hi all, The Cairngorm

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
the flash comm server when you know you are not interested in receiving updates and maybe even a 'recovery plan' for the service should the connection to the FCS be broken. rgds dan --- In flexcoders@yahoogroups.com, Alberto Albericio Salvador [EMAIL PROTECTED] wrote: Hi all, The Cairngorm

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
such as the FlashComm Live docs. Sorry, I don't have a generic example right now that doesn't belong to a client. hope it helps, Alex -- Alex Uhlmann Software Engineer iteration::two -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of Alberto Albericio Salvador Sent

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
= Delegate.create( responder, responder.myOnXML ); ... What Im I doing wrong? Is it okay setting a responder here? Cause I have to define a result and fault handler im never using for this kind of services... Alberto Albericio Salvador escribió: No problem Alex, I was looking for the easy way. I

[flexcoders] Controlling iddle time

2005-08-26 Thread Alberto Albericio Salvador
Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

[flexcoders] Popup component

2005-08-24 Thread Alberto Albericio Salvador
is extracted from the cairngorm login example. The example is ok, but I would like to know how can I make this login to be popup so that the user can drag the window acrosss the main screen, just like the windows login behaves. -- Alberto Albericio Salvador Aura S.A. Seguros Departamento

[flexcoders] XMLsocket behaviour

2005-07-13 Thread Alberto Albericio Salvador
() { ... } every 20 seconds :) Thanks all in advance! -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo

Re: [flexcoders] XMLsocket behaviour

2005-07-13 Thread Alberto Albericio Salvador
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Salvador Sent: Wednesday, July 13, 2005 6:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] XMLsocket behaviour Hi all, In my Flex application, I use XMLsocket to receive some server msgs. onConnect

[flexcoders] Flex, Remoting and more

2005-06-27 Thread Alberto Albericio Salvador
. And it is the call center notification server that tells the FCS it has received the new call and NOT the FCS that polls the queue of the notification server to see if there is any new call pending. Thank you mates! -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática -- Flexcoders

Re: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Alberto Albericio Salvador
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Alberto Albericio Salvador *Sent:* Monday, June 27, 2005 6:57 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Flex, Remoting and more Hi all, I've been reading about connecting flex client applications using

Re: [flexcoders] Flex, Remoting and more

2005-06-27 Thread Alberto Albericio Salvador
PROTECTED] *On Behalf Of *Alberto Albericio Salvador *Sent:* Monday, June 27, 2005 6:57 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Flex, Remoting and more Hi all, I've been reading about connecting flex client applications using Flash Communication Server(FCS) and shared

[flexcoders] Steven Webster, I need help with Cairgorm

2005-05-20 Thread Alberto Albericio Salvador
-- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo! Groups is subject

[flexcoders] What is Cairngorm? Flexstore vs cairngormStore

2005-05-18 Thread Alberto Albericio Salvador
. Thank all! -- Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo! Groups