Re: [flexcoders] Opening popups while in full-sceen mode would crash the browser

2009-07-14 Thread Julien Nicoulaud
I noticed several bugs while trying to setup my application for full screen mode: - Text fields not editable - keyboard events not dispatched - IFrame stay blank - ProgressBar crashing the browser (I guess this is the same issue as the one you describe) - Drag and drop severe performance

Re: [flexcoders] Re: Flex logging

2009-07-14 Thread Julien Nicoulaud
Flex provides a real logging API, spare you some efforts :) http://livedocs.adobe.com/flex/3/html/help.html?content=logging_09.html 2009/7/14 valdhor valdhorli...@embarqmail.com Shared Objects? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, vladakg85 vladak...@... wrote:

Re: [flexcoders] Drag n Drop from one Flex application to another Flex application.

2009-07-14 Thread Julien Nicoulaud
I guess it is not possible, because between the two applications you should have access to the system drag and drop manager. By the way, you can do it in an air application. (by the way, hi everyone, i'm new :) 2009/7/13 avibhujade avibhuj...@yahoo.com Hi, I have two flex applications and

Re: [flexcoders] Re: create class on the fly

2009-07-14 Thread Julien Nicoulaud
Interesting topic ! I would like to go further on the dynamic class manipulations: Does anybody see a way to list all classes from a package that implement a given Interface ? Well, the part that implement a given Interface is easy to do using isPrototypeOf(), but the list all classes from a

Re: [flexcoders] Eclipse WTP and FlexBuilder 3

2009-07-15 Thread Julien Nicoulaud
We use WTP with Flex Builder 3 for our Flex projects. What kind of issue do you encounter ? 2009/7/15 simonjpalmer simonjpal...@yahoo.com Has anyone managed to get WTP working in FlexBuilder 3, or to get FlexBuilder 3 working in Eclipse with WTP also in play? Are there any good resources

Re: [flexcoders] Re: Eclipse WTP and FlexBuilder 3

2009-07-16 Thread Julien Nicoulaud
Hi. Eclipse 3.4+ (even Eclipse 3.5) can work with Flex Builder 3. You just have to patch some jars in the plugins directory of Eclipse: http://www.tekool.net/blog/2008/06/28/flex-builder-3-plugin-dont-work-with-eclipse-34/ I use Eclipse 3.4.1 + WST 3.0.2 + Flex builder 3 on Linux/Windows.

Re: [flexcoders] Hi, how to highlight some lines in a document

2009-07-16 Thread Julien Nicoulaud
WHat do you mean by document ? In which component do you want to highlight ? 2009/7/16 Satish Chowdary chinnu_...@yahoo.co.in Hi All, i want to know that how to highlight somes lines in a document when a event(button click) is fired if u any one have idea about this... please help me

[flexcoders] ModuleLoader does not really unload ?

2009-07-17 Thread Julien Nicoulaud
Hi everyone. I have an application (a window manager) that loads modules using ModuleLoader. When I unload a module, it seems it is not properly unloaded: if i setup a Timer that shows an Alert every X seconds in the module, the Alert still shows every X seconds after the module is unloaded. Any

Re: [flexcoders] Re: ModuleLoader does not really unload ?

2009-07-17 Thread Julien Nicoulaud
@yahoogroups.com flexcoders%40yahoogroups.com, Julien Nicoulaud primo411@ wrote: Hi everyone. I have an application (a window manager) that loads modules using ModuleLoader. When I unload a module, it seems it is not properly unloaded: if i setup a Timer that shows an Alert every X

Re: [flexcoders] Re: Dumb overview questions -- newbie

2009-07-17 Thread Julien Nicoulaud
You can separe view from model and logic, if you use programming patterns the right way. For example, I use Cairngorm, and I add a Presentation Model layer to have a total separation between the application layers, especially VIew and Model. You can find lots of documentation and articles about

Re: [flexcoders] How to control change focus when editing in datagrid

2009-07-18 Thread Julien Nicoulaud
You can intercept the KeyboardEvent in your cell item editor, and set the edited item position manually with something like: DataGrid grid = this.owner as DataGrid; grid.editedItemPosition = {rowIndex:grid.editedItemPosition.rowIndex, columnIndex:grid.editedItemPosition.columnIndex+1};

Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-19 Thread Julien Nicoulaud
Good initiative ;) Julien Nicoulaud http://flex.aixo.fr 2009/7/19 nospam allowed nos...@advancedonsite.com http://bugs.adobe.com/jira/browse/FB-19053 For those of you using the Flex Builder on Linux please comment that you wish to see it stay on Linux.

Re: [flexcoders] Re: ModuleLoader does not really unload ?

2009-07-20 Thread Julien Nicoulaud
modules are loaded and unloaded. Lines begin with [SWF] when loaded and [Unload SWF] when unloaded - no need to trace anything. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Julien Nicoulaud primo...@... wrote: Ok, I had heard of that: objects are not deleted by the garbage

Re: [flexcoders] Re: Event's cancelable

