Re: [flexcoders] CDT GDB debugger with fdb

2006-06-12 Thread Tom Chiverton
On Friday 09 June 2006 18:09, maxym.hryniv wrote: with flex debugger fdb.exe. Does anyone know how to configure the cdt to work with fdb Have you asked them ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP.

Re: [flexcoders] Convert AJAX to Flex?

2006-06-12 Thread Tom Chiverton
On Friday 09 June 2006 18:37, Carson Hager wrote: We know quite a bit about ThinkCAP as well as Flex. Unfortunately, this is going to be a manual process. There really is no good way to go from Hopefully 90% of the server-side code can be reused though, I guess ? -- Tom Chiverton

Re: [flexcoders] Is it posible to bind this xml to textarea?

2006-06-12 Thread Tom Chiverton
On Friday 09 June 2006 18:43, tonyx_788 wrote: is it posible to bind this kind of xml to a FLEX Textarea? Don't see why not. What's up when you try ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP

Re: [flexcoders] Re: Namespace hell

2006-06-12 Thread Tom Chiverton
On Saturday 10 June 2006 02:05, Ben Clinkinbeard wrote: entries.namespaceDeclarations().toString(); // this returns nothing What's the value of entries.namespaceDeclarations() ? -- Tom Chiverton This email is sent for and on behalf of

[flexcoders] in flex 1.5 highlightColor does NOT work !

2006-06-12 Thread shemeshkale
m using flex 1.5 and trying to change the focus color of a component. not with theme color. for some reason the documented style highlightColor is not working ! is this a bug? any way around it? Yahoo! Groups Sponsor ~-- Everything you need is

[flexcoders] Re: Automated migration to Flex 2

2006-06-12 Thread maxym.hryniv
I just want to add package ... in the beginning of each class| interface, change all Void to void, remove all public on interface methods, etc. If you mean what application am I going to migrate? ask me pls outside the list. --- In flexcoders@yahoogroups.com, Michael Klishin [EMAIL PROTECTED]

[flexcoders] FlexUnit question

