[Flashcoders] [JOB] Flash Developer wanted (freelance)

2007-07-27 Thread Jan Schluenzen
Philipp Lenssen of Google Blogoscoped is looking for a talented flash developer for a project. Here are the details: http://blogoscoped.com/archive/2007-07-26.html#n31 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search th

[Flashcoders] Problem with AnimationPackage

2006-06-15 Thread Jan Schluenzen
Hi everyone! I'm currenty trying out Alex Uhlmann's AnimationPackage (http://www.alex-uhlmann.de/flash/animationpackage/) and I ran into a problem concerning the Animation class. This might be a bug but I'm currently guessing that I did something wrong somewhere along the way... So, I'm trying t

[Flashcoders] record audio with flash (offline or online)

2006-03-03 Thread Jan Schluenzen
Hey guys! Does anyone have suggestions how I would record audio through a microphone with a flash application (think: karaoke app)? This audio can either be saved locally in the form of a projector app or online with a server-side solution. Can this be accomplished with Flash Media Server 2? Will I

Re: [Flashcoders] ActionScript equivalent of embed/object BASE tag

2006-02-06 Thread Jan Schluenzen
Okay, thanks everyone! On 2/5/06, Tyler Wright <[EMAIL PROTECTED]> wrote: > > In flash you'll have to do your own BASE tag. You'll either need to > prepend > which is probably the best way to go, or do something crazy like > > MovieClip.prototype.oldLoadMovie = MovieClip.prototype.loadMovie; > M

Re: [Flashcoders] ActionScript equivalent of embed/object BASE tag

2006-02-03 Thread Jan Schluenzen
PROTECTED]> wrote: > > did you try '_lockroot' ? > > cedric > > > > > You could do it manually. Create a variable and prepend(not a > > word!) it to > > all your loadMovie(), load() etc. calls. > > > > Ade > > > > ----

[Flashcoders] ActionScript equivalent of embed/object BASE tag

2006-02-02 Thread Jan Schluenzen
Hi- does anyone know of an ActionScript equivalent of accomplishing the effect of the BASE tag (part of the embed and object tags in HTML)? The problem is, I have a flash application that loads XMLs and SWFs relative to the application's base SWF "index.swf". Now I need to load my "index.swf" into

Re: [Flashcoders] Extending the XML class

2006-01-04 Thread Jan Schluenzen
Hi, I ran into the exact same problem about a year ago... The XML class doesn't really make it easy to extend... The way I solved it is by overriding all necessary methods of the XML class with methods in my extended version, so EXML in your case. E.g. function someOverridenMethod():EXML { // d

[Flashcoders] Problem when compiling code in Flash 8 instead of MX2004

2005-12-12 Thread Jan Schluenzen
Hi- does anyone know why this code works when compiling from MX2004 and doesn't work when compiling from Flash 8? In both cases I'm exporting for Flash Player 7: I have a class that extends the built in XML class. In this class I'm doing the following (this is just to demonstrate what happens, I

[Flashcoders] dispatching events through a chain of objects

2005-11-08 Thread Jan Schluenzen
How do you guys handle the following situation: I have a class, let's say Dog that holds an instance of the class Leg. Outside of Dog I have another class called Street that holds the dog. Anyway, now I want street to find out whenever the dog's leg has moved. The only way I can figure out how to