2009-07-22 Thread Julien Nicoulaud
You can cancel an event with myEvent.preventDefault(). This is often useful. For example, KeyboardEvents are not cancelable, this is an important thing to know when you override text inputs default behaviour. Julien Nicoulaud http://flex.aixo.fr 2009/7/22 postwick p...@ubeek.com Events

Re: [flexcoders] How to debug when I have IE crash?

2009-07-26 Thread Julien Nicoulaud
Use the Flash player debug version and follow the instructions: http://livedocs.adobe.com/flex/3/html/help.html?content=logging_04.html 2009/7/26 Ronen Naor ronen.f...@gmail.com Hi,We are having quite a lot of IE crashes when running our Flex 3 applications. Usually the clients use IE 7 or

Re: [flexcoders] this group isn't very good

2009-08-03 Thread Julien Nicoulaud
Moving to Google groups would be a great idea... 2009/8/3 Gregor Kiddie gkid...@inpses.co.uk Can I suggest the searchcoders app? http://labs.searchcoders.com/dashboard/demo/ Makes searching through the archives much easier. Gk. *Gregor Kiddie* Senior Developer *INPS* Tel:

[flexcoders] XMLEncoder and xsd:choice

2009-08-06 Thread Julien Nicoulaud
Hi, I'm trying to do ActionScript/XML binding, ie generate typed XML from complex actionscript objects. The mapping is realised with a XSD passed to the XMLEncoder. I followed this example: http://blog.misprintt.net/?p=192 It works fine, except in this case: I have an ArrayCollection, that is

[flexcoders] Both Flex 3 4 compatible implementation

2009-11-17 Thread Julien Nicoulaud
in Flex 4, and we should use FlexGlobals.topLevelApplication as spark.components.Application. I really don't want to create and maintain a Flex 4 branch only for this... Does anyone see how to get this URL in a way that would be both Flex 3 and Flex 4 compatible ? Cheers, Julien Nicoulaud

Re: [flexcoders] flex-iframe (resize panel container based on html doc height)

2010-01-15 Thread Julien Nicoulaud
Those examples don't work ? http://flex-iframe.googlecode.com/svn/trunk/examples/build/SimpleHtml/SimpleHtml.html http://flex-iframe.googlecode.com/svn/trunk/examples/build/Dashboard/dashboardsample.html http://flex-iframe.googlecode.com/svn/trunk/examples/build/IFrameDemo/IFrameDemo.html

Re: [flexcoders] Eclipse Checkstyle Plugin for Flex Builder?

2010-03-05 Thread Julien Nicoulaud
You may find this useful: http://stackoverflow.com/questions/462770/checkstyle-for-actionscript-flex 2010/3/5 Nini7016 nahloulaha...@hotmail.com Hello, I would like to know if you have found a solution for your problem ? Did you find anyting equivalent to Checkstyle for Java For

Re: [flexcoders] Cloud computing with Flex

2010-03-09 Thread Julien Nicoulaud
Unless your Flash Player is running on a grid of cumputers :) (may be it crashes less) 2010/3/9 Fotis Chatzinikos fotis.chatzini...@gmail.com Yes it is possible but irrelevant to flex your backend must be able to work with the cloud (tomcat, lamp, whatever you are using...)not your front

Re: [flexcoders] Flash Builder Subversive

2010-03-25 Thread Julien Nicoulaud
Of course, Flash Builder is just an Eclipse plugin. I use it with Subversive and many other Eclipse plugins without any conflict. 2010/3/25 Richard Rodseth rrods...@gmail.com I'm referring to the Subversion Eclipse plug-in. Has anyone installed it in Flash Builder? I found a blog post about

[flexcoders] Flash player debug and Linux

2010-05-14 Thread Julien Nicoulaud
Hi all, just to say I started a small project that aims at making the use of Flash Player on Linux easier, for example installing the beta/debugger/standalone versions of the Flash Player + other small things. If anyone is interested in helping (for example making it compatible with other

Re: [flexcoders] Flash player debug and Linux

2010-05-14 Thread Julien Nicoulaud
Mhh, I realized I packaged only for Lucid Lynx. Until I find a better solution, you can change karmic into lucid in /etc/apt/sources.list.d/julien-nicoulaud-flash-utils-lucid.list, to have this: deb http://ppa.launchpad.net/julien-nicoulaud/flash-utils/ubuntu lucid main or directly download

Re: [flexcoders] Flash player debug and Linux

2010-05-15 Thread Julien Nicoulaud
The joys of upgrading :) About the packaging, it is no more published in my personal PPA, now it is in ppa:flash-utils/ppa (Installation instructions updated). It is now distributed for Jaunty,Karmic,Lucid and Maverick. 2010/5/15 Oleg Sivokon olegsivo...@gmail.com Quite brilliantly after I

Re: [flexcoders] Detecting Browser Re-Size

2010-05-25 Thread Julien Nicoulaud
Hi, we had this issue in flex-iframe and solved it, may you can take inspiration: http://code.google.com/p/flex-iframe/source/browse/trunk/library/src/com/google/code/flexiframe/IFrame.as#1167