RE: [flexcoders] Tooltip on the CategoryAxis of a BarChart?

2007-09-26 Thread Sunil Bannur
Have you explored using a labelRenderer property in AxisRenderer - you can have a Flex Label which shows a tooltip on mouseover. This should help

[flexcoders] scale nine

2007-09-26 Thread learner
Hi all, I am trying to use the assets from the my own swf to skin flex components just as done in "sample skin files" from adobe and have also studied the fla templates from http://www.scalenine.com/. but the problem I am facing to skin the components with rounded corner. The article form " htt

[flexcoders] repetition of link buttons confined to a width

2007-09-26 Thread Horthy Hosthoh
Hello, What's the best way to repeat over some data (xml) and create mx LinkButtons from them? I've tried a number of data driven controls, and the Repeater control, but what I really want is a list like the following: banana, cola, apple, tree, car, smoke, computer, ribbon, beanbags and so o

[flexcoders] Re: compiler issue

2007-09-26 Thread Darrin Massena
I'm hitting the same compiler issue as are other members of my team. It is truly bizarre. Your suggestion to turn off -strict type checking worked for me but leaves me nervous about what code is actually being generated. I've examined the mxmlc generated files with -keep but they look fine. In my

RE: [flexcoders] Using a different style for focused controls

2007-09-26 Thread Alex Harui
can't think of a way to do it in CSS, but you can listen to the systemManager for focusIn and see the focusIn on all children because it bubbles. That way you only have to attach one listener. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

