[Flashcoders] bandwidth detector.

2006-11-06 Thread hbruyere
Hi, Does anybody have advice to do a simple bandwidth Detector" (Without using any specific server - i.e Flash communication Server.) I found this: http://www.sonify.org/home/feature/remixology/019_bandwidthdetection/page2.h tml but was wondering if nothing "better" has been done ?

RE: [Flashcoders] a swf asking itself : whereAmI ?

2006-07-06 Thread hbruyere
Thanks a lot ! Hugues. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks | BLITZ Sent: July 6, 2006 8:24 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] a swf asking itself : whereAmI ? >From the Flash Help panel: _url (MovieClip._

[Flashcoders] a swf asking itself : whereAmI ?

2006-07-06 Thread hbruyere
Hi, How can a swf know its own path/position on the server ? Could it be done with only AS, or do it need some php . Thanks, Hugues ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chatt

[Flashcoders] Video capture

2006-04-29 Thread hbruyere
Hi, I have to be able to turn on and off my webcam. I mean to be able with a simple check box to start capturing and to stop capturing video from a webcam. I'm able to start the capture but I can't find the way to stop it when I press the button. Find below the code. I have tried many things in

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
one MovieClipLoader to load all clips, but this is ok too var mcLoader:MovieClipLoader = new MovieClipLoader(); var mcHolder = mcEmpty.createEmptyMovieClip("mcHolder" + i, mcEmpty.getNextHighestDepth()); mcHolder._x = 40 * i; mcLoader.loadClip(url[i], mcHolder); }

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
MC_mc:MovieClip = ContentContainer_mc.createEmptyMovieClip("container"+i, ContentContainer_mc.getNextHighestDepth()); - boon hbruyere <[EMAIL PROTECTED]> wrote: Hi, I don't understand what I get when running this:

[Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
Hi, I don't understand what I get when running this: for (var i = 0; i < NumPages_v; i ++) { var NewMC_mc:MovieClip = ContentContainer_mc.createEmptyMovieC

RE: [Flashcoders] OOP newbie question

2005-11-24 Thread hbruyere
ting a proxy >function on the XMLSocket object that then invokes the handleIncoming >function on your OSC object. There are other ways to do this, but I >think >the Delegate method is generally considered the best practice. > >Hope that helps, > >Jim > >-Original Mes

[Flashcoders] OOP newbie question

2005-11-24 Thread hbruyere
Hi, Here is a OOP newbie question. I have a class (see below).. Everything works fine. but the method "handleIncoming" can not access () or maybe even find) the method "parseMessages". If I give the complete path to the instance of the OSC class (made in my fla - for example "_root.OSC