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

2006-06-10 Thread tonyx_788
que version de FLEX estas usando? da un poco mas de datos para que lo usaran? van a imprimirlo? van a editarlo en excel? para que lo quieres a excel? --- In flexcoders@yahoogroups.com, Mónica Cantillo [EMAIL PROTECTED] wrote: Hola Tengo que hacer las siguientes cosas ... y soy nueva on Flex

RE: [flexcoders] Dumb Newbie Question - Underlined Hyperlinks

2006-06-10 Thread Darren Houle
You can also do something like... a href=http://mysite.com/index.cfm;bu#name#/u/b/a It's really basic, but it works fine and the user gets the point. According to the docs... all that happens by default with links is that the mouse turns to a hand, there's no hover, underline, etc. to let you

[flexcoders] Flex Developer needed for RIA dev Philadelphia area

2006-06-10 Thread mccjobs
Social Networking startup looking for an exceptional and motivated individual capable of creating rich media community applications. Must be fluent in J2EE development environment and one industrial strength RDBMS. Heres our general requirements: Skills • Excellent Java programming

RE: [flexcoders] One last try: Javascript security

2006-06-10 Thread FineLine
Hi Matt, I have just tested this use-network=false option with the command line compiler, still get the same security error in Flash player when I try the call out to _javascript_: SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller

RE: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-10 Thread Paul Williams
Hi Tom, A nice way to do this is to create a master that is an ArrayCollection, and then for each of your filtered lists you use a ListCollectionView. When you create your ListCollectionView you pass your master list in as a constructor parameter (because ArrayCollection implements Ilist). You

[flexcoders] Re: FDB usage

2006-06-10 Thread maxym.hryniv
Does someone can reply??? --- In flexcoders@yahoogroups.com, maxym.hryniv [EMAIL PROTECTED] wrote: No! I'm looking for a GUI, that supports gdb to use it with fdb. --- In flexcoders@yahoogroups.com, Andriy Panas dutchman@ wrote: Hello maxym.hryniv, mh OOps. Sorry, GDB. Are you

[flexcoders] Lastest Flash Player 9 Beta doesn't dsplay beta3 content?

2006-06-10 Thread Carlos Rovira
Hi,I can't use this lastest release due to all my current test and projects doesn't work anymore.I must to uninstall it (FP 9.0.2) and install again FP 9.0.0Is this normal or I'm doing something wrong? Thanks-- ::| Carlos Rovira::| http://www.carlosrovira.com __._,_.___ -- Flexcoders

RE: [flexcoders] Lastest Flash Player 9 Beta doesn't dsplay beta3 content?

2006-06-10 Thread Jason Hawryluk
that's normal the latest version is not setup for flex developement b3 -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Carlos RoviraEnvoyé: samedi 10 juin 2006 13:35À: flexcoders@yahoogroups.comObjet: [flexcoders] Lastest

[flexcoders] ActionScript 2.0 to 3.0 migration

2006-06-10 Thread karthikeyanik
Hi, 1) When compiling an .as interface, we get the following error - Error Code 1157: Interface members may not be declared 'public', 'private', 'protected', or 'internal' Eg: Interface public interface TestInterface { public function test(obj:Object):Boolean;

Re: [flexcoders] ActionScript 2.0 to 3.0 migration

2006-06-10 Thread Abdul Qabiz
public interface TestInterface { function test(obj:Object):Boolean; }From AS3 spec:-1) Interface methods are not public by default, but are added to the public namespace by the implementing method definition.2) Classes that implement an interface method must use the public

Re: [flexcoders] Re: FDB usage

2006-06-10 Thread Abdul Qabiz
Why are you not using FDB only? I mean it's like GDB?Any special reasons, would love to know.-abdulOn 6/10/06, maxym.hryniv [EMAIL PROTECTED] wrote: Does someone can reply??? --- In flexcoders@yahoogroups.com, maxym.hryniv [EMAIL PROTECTED] wrote: No! I'm

Re: [flexcoders] One last try: Javascript security

2006-06-10 Thread Abdul Qabiz
Hey,Can you please post a simple but complete code (Flex + _javascript_), I would like to look at it. Sorry, I am being bit lazy doing all that..-abdulOn 6/10/06, FineLine [EMAIL PROTECTED] wrote: Hi Matt, I have just tested this –use-network=false option

Re: [flexcoders] Re: FDB usage

2006-06-10 Thread Abdul Qabiz
Sorry for my ignorance, I think GDB is command line like FDBIf that is not the case, please ignore.BTW! It's individual's choice, I moved to GUI to command line as I find it better. I hardly use any GUI program for development... - mxmlc- fdb- compc- FlashCommand- ANT- flasm- tail - f (log

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

2006-06-10 Thread Abdul Qabiz
Sorry, can't understand your language. But I am getting what you want to know. How to export data in excel sheet in Flex datagrid?I can suggest two ways:-1) Upload Excel sheet to server, parse it and create data-structure which Flex (ActionScript) can understand. 2) If you want to sync data

Re: [flexcoders] Re: FDB usage

2006-06-10 Thread Mykola Paliyenko
Hi MaxI gave it some thought and I believe it is not that easy to do since you need a syntax analyzer for AS code in order to be able to watch variables and put breakpoints etc. So it is not just about finding any GDB compliant UI debugger and make it use FDB. That is why there are still no

Re: [flexcoders] Re: Help! ( Dynamic URLs for HTTPServices )

2006-06-10 Thread Luís Gustavo Sanabio
Hi All, I really need to load RSS feeds directly, without PHPand FDS Proxies. My server is alreadytoo busy! :-) I did this withmy Flex Application embedded in a DELPHI Application (FlashPlayerControl component). Yeahh. Works perfectly. The users must download a browser (Delphi Application)

