[flexcoders] Re: xml-rpc

2007-02-12 Thread chuvakgu
See http://debedb.blogspot.com/2007/02/xmlrpc-for-as-30-howto.html and http://tech.groups.yahoo.com/group/flexcoders/message/58427 for more details.

[flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-08 Thread chuvakgu
why is FDS such a problem. there are free license options availible But automation doesn't work with Express, AFAIK. See http://tech.groups.yahoo.com/group/flexcoders/message/61470

[flexcoders] Re: QTP plug in?

2007-01-15 Thread chuvakgu
http://www.adobe.com/cfusion/tdrc/index.cfm?loc=en%5Fusproduct=flex download the Flex Automation Package (bottom of the page). Is FDS necessary for this (and Express won't do)?

[flexcoders] Text in a grid?

2007-01-09 Thread chuvakgu
(The grid I mean here is not DataGrid or a flex component; I mean like on a graphing paper). In other words, I want to present a text (like in a text area) with an ability to draw arbitrary vertical lines in it. That's easy - but I want to do it so that they go exactly between characters. Any

[flexcoders] [Inspectable] Function type

2007-01-08 Thread chuvakgu
Hi all, I want to add some [Inspectable] properties that are Functions. I also want to ensure that these are not just any functions, but functions that take arguments of specific types and have certain return type. How would I go about it?

[flexcoders] In closures, referring to enclosing instance if it exists?

2007-01-08 Thread chuvakgu
For example, consider the following: class Foo { private var bar:Function = function():void { // Is there a way to refer to the instance of Foo // here? }; ...

[flexcoders] What's the best approach here (Associative arrays, dynamic classes, etc...)?

2006-12-27 Thread chuvakgu
Hi all, Here's what I am trying to do. I have an object that I get from the server (currently via XmlRpc but that doesn't really matter). It's an Object. I want to convert it into a data structure on the client side for easier manipulation. If I do something liek class Foo { var prop1:String;

[flexcoders] Re: Drag/Drop - Datagrid. Target is off?

2006-12-26 Thread chuvakgu
There's a bug in Flex where the application uses an ApplicationControlBar (possibly other controls, I'm not sure) which causes the hitarea to be inaccurate. Can you point me to more info about this? I think I am hitting this one too... If so, I'll look for a workaround, getting rid of this

[flexcoders] Timing out an XML request?

2006-12-20 Thread chuvakgu
Hi all, Is there any way to tell URLLoader to time out a request after a certain period of time?

[flexcoders] Re: data being dragged

2006-12-13 Thread chuvakgu
This is comun Drag and Drop question very important. How can i know the data being dragged?. How can i add (after the dragdrop) the data being dragged to an array collection? How are you starting the dragging? It's in the dragSource property of the DragEvent you get. DragManager docs provide

[flexcoders] Fixed-length file import component

2006-12-10 Thread chuvakgu
Hi all, I am looking to create something like MS Office wizard for importing fixed-length files, specifically, the part where you can click to draw a line delimiting fields, and move it. I can do, say, a TextArea, and a VRule (the textarea is transparent), or actually do graphics.drawLine, etc.,

[flexcoders] Drawing a line exactly to the dragged proxy

2006-12-10 Thread chuvakgu
Hi all, Let's say I want to drag something and this is for creating an edge in a graph. So what is being dragged, let's say, is a little arrow (an image). What I would like is for there to be a line from the place I started to drag it to the current position of the dragged arrow. I can do it,

[flexcoders] Re: XML-RPC

2006-12-08 Thread chuvakgu
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I am not familiar with XML-RPC, but I suspect that the answer to your question is no. Can you do an ordinary HTTPService call successfully? This: methodauthor.login/method Looks suspicious. It is

[flexcoders] Re: XML-RPC

2006-12-08 Thread chuvakgu
Funny you should ask. http://xmlrpcflash.mattism.com/ is for AS 2. I converted it to AS3, fixed some bugs (maybe introduced new ones :), and it seems to work for me. I was going to seriously clean it up before annoucning, but since you ask, here:

[flexcoders] TextArea as Console: Controlling cursor position and intercepting arrow keys

2006-12-07 Thread chuvakgu
Hi all, How does one control position of the cursor inside a mx:TextArea? What I am really trying to do is create a console out of a TextArea. A user would enter commands at a prompt, and at some point they would be sent to the server for evaluation. I looked for something like this but

[flexcoders] 3 questions: Context menu, graphing component and XmlRpc

2006-11-27 Thread chuvakgu
Hi all, I am new to Flex 2, and I have looked for answers to these but haven't found much. Here they are: 1. Context menu (right-click) - I am looking for a way to kill the actual flash context menu and have my own. Kind of like the one shown at