2006-06-12 Thread maxym.hryniv
Hi, I'm trying to use for the first time flexUnit for Flex 2. I read Darron Schall article about it http://www.darronschall.com/weblog/ archives/000216.cfm. I'm wondering why we have to write such code in every test case public static function suite():TestSuite { var ts:TestSuite = new

Re: [flexcoders] SimpleXMLEncoder/Decoder Question

2006-06-12 Thread Tom Chiverton
On Saturday 10 June 2006 14:50, maxym.hryniv wrote: Does SimpleXMLEncoder support cross-links?? A what ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered

Re: [flexcoders] How to drag a file into Flash?

2006-06-12 Thread John C. Bland II
I'm not sure if you saw my last post but you can download here: http://www.multidmedia.com/devlabs/. On 6/12/06, Harald Dehn [EMAIL PROTECTED] wrote: Hi, Where could I download rebus? Harry Von: flexcoders@yahoogroups.com

Re: [flexcoders] Plugin to load a RSS feed

2006-06-12 Thread Tom Chiverton
On Saturday 10 June 2006 17:07, Luís Gustavo Sanabio wrote: I thinking about to build a IE and Firefox PLUGIN to load the RSS Feeds and send the data to Flash Player. Have you seen Adobe's Kiwi (and NoteTag demo app) stuff on the labs site ? -- Tom Chiverton

[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-12 Thread drome.dario
Hi People, Finally, I found the problem: The HTML page hosting my flexapp lack the object tag for MSIE, that is, it only had an embed tag. A good flash detection/embeding mechanism was the key. Thanks a lot for those of you that have spend some of your time posting your suggestions. --- In

[flexcoders] Re: Flex vs. .Net for RIA database apps; new to both

2006-06-12 Thread flashorbman
So If you want to use Flex2 with .NET and remoting today, you can't use RemoteObject out of the box, you will have to maually create NetConnection instance and connect/call remote method. This is not quite true with our product - WebORB. We fully support the RPC subsystem of FDS on .NET, so

[flexcoders] Re: ExternalInterface | How to get called from flash inxml flavor?

2006-06-12 Thread drome.dario
Hi Gustavo, NPPlugin is the form of flash that runs under FireFox, Safari and any other browser except MSIE. In MSIE flash is an ActiveX. --- In flexcoders@yahoogroups.com, Luís Gustavo Sanabio [EMAIL PROTECTED] wrote: Hi... I'm sorry, but what is NPPlugin? 2006/6/9, drome.dario [EMAIL

[flexcoders] Re: Using PUT with HTTPService

2006-06-12 Thread dk_flasher
Alright, thanks! Had hoped it would be possible to connect without the use of a proxy. See, I'm writing a WebDAV sort of application and would very much like to avoid the extra traffic through my server. Is it possible direct PUT requests will be supported in an upcoming Flex release or is

RE: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-12 Thread Daniel Tuppeny
Sometime "the right way" is overrated :-) Scale works great, though I have to offset the position to account for it. Not awesome, but hey, that's what "//Hack: " comments are for! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely GreenfieldSent: 09 June 2006

[flexcoders] Re: accessing HttpService in Beta 3

2006-06-12 Thread srioviyan_p
Hi i have highlighted on ur code.i think it may correct. anyway try it. mx:State name=results mx:AddChild position=lastChild mx:Panel layout=absolute title=Prospects Found id=panel1 mx:DataGrid id=ProspectList

[flexcoders] Re: Namespace hell

2006-06-12 Thread ben.clinkinbeard
What's the value of entries.namespaceDeclarations() ? -- Tom Chiverton OK, now I am even more confused :). Turns out that for my simple example (defining a small XML var inside the MXML file), the default namespace is in fact included in the array returned by namespaceDeclarations().

Re: [flexcoders] Re: Flex 1/5 : still fail to lock input...

2006-06-12 Thread Antoine Malpel
This exactly the same code I posted, but thanks anyway ? Using a modal window ? well that's exactly what I am triyng to do, I create some popUp but when the popUp is on creation stage, well the "stupide" user can still click on the button that create the popUp, so I cant enter on a deadlock

[flexcoders] Re: flex2b3 - keydown re-visted

2006-06-12 Thread bhaq1972
thanks Matt. (i'm actually sending this response again) --- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: You can add the listener to the stage object: stage.addEventListener(KeyboardEvent.KEY_DOWN, keydown_handler); Or you can set the focus on the app in init():

Re: [flexcoders] Re: Flex 1/5 : still fail to lock input...

2006-06-12 Thread Tom Chiverton
On Monday 12 June 2006 14:42, Antoine Malpel wrote: create some popUp but when the popUp is on creation stage, well the stupide user can still click on the button that create the popUp, so I You didn't create a model one then. ps : I can't find the popupWindow method on the flex

[flexcoders] Re: beta3- Datagrid gurus?

2006-06-12 Thread sufibaba
Thanks Jeremy for the Tip. Tim --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: is this FB2 ? (there sould be no setValue() method in FB2). as to the question, you don't necessaryly have to put a radio group in each row to achive what you want. simply place a

RE: [flexcoders] Re: Exportar DataGrid(flex) a Excel

2006-06-12 Thread Tracy Spratt
Another very simple solution is to build an HTML table out of the dataGrids dataProvider, put that HTML onto the Windows clipboard, and paste it into Excel. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Saturday, June 10,

RE: [flexcoders] Re: Using PUT with HTTPService

2006-06-12 Thread Matt Chotin
It would require Player support. You can file the request at http://www.adobe.com/go/wish. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dk_flasher Sent: Monday, June 12, 2006 1:09 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: flex2b3 - flexbuilder codegen errors

2006-06-12 Thread bhaq1972
in some cases its easy becuase the compiler identifies a file (eventhough i believe there isn't a problem). Otherwise, it been trial and error, adding bits of code to my project at a slugs pace. in one scenario, i had 3 actionscript files to include into my main applcation file. I was able to

[flexcoders] ByteArray Compress / uncompress

2006-06-12 Thread Luís Gustavo Sanabio
Hi All, I don't understand the Compress and Uncompress methods of ByteArray. I need to compress some data and store it. I use compress method of ByteArray. Ok. It's fine!! But now I need to load the compressed data and decompress it. It's not work!! Because uncompress method works only

[flexcoders] Bug confirmation please ? Felx 2.0 b3

2006-06-12 Thread sourcecoderia
This below code returns the wrong index for a tree using e4x xml data as a provider wrapped into a xmlcollection. I've been fighting with tree drag and drop off and on for a bit now, can someone please confirm this is a bug or am I just doing things wrong. I've posted about this before but it

[flexcoders] Re: Cairngorm createPopUp in a command

2006-06-12 Thread dirtmediaworld
Tim-This is how I integrated a popup into a Cairngorm application. I'm not an expert by any means, so use caution if you follow my lead. In my application I click a "Send It" button that creates a popup window with a form in it. The following is the bones of how I do it with Cairngorm.When I

[flexcoders] show/hide panel borders (F2b3)

2006-06-12 Thread Tom Fitzpatrick
I have a panel with corner radius set to 10. I'm trying to turn its border on and off programatically, toggling the border styles between solid and none, thickness between 2 and 0. The toggling is working fine, but when I hide the border after showing it once, I lose the panel's curved corner

[flexcoders] Re: flex2b3 - keydown re-visted

2006-06-12 Thread bhaq1972
thanks Matt, thats seems to work, but i'll need to do more tests. --- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: You can add the listener to the stage object: stage.addEventListener(KeyboardEvent.KEY_DOWN, keydown_handler); Or you can set the focus on the app in

[flexcoders] DataGrid itemRenderer listData is null

2006-06-12 Thread Brendan Meutzner
Hi, I can't seem to get an itemRenderer to work properly with my DataGrid. I am trying to access the listData object to do some conditionals in my renderer (eg. show a specific image based on row data). However, my listData property is not getting set properly. Here's the renderer: ?xml

Re: [flexcoders] show/hide panel borders (F2b3)

2006-06-12 Thread Jim Robson
Tom, Instead of removing the border, which seems to confuse the player, could you just toggle the border's color? When you want the border to disappear, change its color to the same color as the panel's background. Then change the color back when you want the border to be visible. Will that

[flexcoders] HTTP Service, XML response and latin characters

2006-06-12 Thread Pablo Apanasionek
 How should I set the HTTP Service tag/XML fileto avoid the replacing of any of this chars [ á, é, í, ó, ú, ñ ] for a [ □ - white square] when I'm returning an XML as a result of an HTTP request? Thanks in advance! -- Pablo Gustavo Apanasionek __._,_.___ -- Flexcoders

[flexcoders] Flex 2b3 DataGridColumn dependency error

2006-06-12 Thread porsoc
Has anybody solved the following error message with data grid columns. Error: Unable to resolve dependency on _DataGridColumn3_c. Any ideas on how to resolve this? DataGrid in question mx:DataGrid id=linksGrid dataProvider={linksDataObject} mx:columns mx:DataGridColumn headerText=Linked

[flexcoders] Applying a theme in Flex 2.0

2006-06-12 Thread Angela
I've been searching through 100s of messages on here trying to find if there is an answer in this forum to applying a theme (swc) to an mxml file in Flex 2.0. If this is a repeat question please forgive me. I have been able to apply a theme successfully through the compiler mxmlc -theme

Re: [flexcoders] show/hide panel borders (F2b3)

2006-06-12 Thread Tom Fitzpatrick
Yes - I tried that. The problem is that the border, even when set to the panel's background color, interrupts it visually - overlaying the panel header, for example. It seems that what I need is to redraw or refresh the panel after the border is removed to restore the original look. I just

Re: [flexcoders] FlexUnit question

2006-06-12 Thread Andriy Panas
Hi Max, Monday, June 12, 2006, 1:15:13 PM, you wrote: mh ts.addTest( new TemperatureConverterTest( testToFarenheight ) ); mh ts.addTest( new TemperatureConverterTest( testToCelsius ) ); I think, it is just a naming convention selected (which can be overriden by anybody, why not) in Adobe to

[flexcoders] Flex SMS Voting Application

2006-06-12 Thread k631go2
I have read about the Flex/ColdFusion SMS voting application George Riley created for the 2004 MAX conference and I participated in the one used to do SMS voting at this year's conference. Has anyone written up how those were done? I would like to modify one of those to create my own voting

Re: [flexcoders] Convert AJAX to Flex?

2006-06-12 Thread John C. Bland II
Hopefully 100% of the server-side is reuseable (not going against Tom...just a hope). If the Ajax site/app is done right then you will only have to change your view (front-end). In this case, build the UI with Flex and connect it to your backend...done! It SHOULDN'T be a big issue but it

Re: [flexcoders] FlexUnit question

2006-06-12 Thread Johannes Nel
what he is asking is wether naming a function starting with test will automatically add the test to be run as it does in most unit test frameworks. i know asunit (for as3 as well) does this.On 6/12/06, Andriy Panas [EMAIL PROTECTED] wrote: Hi Max,Monday, June 12, 2006, 1:15:13 PM, you

Re: [flexcoders] show/hide panel borders (F2b3)

2006-06-12 Thread Jim Robson
Hey Tom, I can't reproduce your issue. Using the code below, the border toggles off and on, and the panel retains its rounded corners. Perhaps I misunderstood the nature of your question? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] [Flex2Beta3] loading the FlexStore

2006-06-12 Thread maxbow01
Hi, I'd like to load a SWF file and i'm having problems : I use the SWFLoader component. Let's see my source code (flexstore.swf is the Adobe file) ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:SWFLoader height=1000 width=1000

[flexcoders] swfLoader

2006-06-12 Thread teh_pako
I've been trying to get a video in a swf file to play using the swfLoader, but it doesn't play... I can only see the control bar when it's on Flex and also when i test it on my browser... anyone know what's going on or experienced something similar? Yahoo! Groups

[flexcoders] Re: SimpleXMLEncoder/Decoder Question

2006-06-12 Thread maxym.hryniv
f.ex if I have object a that references object b and b references object a. Can I use SimpleXMLEncoder/Decoder to serialize/deserialize obj a??? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 10 June 2006 14:50, maxym.hryniv wrote: Does

[flexcoders] Debugging Flex to ASP.Net Web Services.

2006-06-12 Thread Adam R. B. Jack
I am using the latest FlexBuilder (2.0 Beta 3) and trying to send a bean to/from a Microsoft Web Service. I've had some success, but sometimes [when I change code, I feel] it fails to serialize/deserialize. Has anybody found a good tool to help debug this environment (that runs either side?)

Re: [flexcoders] show/hide panel borders (F2b3)

2006-06-12 Thread Luís Gustavo Sanabio
I have the same problem. I can't solved it. 2006/6/12, Jim Robson [EMAIL PROTECTED]: Tom,Instead of removing the border, which seems to confuse theplayer, could you just toggle the border's color? When you want the border to disappear, change its color to the samecolor as the panel's

[flexcoders] Link Control not working!!

2006-06-12 Thread Chaitu Vadlapatla
Hey All, I know Flex was supposed to have a Link control but it wont work. mx:Link. I even saw a thread where it was said it was a bug and they will fix it. Does anybody know how long this will be before its good? I am really in need of this control for my project. Could somebody help

[flexcoders] HTTP Service, XML response and latin characters

2006-06-12 Thread Pablo Apanasionek
 How should I set the HTTP Service tag/XML fileto avoid the replacing of any of this chars [ á, é, í, ó, ú, ñ ] for a [ □ - white square] when I'm returning an XML as a result of an HTTP request? Thanks in advance! -- Pablo Gustavo Apanasionek __._,_.___ -- Flexcoders

Re: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-12 Thread Michael Schmalle
Ha, Ely is the engineer and if there is a //HACK , he woudl know it ;-) Peace, MikeOn 6/12/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: Sometime the right way is overrated :-) Scale works great, though I have to offset the position to account for it. Not

[flexcoders] Re: Link Control not working!!

2006-06-12 Thread dadrobson
Chaitu: What version of Flex are you using? 1.5 had a Link control, but it appears to have been replaced by the LinkButton control in Flex 2.0. -Jim --- In flexcoders@yahoogroups.com, Chaitu Vadlapatla [EMAIL PROTECTED] wrote: Hey All, I know Flex was supposed to have a Link control but

[flexcoders] Creating a pop down panel

2006-06-12 Thread Jeremy Rottman
I just found Anatole Tartakovsky's derby entry, and I am trying to figure out how he made his pop down panel on layout, sort, group, and filter combo boxes. Anyone have an idea how this was done? http://derby.faratasystems.com/fxReporter/demo/demo.html Yahoo!

Re: [flexcoders] Re: Namespace hell

2006-06-12 Thread Tom Chiverton
On Monday 12 June 2006 14:30, ben.clinkinbeard wrote: x2.namespaceDeclarations().length; // returns 0 Right... because it's not an array, by the looks of things. If you dump 'x2', is it valid XML ? -- Tom Chiverton This email is sent for

[flexcoders] Re: flex2b3 - flexbuilder codegen errors

2006-06-12 Thread bhaq1972
trial and errornot very sophisticated. i also found that sometimes rearranging code did the trick. for example i had 3 mx:Script source= / tags in my main app. depending on the sequence i declared them, a codegen is/isn't generated. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL

[flexcoders] Re: Cairngorm data flow chart

2006-06-12 Thread lownlazy000
Thanks :) created in Visio 2003 Feel free to give constructive commentry feedback too. --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Nice! What did you use to make the flowchart and pdf? Yahoo! Groups Sponsor

[flexcoders] Re: HTTP Service, XML response and latin characters

2006-06-12 Thread drome.dario
Hi Pablo, The characters you indicate seem to be the lowercase-tilde spanish vowels plus 'ñ' and they also seem to be UTF-8 encoded, that is, if your xml has a processing instruction indicating that encoding, those chars should appear as áéíóúñ. Make a double check to your xml and its encoding

Re: [flexcoders] Link Control not working!!

2006-06-12 Thread Michael Schmalle
Hi Try mx:LinkButton / Peace, MikeOn 6/12/06, Chaitu Vadlapatla [EMAIL PROTECTED] wrote: Hey All, I know Flex was supposed to have a "Link" control but it wont work. mx:Link. I even saw a thread where it was said it was a bug and they will fix it.

[flexcoders] Searching through an array collection

2006-06-12 Thread ekokurtz
I'm trying to figure out the syntax to check for the existence of a value in an array (that's inside an array collection) to see if I need to add a new entry or ignore (to get an array of unique entries). I had originally tried using array.indexOf but that will only work with simple arrays.

[flexcoders] Full Featured Chat with Flex Data Services

2006-06-12 Thread Aldo Bucchi
hi all, Ok... old question. just trying to explore the different approaches to do this. How would you go about building a full featured chat application with FDS? ( Multiuser, multiroom, with user/room lists, states, etc ) Data Management? Plain Messaging? ...? Thx, Aldo -- : Aldo Bucchi