Re: [Flashcoders] AS3 flash is treating static function call as property?

2008-10-14 Thread Cédric Tabin
Hello, Didn't you forget the 'public' before class ? :) Regards, Cedric On Tue, Oct 14, 2008 at 4:05 PM, Allandt Bik-Elliott (Receptacle) [EMAIL PROTECTED] wrote: hey guys quick question for you as3 coders: i have an old as2 class which i've converted to as3 that checks to see where the

Re: [Flashcoders] TextField - autoSize

2008-10-10 Thread Cédric Tabin
Hello, You may put a width (just uncomment your line) or set the multiline attribute to false in order to see your text. I think otherwise your TextField stays at width=0 and you don't see anything. Regards Cedric On Fri, Oct 10, 2008 at 3:49 PM, Karim Beyrouti [EMAIL PROTECTED] wrote: Hi

Re: [Flashcoders] Interfaces and private methods ...

2008-08-04 Thread Cédric Tabin
Hello, You cannot force a class to implement a private method. And that would be totally useless... The target of an interface is to define a set of methods that are accessible by any classes = private, internal and protected methods are too restricted. What do you want to do ? Regards, Cedric

Re: [Flashcoders] preloader problem - browser cache

2008-07-05 Thread Cédric Tabin
Hello, mmmh not really sure there is no way... You can use the loaderInfo.bytesLoaded and bytesTotal to estimate that. For example, on the first frame you can simply do : if (loaderInfo.bytesTotal == loaderInfo.bytesLoaded) { //the swf is in the cache } Logically, if the swf is in the cache,

[Flashcoders] Masapi 1.5

2008-07-02 Thread Cédric Tabin
Hello guys :) I just want to announce that my massive download api masapihttp://masapi.googlecode.comis now at version 1.5 which has great improvments ! You can see the updates here http://code.google.com/p/masapi/wiki/From11to15. Some feedback would be welcomed ! Thanks best regards, Cedric

Re: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread Cédric Tabin
Hello, Check that your server use's PHP 5.2.5 ! It's written into the documentation that amfphp won't work if a lower version is used... Regards, Cedric On Sat, Apr 26, 2008 at 10:24 PM, chas warn [EMAIL PROTECTED] wrote: Hello ... I'd appreciate any help on this issue.Carlos 1. I can

Re: [Flashcoders] Math question

2008-04-24 Thread Cédric Tabin
Hello, Which results do you want to have = 25-50-75 or 25 - 50 - 50 ? In the first case : f(x) = (x/10)+25; In the second cas : f(x) = (x/10)+25 if x 250 else 50 Regards, Cedric On Thu, Apr 24, 2008 at 10:41 PM, Dwayne Neckles [EMAIL PROTECTED] wrote: How to go from one number to another..

Re: [Flashcoders] Uploading Image Displaying in Flash [AS3]

2008-04-06 Thread Cédric Tabin
Hi Stuart, Once your ASP file has retrieved the uploaded image, then it can simply display it as binary. The URLLoader object that you use after that will retrieve a BINARY data that you can load into a Loader instance :) How do you proceed to upload your picture for now ? Regards, Cedric On

Re: [Flashcoders] Uploading Image Displaying in Flash [AS3]

2008-04-06 Thread Cédric Tabin
the XML file? SM - Original Message - From: Cédric Tabin To: Flash Coders List Sent: Sunday, April 06, 2008 5:06 PM Subject: Re: [Flashcoders] Uploading Image Displaying in Flash [AS3] Hi Stuart, Once your ASP file has retrieved the uploaded image, then it can simply

[Flashcoders] masapi - Massive Loading API

2008-03-22 Thread Cédric Tabin
Hello :) I just want to promote my little Massive Loading API called masapi : http://masapi.googlecode.com ! It has been for now huge tested and works very well. Eventually if some of you can give me some feedback, it would be great :) I'm currently working on some more advanced tutorials, so if

Re: [Flashcoders] ASDocDesktop - Easy documentation generation

2008-03-06 Thread Cédric Tabin
Sent: Thursday, March 06, 2008 10:28 AM Subject: Re: [Flashcoders] ASDocDesktop - Easy documentation generation I did something to improve asdoc, too. :) It's in AIR. http://shang-liang.com/blog/dita-a-asdoc-gui/ On Wed, Mar 5, 2008 at 6:20 AM, Cédric Tabin [EMAIL PROTECTED] wrote: Hello

[Flashcoders] ASDocDesktop - Easy documentation generation

2008-03-04 Thread Cédric Tabin
Hello guys, I just developed a little application to easly generate the AS documentation of a project. You can find it herehttp://www.astorm.ch/blog/blogFiles/ASDocDesktop_bundle.zip(or on my blog http://www.astorm.ch/blog - FR). I'd like to have maybe some return about it ;) I tried to take out

Re: [Flashcoders] over-ride trace()

2008-02-21 Thread Cédric Tabin
Hi Andrew, We already tried that on Mediabox, but it seems there is no way to override this function :( You should just use a Debug class that uses a TextField for the output... Regards, Cedric On Thu, Feb 21, 2008 at 6:33 PM, Andrew Sinning [EMAIL PROTECTED] wrote: Is it possible to

Re: [Flashcoders] over-ride trace()

2008-02-21 Thread Cédric Tabin
You also can just take a look to this firefox plugin : FlashTracerhttps://addons.mozilla.org/en-US/firefox/addon/3469! Regards, Cedric On Thu, Feb 21, 2008 at 6:51 PM, Bob Wohl [EMAIL PROTECTED] wrote: Just create a text field and use it for your output. my_txt.text+= myVar: +myVar+\n

Re: [Flashcoders] AS3 Api writing

2008-02-13 Thread Cédric Tabin
Hi Sidney, What's the goal of your API ? It is only for your private use or you plan to make it OpenSource ? You may have different constraints that comes depending on that (I mean). I'd say, a good API is a useful API (and also well documented) :) Regards, Cedric On Feb 13, 2008 5:52 PM,

Re: [Flashcoders] scroll bars and live search

2008-01-25 Thread Cédric Tabin
Hello, Some months ago, I devlopped a ScrollBar API (AS2 only !) that you can find here : http://wiki.media-box.net/tutoriaux/flash/scrollbar. The page is in french but all the documentation code is in english :) I didn't work with the v3 components so, I can't help you more :( Regards, Cedric