RE: [flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread Alex Harui
One more thing: It is related to mouseDown in a TextField which is in the Panel title. In my testing, if I grab the white content area and drag I do not have a problem. Makes me think that if you put an alpha=0 sprite over the textfield in the panel's title it might work better in IE, but I don'

RE: [flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread Alex Harui
Actually, the player team already has a bug for this issue. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, September 26, 2007 10:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: MOUSE_LEAVE nev

RE: [flexcoders] headerText de un DataGridColumn en forma vertical

2007-09-26 Thread Alex Harui
It should be possible to turn the text sideways, but I don't have an example. You must use embedded fonts in order to show rotated text. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 26, 200

RE: [flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread Alex Harui
I see. I dind't realize you were saying that MOUSE_LEAVE doesn't work properly in IE at all. I thought you were saying that startDrag() was messing it up. So yeah, I tried it myself and it isn't working right. I don't think you even need to startDrag(), just listen for MOUSE_LEAVE and it seems

[flexcoders] Using a different style for focused controls

2007-09-26 Thread Stephen Roy J. Tang
Hi, I know I can control the focus rectangle by using a border skin - but I want to be able to change stuff like background color and font weight when a control gains focus. Is there a way I can do that without having to use focus/lose focus event triggers? This would be applied across several Fle

RE:%20[flexcoders]%20Using%20the%20Sandy%203D%20engine%20in%20Flex

2007-09-26 Thread Ed Capistrano
Can you do 3d stuffs in flex? Ed proud & happy member Dennis Ippel wrote: > Hi all, If you give a damn about Flex and 3D then this might be > of interest to you: http://www.rozengai n.com/?postid= 51 If you don't, never > mind :-) > Dennis > Send instant messages to your

RE:%20[flexcoders]%20Using%20the%20Sandy%203D%20engine%20in%20Flex

2007-09-26 Thread Ed Capistrano
Can you do 3d stuffs in flex? Ed proud & happy member Dennis Ippel wrote: > Hi all, If you give a damn about Flex and 3D then this might be > of interest to you: http://www.rozengai n.com/?postid= 51 If you don't, never > mind :-) > Dennis > Send instant messages to your

RE:%20[flexcoders]%20Using%20the%20Sandy%203D%20engine%20in%20Flex

2007-09-26 Thread Ed Capistrano
Can you do 3d stuffs in flex? Ed proud & happy member Dennis Ippel wrote: > Hi all, If you give a damn about Flex and 3D then this might be > of interest to you: http://www.rozengai n.com/?postid= 51 If you don't, never > mind :-) > Dennis > Send instant messages to your

Re: [flexcoders] Re: Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread shaun
Hi, How are you constructing your Boolean object? Are you doing something like: var b:Boolean("false"); //true. when you want: var b:Boolean(false); //false. Have a read of the docs for the Boolean constructor if this is how your creating your Booleans, that might clear things up. [sn

Re: [flexcoders] e4x question

2007-09-26 Thread shaun
Hi Peter, Peter Hall wrote: > You don't need to give the namespace variable the same as the prefix that > ActionScript gives it when you toString() it. Internally, it doesn't use a > name and just generates one when you convert the XML to a string. > > You can give it something more descriptive l

[flexcoders] Re: Channel definition, mx.messaging.channels.RTMPChannel, can not be found

2007-09-26 Thread sk_acura
Hi, Thanks for your reply.. I have fds.swc and fds_rb.swc in my classpath.. i have the following node in my mxmlc target I also copied the fds.swc and fds_rb.swc in /flex/lib folder and still getting the same Error.. Thanks Kumar -

RE: [flexcoders] looking for a decent throbber

2007-09-26 Thread Tracy Spratt
There is always the ProgressBar. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Wednesday, September 26, 2007 7:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] looking for a decent throbber

Re: [flexcoders] Re: Session timeout /SuperImage

2007-09-26 Thread Richard Rodseth
Thanks, Reid. I realized that I can also switch SuperImage to bind to a bitmap, rather than a url, and if I load the image using an HTTPService I will have more control over HTTP responses. Of course, if I wanted to re-use the flex code outside of the HTML app, then I might be better off implementi

[flexcoders] Tooltip on the CategoryAxis of a BarChart?

2007-09-26 Thread Mark
The Vertical Axis on my bar chart holds Project Names. As you can imagine they can get pretty large so I have a label funtion to truncate anything over 15 characters. I'd like to be able to get a tooltip on them so the user can just roll over the name to see the full name. Is this something t

Re: [flexcoders] looking for a decent throbber

2007-09-26 Thread Josh McDonald
I'd just cook up something really simple and use a nice animated .swf created in flash to do it. Have a "still" swf and a "busy" swf, and with a hundred lines of event handling you could simply listen for start/end events (or even just provide on/off methods depending on your architecture), and

[flexcoders] headerText de un DataGridColumn en forma vertical

2007-09-26 Thread [EMAIL PROTECTED]
Estimados Listeros: Hay alguna manera de mostrar el texto de las cabeceras de las columnas de forma vertical ? o sea , mostrar el headerText de un DataGridColumn en forma vertical ? Muchas Gracias por todo Dios los Bendiga Pablo

[flexcoders] Re: Trouble skinning ComboBox that is shorter than default one...

2007-09-26 Thread williamkusumo
Oh, I thought you have to re-define all the functions. I think I was mistaking "extending" vs "implementing" :) Thanks, Alex! As always :D --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Aw, c'mon it should look like: > > > > > > > >

[flexcoders] looking for a decent throbber

2007-09-26 Thread Reid Priedhorsky
Dear all, We are looking for a decent throbber to give the user some feedback when our application is loading data or thinking. We have been using jamesjaco's Loading Spinner from the Flex Component Exchange, but it chews up quite a lot of CPU and leaks memory rather badly (several hundred KB

[flexcoders] Re: Session timeout /SuperImage

2007-09-26 Thread Reid Priedhorsky
Richard Rodseth wrote: > My flex app lives within an HTML app. I need to inform the user when > the session has timed out, and redirect them to login. I'm interested > in strategies for handling session timeout, and I also have a specific > question about SuperImage. > > One of the places the app

RE: [flexcoders] Re: Trouble skinning ComboBox that is shorter than default one...

2007-09-26 Thread Alex Harui
Aw, c'mon it should look like: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Wednesday, September 26, 2007 3:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trouble skinning ComboBox that is short

[flexcoders] Re: Flex Compiler Shell with Ant Possible ??

2007-09-26 Thread Reid Priedhorsky
Adnan Doric wrote: > Hello, > > I would like to try the fcsh in my eclipse 3.2 Flex 2.0.1, but can't > figure how to do it or if it is even possible. > http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell > > I already use Flex Ant Task with mxmlc compiler, so I would like to > switch to fc

Re: [flexcoders] Channel definition, mx.messaging.channels.RTMPChannel, can not be found

2007-09-26 Thread João Fernandes
You are missing fds.swc and fds_rb.swc that can be found under /WEB-INF/flex/libs and /WEB-INF/flex/locale/en_US. -- João Fernandes www.onflexwithcf.org www.riapt.org

[flexcoders] Using the Sandy 3D engine in Flex

2007-09-26 Thread Dennis Ippel
Hi all, If you give a damn about Flex and 3D then this might be of interest to you: http://www.rozengain.com/?postid=51 If you don't, never mind :-) Dennis

[flexcoders] Can Flex consume a web service with a swa attachment?

2007-09-26 Thread lrdvadersith
I'm using Flex 2 hotfix 3. I have a web service that returns XML as a mime attachment using the swa standard. When I try to call the service I get a fault that says: Error #1085: The element type "7e5c686b-1930-4e5c-076f- [EMAIL PROTECTED]" must be terminated by the matching end- tag "". My

[flexcoders] Re: Trouble skinning ComboBox that is shorter than default one...

2007-09-26 Thread williamkusumo
Hmm, that means I have to extend ComboBox, right? Hmm...that sucks, I wish there's an easier way. Thanks! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Sure, set its position in updateDisplayList > > > > From: flexcoders@yahoogro

[flexcoders] Can Flex consume a web service with a swa attachment?

2007-09-26 Thread Anakin Skywalker
I'm using Flex 2 hotfix 3. I have a web service that returns XML as a mime attachment using the swa standard. When I try to call the service I get a fault that says: Error #1085: The element type "[EMAIL PROTECTED]" must be terminated by the matching end-tag "". My raw HTTP response is

[flexcoders] Can Flex consume a web service with a swa attachment?

2007-09-26 Thread Anakin Skywalker
I'm using Flex 2 hotfix 3. I have a web service that returns XML as a mime attachment using the swa standard. When I try to call the service I get a fault that says: Error #1085: The element type "[EMAIL PROTECTED]" must be terminated by the matching end-tag "". My raw HTTP response is

[flexcoders] Channel definition, mx.messaging.channels.RTMPChannel, can not be found

2007-09-26 Thread sk_acura
Hi all, I am trying to build my app using the following build script and i am getting the Error.. uild.mxml: [mxmlc] Loading configuration file /local/apps/Flex/flex3sdk_b1_061107/frameworks/flex-config.xml [mxmlc] This beta will expire on Wed Oct 31 00:00:00 EDT 2007. [mxmlc] /loc

[flexcoders] Re: How to converst an XML to AS Object ?

2007-09-26 Thread booleanbetrayal
I've got a few examples of how to go about using this sort of implementation with SimpleXMLDecoder along with recursive ObjectTranslator calls, tied into HTTPService calls using xmlDecode =] http://booleanbetrayal.com/2007/05/18/httpservice-xmldecode-objecttranslator-and-rabidsquirrels/ Hope thi

[flexcoders] OT: Webservice classes (Flash 8) and SOAP formats

2007-09-26 Thread Merrill, Jason
I hope nobody minds the non-Flex question here, though it does have to do with the Flash platform. Flashcoders is down still (over a week now), and the other Flash forums I know of suck. I have an enterprise application I built with Flash 8 and Actionscript 2.0 last spring. Has worked great s

RE: [flexcoders] Re: Code Coverage Testing Tool For Flex...

2007-09-26 Thread Matt Chotin
One of our guys in consulting has been working on one. I think he's going to start talking about it very soon. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of barry.beattie Sent: Wednesday, September 26, 2007 3:46 AM To: flexcoders@yahoogroups.com Subject: [fle

[flexcoders] Re: NPE after upgrading to LCDS

2007-09-26 Thread Shailesh Mangal
It was a working FDS project and had only one messageBroker Servlet configured. I just applied 1. SDK HotFix-2 and HotFix-3 2. Copied over following from within flex.war a. /WEB-INF/flex/jars b. /WEB-INF/lib/ c. /WEB-INF/flex/libs to their corresponding folders in the existing project. I

[flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread ben.clinkinbeard
I am dragging a panel. MOUSE_UP_OUTSIDE_STAGE accurately describes what happens in Firefox, but in IE nothing fires at all. If you run the code from my initial post in both browsers you will see what I mean. > It does not fire when you drag out of the stage. Not sure what you mean by that since in

RE: [flexcoders] How to Highlight selected item in after change of data provider

2007-09-26 Thread Alex Harui
This test worked for me: http://www.adobe.com/2006/mxml"; layout="vertical" > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of falgunisachde Sent: Wednesday, September 26, 2007 6:20 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Problems with setFocus()

2007-09-26 Thread Alex Harui
Hmm. Never realized you can't change focus during focusOut. Try this: From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pande2901 Sent: Wednesday, September 26, 2007 4:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problems

Re: [flexcoders] Form in Dynamic State

2007-09-26 Thread [EMAIL PROTECTED]
Another full day trying to get this to work. I'm trying to figure out how to access the value of the form elements. http://www.geotonics.com/examples/DynamicStates/DynamicStates.html I got this from Programming Flex 2, page 221, but I had to fix some mistakes and I submitted the errata to the au

RE: [flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread Alex Harui
In your snippet, it looked like you were trying to drag a panel. Is that true or are you dragging components in a panel? Maybe I don't get what is wrong with IE and MOUSE_LEAVE because as far as I know MOUSE_LEAVE does work. It really should be called MOUSE_UP_OUTSIDE_STAGE. It does not fire wh

RE: [flexcoders] Parsing mxml - is there an attribute or method of the

2007-09-26 Thread Alex Harui
flash.display.DisplayObjectContainer or mx.core.Container? DisplayObjectContainer has "add" events for when children are added. Container has "childAdd" event for when child components are created. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Be

RE: [flexcoders] XML and ArrayCollections problem

2007-09-26 Thread Alex Harui
This worked for me: http://www.adobe.com/2006/mxml"; layout="vertical" creationComplete="ws.send()"> http://ws.audioscrobbler.com/1.0/user/interactivenyc/friends.xml"; resultFormat="e4x" result="trace(ws.lastResult.toXMLString()); dg.dataProvider = ws.lastResult.user" /> _

[flexcoders] Re: DataGrid itemRenderer

2007-09-26 Thread byte.sensei
Awesome - works great. Thanks Alex - sometimes the biggest problem is figuring out that something like labelFunction exists. I read through the Flex help docs but must've somehow overlooked this. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > read up on labelF

Re: [flexcoders] SetVariable vs External Interface & AS3's root

2007-09-26 Thread Derek Vadneau
"I'll do a test to see what the difference in speed is with AS2's SetVariable." There's a huge difference. SetVariable is near instant where EI has to encode/decode the value you are passing into/from XML. >From a browser you don't see the XML, but that's what's going on. The container is respons

RE: [flexcoders] NPE after upgrading to LCDS

2007-09-26 Thread Jeff Vroom
Do you perhaps have more than one MessageBrokerServlet configured in the same web application? The hibernate assembler is trying to do: dataDestination = DataDestination.getDataDestination(destinationId); which is using the default MessageBroker.getMessageBroker() method to try an

RE: [flexcoders] Module Error when re-loading a module

2007-09-26 Thread Alex Harui
This is a known limitation of modules and effectively, the shared-code problem. I would put the DG's styles in a runtime-CSS swf and load it before loading the module the first time. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of boy_tri

RE: [flexcoders] Re: Trouble skinning ComboBox that is shorter than default one...

2007-09-26 Thread Alex Harui
Sure, set its position in updateDisplayList From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Wednesday, September 26, 2007 11:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Trouble skinning ComboBox that i

RE: [flexcoders] Re: Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread Alex Harui
If you can reduce this down to an actual simple test case, post it here or file a bug. Your "crazy" function is strange in that it does not work in the clauses and thus might in fact be a compiler bug, but if there's actual work being done, then it would be interesting to see what's going on. ___

[flexcoders] NPE after upgrading to LCDS

2007-09-26 Thread Shailesh Mangal
I just upgraded to LCDS and Hotfix-3 and start getting following exception exception: java.lang.NullPointerException at flex.data.assemblers.HibernateAssembler.start(HibernateAssembler.java:170) at flex.data.adapters.JavaAdapter.getAssemblerObject(JavaAdapter.java:1334) a

[flexcoders] Re: Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread dbronk
Okay, sorry guys. I tried to give just snippets and in doing so I believe I pushed you into the wrong direction. My actual code is NOT public function crazy(myBool:Boolean) : void { if ( myBool ) { var s:String; } else { var ss:String; } } That I did just so I could remove a lot of unnecessary

Re: [flexcoders] Re: Code behind - class extend mxml vs. mxml extend class

2007-09-26 Thread EECOLOR
> > > > > > > Not if MyClass extends an MXML. >You get this for MXML extends AS too (if you create public bindable for each >control you want to reference). Exactly, I think however that it saves alot of effort if you do not have to create a bindable for each control. >I've never seen

[flexcoders] FlexUnit & Cairngorm

2007-09-26 Thread Kevin
Is anyone currently using FlexUnit to test a Cairngorm app? I have some questions about how best to set this up. Thanks, Kevin

Re: [flexcoders] New Project using ColdFusion Flash Remoting Service

2007-09-26 Thread João Fernandes
George, your root folder should be the ColdFusion folder that contains the WEB-INF folder. It's just to allow the wizard to locate the services-config.xml to compile properly the app. If then, you want to compile your app and have the files deployed somewhere else, change the output folder pat

RE: [flexcoders] Passing Values to popup components and then passing back

2007-09-26 Thread Tracy Spratt
Here is an example: http://www.cflex.net/showFileDetails.cfm?ObjectID=558 Note, it does not use events. If you plan to reuse the popup component, look into using events for communication. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Manipulating tree label programmatically

2007-09-26 Thread Tracy Spratt
Either way, you will need to use a custom TreeItemRenderer. Here is one example: http://www.cflex.net/showFileDetails.cfm?ObjectID=575 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nhid Sent: Wednesday, September 26, 200

[flexcoders] Implementing copy/paste on a DataGrid

2007-09-26 Thread dolinja
Does anyone have any experience or pointers in doing this? I need to be able to drag over a grid, select a number of cells and copy them to the clipboard. The approach I'll take is probably to try and detect the mouse drag over a cell and build up my own internal array by pulling values out of th

RE: [flexcoders] Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread Tracy Spratt
Actually, this is by design, as of AS3. The compiler has detected a duplicate definition for a variable. This can lead to unexpected results. ActionScript does not support block level scoping of variables. All variables defined within a function body exist within the same scope, even if they ar

RE: [flexcoders] Re: Get row and column from click on datagrid

2007-09-26 Thread Tracy Spratt
You should understand that there are no "rows" or "columns" unless there is a dataProvider item to produce them. You should also understand that there is not a 1:1 relationship between data items and rows. The item renderers are recycled and only the visual rows, plus a few for buffering even

[flexcoders] Extending AreaSeries

2007-09-26 Thread rekeots
Hi! I would like to extend AreaSeries in such a way that it would take its vertical axis from data and its horizontal axis from its parent's width (which is the Cartesian chart). How can i override its updateDisplayList? or any ideas? Thanks!!!

[flexcoders] Passing Values to popup components and then passing back

2007-09-26 Thread ming4u2
Hi, I am working on an exisiting application and trying to pass value to opup components. I don't know if I am not doing it right but the values are not being passed and then calling the correct HHTP call for the data. Can anyone point me to the right direction besides the Adobe live docs, w

Re: [flexcoders] Re: Flash player 9 standalone download

2007-09-26 Thread Derek Vadneau
Here ya go: http://www.adobe.com/support/flashplayer/downloads.html#fp9 On 9/24/07, helix206 <[EMAIL PROTECTED]> wrote: > > Thanks but i need the latest version 9.47 standalone. Any links on > Adobe website? > > I think Adobe should make this simpler. > > --- In flexcoders@yahoogroups.com , "B

[flexcoders] Re: Trouble skinning ComboBox that is shorter than default one...

2007-09-26 Thread williamkusumo
Is there a way, maybe, to adjust the postiion of TextInput inside the ComboBox, but not the height of it? Thanks! --- In flexcoders@yahoogroups.com, "williamkusumo" <[EMAIL PROTECTED]> wrote: > > Calling all skinners! > > I am skinning a ComboBox using some vector images in Flash and the > Combo

Re: [flexcoders] Bug in Proxy

2007-09-26 Thread Johannes Nel
i confirm, i logged this on the open bug list and sent them a code sample. my temp hack (and this is because i do not need a getter) is this: override flash_proxy function getProperty(name:*):* { var p:* = function():* { callProperty(name,arguments);

[flexcoders] Bug in Proxy

2007-09-26 Thread Derek Vadneau
There seems to be a bug in flash.utils.Proxy. Here's some sample code: var mp:MyProxy = new MyProxy(); mp.myVar = 'something'; // calls flash_proxy setProperty as expected mp['myVar'] = 'something'; // calls flash_proxy setProperty as expected mp.go(); // calls flash_proxy callProperty as expec

[flexcoders] Re: combobox question

2007-09-26 Thread djdyland
nevermind rowCount is what I was looking for --- In flexcoders@yahoogroups.com, "djdyland" <[EMAIL PROTECTED]> wrote: > > Is there a way to remove the scrolling on a drop down from a combo > box.. so instead of scrolling it displays all the elements in a long > list? > > Thanks > Dylan >

RE: [flexcoders] Hyperlink in Flex 2...

2007-09-26 Thread Matt Horn
Check out the label's available styles: http://livedocs.adobe.com/flex/201/langref/mx/controls/Label.html You'll want to use color and textDecoration. hth, matt horn flex docs > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sand

[flexcoders] combobox question

2007-09-26 Thread djdyland
Is there a way to remove the scrolling on a drop down from a combo box.. so instead of scrolling it displays all the elements in a long list? Thanks Dylan

[flexcoders] Re: Flex and Server-Side Java classes

2007-09-26 Thread Sandeep Malik
If you're just interested in making remote object calls, I guess OpenAMF is a very viable option. --- In flexcoders@yahoogroups.com, "Anas Mughal" <[EMAIL PROTECTED]> wrote: > > > Check out WebORB. > > There are also some open source alternatives: > > Granite > Red5 > Flourine (.NET) > PHPAM

[flexcoders] Re: How to verify a URL before loading it OR how to catch IOException

2007-09-26 Thread tjcox1969
Yup. That worked! Thanks a lot. --- In flexcoders@yahoogroups.com, "Sandeep Malik" <[EMAIL PROTECTED]> wrote: > > Hi, > > The reason this approach will not work is that the error you are > getting is an asynchronous error, i.e. something that happens in a > different code path (when you respo

Re: [flexcoders] Manipulating tree label programmatically

2007-09-26 Thread nhid
I'm sorry, I misinterpreted the requirements. The labels should display with # or bold if they meet a particular condition when the tree is being populated, not when the item is clicked. Alex, I'm not using TreeItemRenderer, just the tree control. On 9/26/07, Alex Harui <[EMAIL PROTECTED]> wrot

RE: [flexcoders] Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread Seth Caldwell
This might be a compiler optimization issue. Try putting something in the if statement that actually matters instead of just a variable declaration that is never used. Like a global variable, for example: http://www.adobe.com/2006/mxml"; layout="absolute">

Re: [flexcoders] e4x question

2007-09-26 Thread Peter Hall
You don't need to give the namespace variable the same as the prefix that ActionScript gives it when you toString() it. Internally, it doesn't use a name and just generates one when you convert the XML to a string. You can give it something more descriptive like: namespace w3xml = "http://www.w3.

[flexcoders] Re: How to verify a URL before loading it OR how to catch IOException

2007-09-26 Thread Sandeep Malik
Hi, The reason this approach will not work is that the error you are getting is an asynchronous error, i.e. something that happens in a different code path (when you response return from server). 'try- catch' can only protected in the current execution stack. A simple look up at the StyleManage

RE: [flexcoders] Re: firefox and FileReference.upload over SSL - error 2038

2007-09-26 Thread Seth Caldwell
This is very good to hear. If any developer thinks they can do the following very easy, please do so and post here to bring more attention to this issue - it is a huge bug! Step 1: Install apache (ssl version) Step 2: install openssl if you don't have it already, and generate your keys, etc.

[flexcoders] Re: can change pie chart color at runtime,please help

2007-09-26 Thread jer_ela
This is how to set fills programatically: fills:Array = []; var fill:RadialGradient = new RadialGradient(); var entries:Array = []; entries.push( new GradientEntry(color, ratio, alpha)) entries.push( new GradientEntry(color2, ratio2, alpha2)) //additional entries as needed fill.entries = entries;

[flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread ben.clinkinbeard
I will definitely file a bug against the player but in my initial exploration am seeing some deal-breaker shortcomings of both DragManager and Panel's built-in approach. Panel's stage_mouseLeaveHandler() listens for MOUSE_LEAVE so it suffers from the same fate as startDrag(). DragManager, as far as

[flexcoders] Module Error when re-loading a module

2007-09-26 Thread boy_trike
I have a main application that loads a module. Everything works fine until I RE-LOAD the module (via a popup-menu button). After that, when I dbl-click on a grid (which worked fine before.) I get the following error: TypeError: Error #1007: Instantiation attempted on a non-constructor.

[flexcoders] Very strange runtime behavior - if logic doesn't work?????

2007-09-26 Thread dbronk
Very strange... I had an apparent bug in my code and simply could not find it so I created a very basic function to help test. Here is the code: public function crazy(myBool:Boolean) : void { if ( myBool ) { var s:String; } } Yes, it does nothing. I place a break point on t

[flexcoders] How to verify a URL before loading it OR how to catch IOException

2007-09-26 Thread tjcox1969
I have a compiled theme SWF that I want to load at runtime. The problem is that if the theme.swf does not exist, I get Flash/Flex's ugly default error dialog at runtime saying: Error: Unable to load style(Error #2035: URL Not Found. URL: MyTheme.swf): MyTheme.swf. I don't mind catching the excep

RE: [flexcoders] Re: MOUSE_LEAVE never fires in IE if drag with bounds is active

2007-09-26 Thread Alex Harui
You should file against the player. They should fix it. However, since that scenario is not recommended in Flex, I'm not going to verify it. And yes, use DragManager or your own code (Panel has its own code) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC

RE: [flexcoders] Datagrid masking

2007-09-26 Thread Alex Harui
Some problems were fixed in Moxie. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Wednesday, September 26, 2007 6:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid masking Hi All I've got an inte

RE: [flexcoders] Manipulating tree label programmatically

2007-09-26 Thread Alex Harui
You can subclass TreeItemRenderer and do those things in updateDisplayList From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nhid Sent: Wednesday, September 26, 2007 7:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Manipulating tr

RE: [flexcoders] DataGrid itemRenderer

2007-09-26 Thread Alex Harui
read up on labelFunction From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of byte.sensei Sent: Wednesday, September 26, 2007 7:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid itemRenderer I've been pulling my hair out try

RE: [flexcoders] zoom - in charts

2007-09-26 Thread Ely Greenfield
Can you describe what you're looking for in more detail? I can interpret what you said in many different ways. E. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sunil Bannur Sent: Wednesday, September 26, 2007 8:48 AM To: flexcoders@yahoogroups.com Subj

RE: [flexcoders] Re: Get row and column from click on datagrid

2007-09-26 Thread Mark Ingram
That works great when I click on a valid entry in the datagrid, but if I click on an empty row, the message isn't received. That is when I'm trying to capture the row & column... Mark From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

[flexcoders] DataGrid itemRenderer

2007-09-26 Thread byte.sensei
I've been pulling my hair out trying to figure out the best way to format numbers in a DataGrid. I've got a dataProvider with fields used in the grids that are of type "Number" -- some are currency, some are integers, and some are numbers that need to be formatted to 1 decimal point. In other

[flexcoders] Re: zoom - in charts

2007-09-26 Thread Abyss Knight
You can do this quite easily by manipulating the maximum and minimum constraints on your graph. I'm not sure what you are trying to achieve, but it has likely been done. You may wish to take a look at: http://www.meutzner.com/blog/index.cfm/2007/6/15/Google-Finance-with-Flex-from-Silvafug-last-nig

[flexcoders] Re: firefox and FileReference.upload over SSL - error 2038

2007-09-26 Thread r.fender
I have been running into the same thing since the FileReference API was introduced. I just chalked it up to the Firefox Flash Player plugin not working. I run my app in an embedded system and use the FileReference API to actually upload a software upgrade which the system them consumes and upgrades

[flexcoders] Re: Get row and column from click on datagrid

2007-09-26 Thread sgrosven2
Try using/reading up on "itemClick" instead of just "click"

[flexcoders] can change pie chart color at runtime,please help

2007-09-26 Thread sonnygett
hi guys, i have a problem about changing the pie chart color at runtime. for example, i have this chart : and need to change the gradient entry with the id pie1 anda pie11,i did it like this: pie1.color=0xFF; but its seems doesn't work. can someone help me? thanks, regards

[flexcoders] Re: Re

2007-09-26 Thread danielvlopes
Thanks alex. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Ttry calling validateNow() before move(); > > a:Alert = Alert.show("AAA"); > a.validateNow(); > a.move(0,0); > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Tom Chiverton
> Doesn't make in a core Flex class. t Tom This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose regis

RE: [flexcoders] Get row and column from click on datagrid

2007-09-26 Thread Mark Ingram
The "click" event gives me no information that I can readily use to look up a row and column in the datagrid... Private function clickHandler(event:MouseEvent):void { // How to find out what row / column was clicked on - even if there is no data at the location the user clicked } Thanks

Re: [flexcoders] New Project using ColdFusion Flash Remoting Service

2007-09-26 Thread George Georgiou
I don't have problem with the code. The problem is to create a new project using the CF flash service setup. Even for a single button that just popups an alert - if I don't define the correct project settings it won't compile at all! On 9/26/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On

Re: [flexcoders] Get row and column from click on datagrid

2007-09-26 Thread Tom Chiverton
On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: > Hi, I want to find out what row and column I have clicked on in a > datagrid. Where do I start? The LiveDocs for the relevant event, linked from the main DataGrid page. -- Tom Chiverton Helping to advantageously grow wireless networks on: http

Re: [flexcoders] New Project using ColdFusion Flash Remoting Service

2007-09-26 Thread Tom Chiverton
On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: > Pretty sure server side compile only works with Cold Fusion 8. You > might want to check the Cold Fusion docs. The OP *seems* to be complaining about something in Flex Builder. -- Tom Chiverton Helping to completely morph distributed models o

Re: [flexcoders] class fl.motion.MatrixTransformer not available in flex framework

2007-09-26 Thread Tom Chiverton
On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: > this is not completely true, fl.motion.MatrixTransformer is part of Flash > CS3 AS3 Classes, Doesn't make in a core Flex class. -- Tom Chiverton Helping to greatly brand frictionless patterns on: http://thefalken.livejournal.com

RE: [flexcoders] zoom - in charts

2007-09-26 Thread Sunil Bannur
The existing zoom effects is there on the entire chart and series, but to have it for individual chart items, you probably can handle the itemRollOver events and add a chartelement dynamically as that of the itemRenderer with a appropriate scale effect and appropriate bounds. Thanks -Sunil

  1   2   >