[flexcoders] Running LCDS on Tomcat port 80

2008-02-03 Thread Kevin
I am wondering which of the different methods for running Tomcat on port 80 are best or most appropriate for deploying my LCDS app. In my research I seems to have found a couple different options. Is there a preference to any of theses when running a LCDS app vs a servlet based app? 1) mod_jk:

Re: [flexcoders] Re: [flexcomponents] autoresize text area as a itemrenderer

2008-02-03 Thread learner
thanks Manish and Alex, that gives me a clue... these things sounds like a mystery unfolding to me... * Flex component can not set their own height/width... they have to set measure height/width. * set width of the flex Text Area and then set the height... * many more.

Re: [flexcoders] Running LCDS on Tomcat port 80

2008-02-03 Thread James Ward
I use Apache with mod_proxy like this: ProxyRemote /census/* http://localhost:8080/census/ ProxyPass /census http://localhost:8080/census ProxyPassReverse /census http://localhost:8080/census For kernel based port forwarding you can use iptables on Linux. More info here:

[flexcoders] How can we destroy the childs in the State before moving to the new state

2008-02-03 Thread srikanth_reddy_007
I have an application which has two states - 1. Login state 2. Application state. First the application has no child elements but has two states as above. once the user types the url I authenticate the user from the active directory and if the authentication fails login state is displayed

[flexcoders] PopUpButton not working in AIR Beta 3

2008-02-03 Thread Battershall, Jeff
I'm still trying to identify the exact steps to re-create but suffice to say, in my AIR application (which uses modules), the PopUpButton component refuses to work. I'm doing things declaritively, with MXML like this: mx:PopUpButton x=500 y=10 label=Add Company width=220 openAlways=true

[flexcoders] How to get the reference of each element in a TileList ?

2008-02-03 Thread bhaskar M
Hi I am replacing Repeater with TileList in my Application as performance concerns.. I got struck in getting the reference of each element in TileList. How to get the reference of each element in a TileList ? Thanks in Advance. Bhaskar

[flexcoders] How to get the reference of each element in TileList ?

2008-02-03 Thread bhaskar M
Hi I am replacing Repeater with TileList in my Application as performance concerns.. I got struck in getting the reference of each element in TileList. How to get the reference of each element in a TileList ? Thanks in Advance. Bhaskar

Re: [flexcoders] Object is Null? How can it be if it's a component in main.mxml. No access ?

2008-02-03 Thread Fidel Viegas
On Feb 3, 2008 2:39 AM, phipzkillah [EMAIL PROTECTED] wrote: I have a toggle bar that's data provider is a viewstack. When I click on the toggle bar an event is dispatched that my controller is listening for. My controller can access com1, com2, but always gives me a null pointer exception

RE: [flexcoders] PopUpButton not working in AIR Beta 3

2008-02-03 Thread Battershall, Jeff
I was able to get it to work if I took it out of a Panel container in the module in question. Totally fubar. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Sunday, February 03, 2008 10:28 AM To:

RE: [flexcoders] How to get the reference of each element in a TileList ?

2008-02-03 Thread Battershall, Jeff
How about myTileList.getChildAt(index)? TileList shouldn't offer more performance, as such, over Repeater, as the TileList itself uses a repeater to layout it's children. But it does offer layout capabilities that you'd have to roll on your own with a repeater and that could get messy.

[flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml. No access

2008-02-03 Thread Damien Legros
Check the viewstack creationPolicy property :) --- In flexcoders@yahoogroups.com, phipzkillah [EMAIL PROTECTED] wrote: I have a toggle bar that's data provider is a viewstack. When I click on the toggle bar an event is dispatched that my controller is listening for. My controller can

[flexcoders] Mac Aladin Effect posted on Made In Flex

2008-02-03 Thread Carlos Rovira
Hi, I want to point you to an interesting and beautiful Flex effect based on the popular Mac OS X Aladin effect on the spanish Flex community site Made In Flex. Raul Diaz, the author, created this effect from scratch based on the Mac one. The url is:

[flexcoders] Re: is it possible to make a DateField's textInput invisible?

2008-02-03 Thread johan.temmerman
you could indeed try with setting both the visible and includeInLayout of the internal textInput to false. But if you want to dispose of the field, why not just use a popupButton that pops up the DateChooser component? --jeetee --- In flexcoders@yahoogroups.com, pfkellogg [EMAIL PROTECTED]

[flexcoders] Loaded Runtime Style Sheet rendering

2008-02-03 Thread Claudia Barnal
Hi, Is there any kind of event that is dispatched once a runtime style sheet (theme) is loaded to an application and the change is _visible_ to the user? It's possible to know when the theme has been implemented, but I haven't been able to catch when the theme is actually rendered and visible to

RE: [flexcoders] How to get the reference of each element in a TileList ?

2008-02-03 Thread bhaskar M
Thanks for the reply. I tried using getChildAt method. But I had errors coming up when I typecasted the returning element of getChildAt method into the ItemRendered class which is in my case ServiceSelectorItem. I actually want to get the reference of each of the items of

Re: [flexcoders] Loaded Runtime Style Sheet rendering

2008-02-03 Thread Igor Costa
Hi there Claudia here`s a small piece component that was develop by Rubens that gets what you`re looking for. Here`s the link http://www.rubenswieringa.com/blog/index.php?tag=css Best regards Igor Costa On Feb 3, 2008 5:04 PM, Claudia Barnal [EMAIL PROTECTED] wrote: Hi, Is there any

Re: [flexcoders] Mac Aladin Effect posted on Made In Flex

2008-02-03 Thread Fidel Viegas
On Feb 3, 2008 11:18 AM, Carlos Rovira [EMAIL PROTECTED] wrote: Hi, I want to point you to an interesting and beautiful Flex effect based on the popular Mac OS X Aladin effect on the spanish Flex community site Made In Flex. Raul Diaz, the author, created this effect from scratch based on

[flexcoders] Passing input from USB infrared port to keyboard buffer?

2008-02-03 Thread candysmate
Anyone know how to pass data into the keyboard buffer, using AS3, as if the user had typed it? I need to pass data from a USB infrared device to the keyboard input.

[flexcoders] Re: creating a new Livecycle DS project

2008-02-03 Thread williamxtreme24
I have also installed Coldfusion on a remote Linux machine, and I had the same problem you have Bart. Obviusly Tom likes to do everything in one computer, but thats not always the best practice. Anyways, I dont really know if you found the solution of your problem, but for the people who

RE: [flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml. No access

2008-02-03 Thread Dealy, Brian
Viewstack's children index is zero based, so you need to start at zero and go to two if(indexHit == 0){ Application.application.com1.getData(); }else if(indexHit==1){ Application.application.com2.getData(); }else if(indexHit==2){ //THIS FAILS Application.application.com3.getData();

Re: [flexcoders] Loaded Runtime Style Sheet rendering

2008-02-03 Thread Claudia Barnal
Thanks Igor, I'm not sure this is what I need. I'm not loading CSS files, I'm loading compiled CSS SWFs. And my question was really regarding an event being dispatched when the CSS (SWF) has been loaded and rendered in the application. Claudia On Feb 3, 2008 4:14 PM, Igor Costa [EMAIL

Re: [flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml. No access

2008-02-03 Thread Phil Krasko
Thanks. I knew that! I need more sleep Sent via BlackBerry from T-Mobile -Original Message- From: Dealy, Brian [EMAIL PROTECTED] Date: Sun, 3 Feb 2008 12:34:58 To:flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml.

Re: [flexcoders] Re: Object is Null? How can it be if it's a component in main.mxml. No access

2008-02-03 Thread Phil Krasko
Actually now that I look the snippet I wrote was wrong. I have my indices starting at 0 and go to 2. The block if index == 2 executes and I still can't access application.com3mgetData() unless there is a delay involved. How would the creation policy effect this? Sent via BlackBerry from

[flexcoders] LinkBar and embedded fonts

2008-02-03 Thread nylarch
Hi - Anyone else getting funky style changes when they use an embedded font in a LinkBar? I have a design heavy site that uses embedded fonts and I originally rolled my own navigation using states and rollover events for the color changes. The code was pretty ugly and I realized that

Re: [flexcoders] padding on tab navigator, but for the tabs only

2008-02-03 Thread dnk
Yeah I have used that many times, however for some reason the code produced on there that does deal with padding is not being rendered the same way on the example i was testing on. On Feb 1, 2008 5:39 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Check out the Flex Style Explorer, it is

[flexcoders] Datagrid Counting row and total value

2008-02-03 Thread Harry Saputra
I have a datagrid ( dgDataTranskrip) that retrieve some data from database. How to counting row in grid ? I try to use dgDataTranskrip.rowCount.toString(), but the value become -1. And, how to get a total value from one field that have a number type ? FieldName 1 2 3 -- 6

[flexcoders] Blue hightlight

2008-02-03 Thread Rafael Faria
Does anyone else is getting a blue hightlight at the mxml editor after install flex 3 beta 3? If you do, how to turn this annoying thing off? Thanks

Re: [flexcoders] Re: Blue hightlight

2008-02-03 Thread ben gomez farrell
I like it, it lets me see where else the variable I'm working with is. It's kinda handy to me. But it's the Mark Occurences toggle. The icon is on the top toolbar and looks like a highlighter. It's right after all the green play buttons, and it's the only one in the toolbar that looks like

[flexcoders] Re: Blue hightlight

2008-02-03 Thread Rafael Faria
anyone has the same problem!? --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Does anyone else is getting a blue hightlight at the mxml editor after install flex 3 beta 3? If you do, how to turn this annoying thing off? Thanks

[flexcoders] Re: Blue hightlight

2008-02-03 Thread Rafael Faria
Sweet Ben Thanks a lot... it was kind annoying to me. But thanks! :P raf --- In flexcoders@yahoogroups.com, ben gomez farrell [EMAIL PROTECTED] wrote: I like it, it lets me see where else the variable I'm working with is. It's kinda handy to me. But it's the Mark Occurences toggle. The

Re: [flexcoders] Datagrid Counting row and total value

2008-02-03 Thread shrikant.patil
hi i thik u r using some kind of data provider like array or what ever... u can calculate the total number of records from that data provider structure, say for example the data provider may b the array, then u can get total number of rows by using ; arrayname.length property... hope it may

RE: [flexcoders] Loaded Runtime Style Sheet rendering

2008-02-03 Thread Alex Harui
There should be an updateComplete after the CSS SWF is loaded. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claudia Barnal Sent: Sunday, February 03, 2008 11:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Loaded Runtime

Re: [flexcoders] Loading Image Sequence into Movie Programmatically/Dynamically Generate SWF

2008-02-03 Thread shrikant.patil
hi, there is a component called SWFLoader in flex u can load a swf to play using this component. play bit with it and u will get u r results.. Xs][mage wrote: I saw some posts on this topic and didn't see any solution to this yet. Is there a way to use Actionscript 3.0 in

RE: [flexcoders] Datagrid Counting row and total value

2008-02-03 Thread Harry Saputra
Yups, thanks, I have use arrayname.length, and its working. And my second problem, how to get a total value in a label from one field ? I have seen some example, but's its need to build some function and etc. I try to search a simple way. Thanks From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] How to get the reference of each element in a TileList ?

2008-02-03 Thread Alex Harui
Try indexToItemRenderer(). Keep in mind that if you are scrolling, not all renderers exist. It is usually better to work from with in the renderer than from outside the list. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaskar M

[flexcoders] Using a getter as a labelField

2008-02-03 Thread madflexcoder
Is it possible to use a getter as a labelField? I've been unsuccessful in my attempts to do it. I have a value object that I would like to concatenate two strings together to form the label. Instead of writing a label function I'd rather just have a getter function that does the same thing. A good

[flexcoders] Tree

2008-02-03 Thread Rafael Faria
I'm working on a tree based menu. My problem is, whenever i drag and drop some child from a main folder, instead of continues as a folder icon it automatically transform in a page icon... how can i prevent that?

[flexcoders] Trouble with WebService

2008-02-03 Thread Pavel Cristian Gabriel
Hi, I need some help for connecting flex 3 to a WebService. Right now I am confrunting with two problems: a. Authentication - I want to connect to this webservice with basic authorization (the server support digest, kerberos, ntlm and Windows Integrated)

[flexcoders] Re: Using a getter as a labelField

2008-02-03 Thread madflexcoder
disregard this, i found my problem, my objects weren't being typed properly.

RE: [flexcoders] Tree

2008-02-03 Thread Alex Harui
Read up on isBranch in ITreeDataDescriptor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Sunday, February 03, 2008 10:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree I'm working on a tree based

RE: [flexcoders] Using a getter as a labelField

2008-02-03 Thread Alex Harui
Pleas tell us more about what you tried and what errors you got. I would expect it to work, but maybe your details will remind me of a reason it won't work. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of madflexcoder Sent: Sunday,