Re: [flexcoders] One last try: Javascript security

2006-06-10 Thread Luís Gustavo Sanabio
Hi.. Try set the allowScriptAccess to ALWAYS of the object and embed tags on the HTML page. The default is allowScriptAccess=sameDomain Try set to: allowScriptAccess=always Gustavo __._,_.___ -- Flexcoders Mailing List FAQ:

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

2006-06-10 Thread Luís Gustavo Sanabio
Hi... I'm sorry, but what is NPPlugin? 2006/6/9, drome.dario [EMAIL PROTECTED]: Came on guys!... just a suggestion?... even simple? Yahoo! Groups Sponsor ~-- Everything you need is oneclick away. Make Yahoo! your home

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

2006-06-10 Thread Abdul Qabiz
Check out this link, it talks about how ExternalInterface works in browser. That is, what _javascript_ is embedeed by Flash Player in browser to do serialization/deserilization in _javascript_. http://codinginparadise.org/weblog/2006/02/how-to-speed-up-flash-8s.htmlOn 6/10/06, Luís Gustavo

[flexcoders]

2006-06-10 Thread Luís Gustavo Sanabio
Hi All, I really need to load RSS feeds directly, without PHPand FDS Proxies. My server is alreadytoo busy! :-) I did this withmy Flex Application embedded in a DELPHI Application (FlashPlayerControl component). Yeahh. Works perfectly. The users must download a browser (Delphi Application)

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

2006-06-10 Thread michaellisten
Thanks Jeremy, I'd not seen the flex dev derby page. There are some pretty interesting apps there, a good exposure. Do you (or anyone) have any perspective on how flex compares with .net, re getting work done? .net in total includes in theory all layers including the webservice etc that one might

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

2006-06-10 Thread Tim Hoff
I agree completely with the assessment that Jeremy made concerning Flex's database suitability. Before Flex, I developed web applications primarily with ASP.NET. In my opinion, Flex is a much better choice for UI development. True, .Net includes all layers, but the main drawback is that

Re: [flexcoders]

2006-06-10 Thread Weyert de Boer
It's total unclear what you want to do... As far as I know you are capable to parse rss feeds in Flex or Flash itself without problems. If you are using Flash as the host application, you shouldn't have any problems either. Please explain what you want :) Delphi rocks ;-)

Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-10 Thread Tom Bray
Hi Paul,That's exactly what I was looking for. Thanks for taking the time to supply the sample app! I'm giddy!-TomOn 6/10/06, Paul Williams [EMAIL PROTECTED] wrote: Hi Tom, A nice way to do this is to create a master that is an ArrayCollection, and then for each

[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-10 Thread Tim Hoff
Thanks for your answer Paul. Obviously, I learned as well. :) -TH --- In flexcoders@yahoogroups.com, Tom Bray [EMAIL PROTECTED] wrote: Hi Paul, That's exactly what I was looking for. Thanks for taking the time to supply the sample app! I'm giddy! -Tom On 6/10/06, Paul Williams

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

2006-06-10 Thread michaellisten
Tim, that's great feedback, and also very much what I was hoping to hear. Winforms over the web with data via remoting etc has been closest to what I have been wanting migrate to, whenever that time for the learning materializes for me. Flex seemed a worthy alternative but pricing seemed to put it

Re: [flexcoders] Re: FB2: Uncaught exception in compiler

2006-06-10 Thread Douglas Knudsen
just ran into this PITA! In my case I had a typo in a as class file. I had public var foo:Array(); on accident. no fancy yellow warning fairies eitherjust about two hours of digging...e. DK On 5/4/06, Manish Jethani [EMAIL PROTECTED] wrote: On 5/4/06, bhaq1972 [EMAIL PROTECTED]

[flexcoders] Setting Menu Enable option at run-time

2006-06-10 Thread Wally Randall
I have a large menu with about 100 different nodes and sub-nodes. I am trying to design a means of enabling the menu nodes at run-time rather than hardcoded in the mxml menu application. I envisage having the menu call a ColdFusion CFC to dynamically build the menu menubarXML list with the

Re: [flexcoders]

2006-06-10 Thread Luís Gustavo Sanabio
Hi Abdul. _javascript_ can't load and access contents at other domains. (Permission Denied) Hi Weyert, the problem is that I need to load Public Feeds, at dynamic domains. Flash and Flex can read the feeds only at the same domain of application. It can't load urls at other domains. So, my

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

2006-06-10 Thread Jeremy Lu
one more note (to Tim's post) : aside from Web Service, you can also use flash remoting with .NET as the means of data transmission.we use both products from Macromedia (flash remoting for .NET) and Fluorine (open source flash remoting for .NET) all the time, just have to manually tweak

[flexcoders] Mysterious change of data in ComboBox datasource to undefined

2006-06-10 Thread mgrogero
I used to bind the selectedIndex of the ComboBoxes in my application to a function that determined the correct index to select given an array of options and the data that I want to select. I found this method to be slow and error prone as the selectedIndex function would be called every time the

[flexcoders] How to drag a file into Flash?

2006-06-10 Thread Rick Schmitty
File upload/download is a great leap forward and much appreciated! But there has to be a way to allow Flash to accept a drag/drop from the OS. Just like if you were in Photoshop and you dragged an image to the program. When a swf is played through the browser, is Drag/Drop allowance a browser