[flexcoders] Re: Determining the idle state of a flex application

2007-03-03 Thread julien castelain
Hi Rick, Maybe i'm wrong but i'd probably use a Timer to handle this time of behavior. --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: Does anyone have any suggestions for monitoring idleness of a Flex application? The way my app works, pretty much any request to

[flexcoders] Another data binding question

2007-03-01 Thread julien castelain
Hi list, I have a DataGrid in my application that gets populated from an XML file. Displaying the data in the grid 'as text' works fine, but I wanted to use an item renderer, as soon as I do this I get this warning : warning: unable to bind to property 'icon' on class 'XML' (class is not an

Re: [flexcoders] flash cookie

2007-02-28 Thread julien castelain
hi thierry maybe you could use a shared object to store what's in the cookie julien On 2/27/07, thierrybertossa [EMAIL PROTECTED] wrote: Is it possible to store a cookie (LSO) from a domain www.x.com and then access this cookie from a .swf played outside internet explorer or mozilla (in

[flexcoders] Data binding warning

2007-02-22 Thread julien castelain
Hi list, I have a model object in my flex application that has a public connected (Boolean) property like this: public class Model { [Bindable] public var connected:Boolean = false; ... } In my mxml file i have an instance of that model: [Bindable] private var _model:Model =

Re: [flexcoders] Data binding warning

2007-02-22 Thread julien castelain
On 2/22/07, julien castelain [EMAIL PROTECTED] wrote: Hi list, I have a model object in my flex application that has a public connected (Boolean) property like this: public class Model { [Bindable] public var connected:Boolean = false; ... } In my mxml file i have an instance

[flexcoders] Getting notified when a user 'leaves/quits' the application

2007-02-16 Thread julien castelain
Hi all, I was wondering if there was a way to be notified when the user leaves or quits the application using AS3. Thanks.

Re: [flexcoders] Re: Getting notified when a user 'leaves/quits' the application

2007-02-16 Thread julien castelain
if you are just wanting to save a state. I'd play around with deactivate and see when it fires. The javascript will probably be the best route however. pd --- In flexcoders@yahoogroups.com, julien castelain [EMAIL PROTECTED] wrote: Hi all, I was wondering if there was a way to be notified

Re: [flexcoders] Re: Flash Player 9 Beta Available

2006-10-27 Thread julien castelain
you could use the SciTE editor, i works well on my linux boxen i updated the .as syntax files and put them here http://punkscum.org/files/misc/scite_as3_mxml.zip but you could also use VI ciao On 10/27/06, Federico Ferri [EMAIL PROTECTED] wrote: I don't need wysiwyg, but how can i get

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread julien castelain
fullscreen anything :) On 10/19/06, Johannes Nel [EMAIL PROTECTED] wrote: Anyone knows what is that about?fullscreen video On 10/19/06, Rogerio Gonzalez [EMAIL PROTECTED] wrote: Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone knows

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread julien castelain
Hi Joost, There are nice sampleson the Adobe site http://www.adobe.com/devnet/flex/index.html?tab:samples=1#adobesamples ciao On 10/20/06, Joost Saanen [EMAIL PROTECTED] wrote: Are there any complete sample sites where the source is free? I would like to know how I can setup a complete

Re: [flexcoders] Custom validator example from Help not working?

2006-10-19 Thread julien castelain
Hi Jonas, There's a great quickstart on Validators http://www.adobe.com/devnet/flex/quickstart/validating_data/ Enjoy :) On 10/19/06, Jonas Windey [EMAIL PROTECTED] wrote: Hi,I need to validate multiple fields, and I saw the help contained an examplefor validating multiple fields.You

Re: [flexcoders] Button Click

2006-10-19 Thread julien castelain
just a thought...maybe wrong though you could call the click event handler of that button and pass null as the argument private function onCreationComplete(event:FlexEvent):void { myButton.addEventListener(MouseEvent.CLICK, onClick); onClick(null); } private function

Re: [flexcoders] log console

2006-09-19 Thread julien castelain
i use SOS , it's really cool :)On 9/19/06, Anatole Tartakovsky [EMAIL PROTECTED] wrote: That productwas severely updated - I believed the version on ajaxmaker predates Flex release one as you could of guessed based on the name ;-).Release version is posted on

Re: [flexcoders] Accessing Component in the class

2006-09-04 Thread julien castelain
hi viku , i hope i'm not saying anything wrong since i'm also starting with flex but, if you have this in your mxml file ... mx:Button id=myButton / ... you should be able to access it in your as file like this, first declare it as a public variable in your class ... public var

Re: [flexcoders] MXML components in ActionScript

2006-08-22 Thread julien castelain
hi Rohan, This should help you http://aralbalkan.com/691 hf:) On 8/22/06, tinywhistles [EMAIL PROTECTED] wrote: Hi I am trying to access MXML components insideAS files. Like I have an MXML file where I have defined a panel with an ID, say loginPanel. What's required is that in an AS

Re: [flexcoders] mx:Button but without the border

2006-08-22 Thread julien castelain
hi gunther,maybe you could subclass SimpleButton, and use a Loader to for your imagejust a thought ...On 8/22/06, Gunther [EMAIL PROTECTED] wrote: How do you / what is the best way to make a button with an image or a .swf without having the button border ?

[flexcoders] Getting started with Cairngorm

2006-08-20 Thread julien castelain
hi list, i'm trying to use Cairngorm in a flex project (1st attempt), i have a ModelLocator class that implements the com.adobe.cairngorm.model.ModelLocator interface, my ModelLocator class is in a package (org.something.myapp.model), each time i try to use it i get this error Circular type