[flexcoders] Set Icon on tree

2005-08-16 Thread digital_eyezed
Hi, I'm trying to set the icon of the nodes on my tree based on some logic and am using the iconFunction tag to do this but it doesn't seem to work. The tree is populated from a returned Array of Value objects from a remoteObject call. One of the variables within each Value Object is called

[flexcoders] Re: Set Icon on tree

2005-08-16 Thread digital_eyezed
Sorry, I fixed it: just changed the first line to: var type:Number = item.getProperty('percent_full'); Doh! --- In flexcoders@yahoogroups.com, digital_eyezed [EMAIL PROTECTED] wrote: Hi, I'm trying to set the icon of the nodes on my tree based on some logic and am using the

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Rick Bullotta
Here's another one for Ethan then... :) The Flash Player (along with Flex and AS) should have an input extensibility model that supports input focus management and input from other mechanisms/devices such as: - Barcode readers - RFID readers - Card readers - Others... This would open up

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Theodore E Patrick
Flash can handle these via a standard MS Keyboard Wedge Driver. We shipped a kiosk with a card reader and the Flash Player can directly parse data entered. Basically all these devices can be reduced to keyboard input so when you swipe a card or scan a barcode, it just types data really

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Rick Bullotta
Thanks for the ideas! I've done similar things in the past - but specific "listeners" for various attached input devices would be a cleaner way to go, particularly when there are multiple input fields on a form that can accept remote or direct input. There are hacks that can be done

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Theodore E Patrick
lash Player 8 provides an new intrinsic class called ExternalInterface. This allows you to exchange data with external application in a standardized way synchronously in both directions. Flash can call an external function and get the return data and an external app can query the Flash

Re: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread JesterXL
Someone blogged about using a webcam as a barcode reader in Flash 8 using the new imaging ActionScript. Not sure about the rest. - Original Message - From: Rick Bullotta To: flexcoders@yahoogroups.com ; flexcoders@yahoogroups.com Sent: Tuesday, August 16, 2005 6:19 AM Subject:

[flexcoders] Testing Flex Applications

2005-08-16 Thread Allen Manning
Hello Flex Coders, Im using FlexUnit to do unit testing of my Flex applications. The QA team that Im working with would like to use a screen-reader style tool to check the state of the Flash application and set it up in regressions. Do any tools exist that do this type of

[flexcoders] Calling RemoteObject declared in a mxml component in an application-The property being referenced does not ...

2005-08-16 Thread Oscar . Cortes
I want to have all my RemoteObject declarations in a mxml component that I can later use in another application. I created a services.mxml file where I have something like this: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.macromedia.com/2003/mxml; !--

[flexcoders] Solid Analysis of RIA Offerings...

2005-08-16 Thread Tariq Ahmed
Hey all, I'm receiving some upper management friction in terms of continuing to push Flex deeper into the Enterprise. I'm basically looking for a document anyone has written that makes a quantitative analysis of the various RIA offerings (most importantly Flex, Laszlo, and Ajax) and makes the

[flexcoders] Best Practice

2005-08-16 Thread Mehdi, Agha
Title: Best Practice Hi all, I have an architectural question. Let me tell you the scenario first. A tree control with bunch of nodes and each node has some attributes in the database, which vary from node to node. The nodes hold IDs and upon selection, the app needs to get all the

[flexcoders] FormItemLabel style?

2005-08-16 Thread Jaime Bermudez
Is there a way to set the style of the FormItem's label, other than the width? I want to make the text a certain font and color, but I can't seem to get it to work by setting these properties on the FormItem tag. Yahoo! Groups Sponsor ~-- font

[flexcoders] SOLVED: Re: Tree component help - please

2005-08-16 Thread pat_ryan_99
With all of your suggestions, I have basically got it working. I store the node as suggested, and I use the getData method. However, I had to do something which causes me to think that my ActionScript skills need some help. In my OpenTree Command I basically have the following: public

[flexcoders] Re: Locking down Flex, Accessing Session Data

2005-08-16 Thread derek
I'm having problems just accessing my session bean in general from within the flex client. I'm using JSF and I can verify that the bean exists in session, yet I can't retrieve it with it's state. Could you post some of your code that displays how you are accessing this information? Below is my

[flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread Brett Palmer
I'm trying to profile a flex application. What is the easiest way to run and install multiple Flash player versions? I'm interested in running Flash 7, Flash 7 debug, and Flash 8. Thanks, Brett Yahoo! Groups Sponsor ~-- font face=arial size=-1a

RE: [flexcoders] Testing Flex Applications

2005-08-16 Thread Todd Rein
Hi Allen, We cant announce any details yet, but I can let you know that we are working on functional UI testing support in Flex for an upcoming release. If you need something sonner, we have helped other customers with some short term solutions via consulting. Thanks, Todd

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread David Mendels
Hi, good requests. The problem of local storage (beyond local shared objects) and the problem of local system access/input extensibility (as below) are things we are very interested in. It helps the team more if you provide details on what you want to do, what problem you want to

Re: [flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread John Dowdell
Brett Palmer wrote: I'm trying to profile a flex application. What is the easiest way to run and install multiple Flash player versions? I'm interested in running Flash 7, Flash 7 debug, and Flash 8. Any particular browser and operating system? (I think there's a plugin-switching extension

[flexcoders] embeding swf that takes parameters

2005-08-16 Thread maricnkg
I have a swf that takes 2 parameters: a and b. To open it in a browser: my.swf?a=1b=text How can I embed this swf only once and reuse it in the flex app with different parameters in different places? I mean that I would like to show it in one place my.swf?a=1b=text1 And then in another place

RE: [flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread Abdul Qabiz
I think, there is a third party software available to switch between different version of Macromedia Flash Players for IE/FireFox/NetScape or Standalone on the fly. FlashPluginSwitcher www.kewbee.de/FlashPluginSwitcher/index.php -abdul -Original Message- From:

Re: [flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread JesterXL
Check it: http://www.kewbee.de/FlashPluginSwitcher/index.php - Original Message - From: Brett Palmer [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, August 16, 2005 2:19 PM Subject: [flexcoders] How to install multiple Flash Player versions? I'm trying to profile a

[flexcoders] Cannot assign selected value from a radiobutton that was created dynamically.

2005-08-16 Thread Oscar . Cortes
I am creating radioButtons dynamically using an array. When I try to assign the selected value into a Text or TextArea it doesn't work. It seems that I am using addEventListener correctly since I am able to see the event.target.data in an Alert. This application shows what I mean: 1. The

[flexcoders] Re: DepthManager

2005-08-16 Thread Rajesh Jayabalan
Hi, I tried that, it does not work, the window still is showing on top of the menu. Rajesh J --- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: The method MovieClip.swapDepths accepts both a MovieClip instance and a number. One potential issue with usage of

RE: [flexcoders] embeding swf that takes parameters

2005-08-16 Thread Roger Gonzalez
I have a swf that takes 2 parameters: a and b. To open it in a browser: my.swf?a=1b=text How can I embed this swf only once and reuse it in the flex app with different parameters in different places? I mean that I would like to show it in one place my.swf?a=1b=text1 And then in another

[flexcoders] RE: validator styles

2005-08-16 Thread Drew Falkman
Never Mind: http://groups.yahoo.com/group/flexcoders/message/16410 -Drew -Original Message- From: Drew Falkman [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 1:15 PM To: 'flexcoders@yahoogroups.com' Subject: validator styles Hey--- Does anyone know how to edit the styles for

[flexcoders] validator styles

2005-08-16 Thread Drew Falkman
Hey--- Does anyone know how to edit the styles for the validation failures, that is the color/width of the border around the control and the font/color of the message? Thanks, Drew Falkman Yahoo! Groups Sponsor ~-- font face=arial size=-1a

[flexcoders] Flex developer needed ASAP!

2005-08-16 Thread delaquae
I need a Flex Developer for a small flex-based UI prototype that I estimate to require approximately 20-30 hours of effort. It needs to be completed within the next 10 days and might result in a larger contract/job opportunity. The person working on this would preferrably be located in the

RE: [flexcoders] Re: How to render a foreground color on an mx:Image

2005-08-16 Thread Gordon Smith
Using a Panel to simply draw a rounded rectangle seems awfully wasteful. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, August 10, 2005 2:29 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]