[Flashcoders] Microsoft Internet Explorer update and consequences for Flash

2006-03-02 Thread Morten Barklund TBWA\\Play
Hi, Don't know if you've seen it, but I just discovered, that Microsoft lost a patent dispute to Eolas yesterday[1] and Microsoft has since created a voluntary update for IE6 and also embedded the new behaviour in IE7.[2] This among other things affect Flash very much, as Microsoft writes:

Re: [Flashcoders] Microsoft Internet Explorer update and consequences for Flash

2006-03-02 Thread Morten Barklund TBWA\\Play
Morten Barklund TBWA\Play wrote: Don't know if you've seen it, but I just discovered, that Microsoft lost a patent dispute to Eolas yesterday[1] and Microsoft has since created a voluntary update for IE6 and also embedded the new behaviour in IE7.[2] Sorry all, it seems to be old news

Re: [Flashcoders] oop question?

2006-03-01 Thread Morten Barklund TBWA\\Play
murder design wrote: #include mLoader.as import mLoader; And when the class is actually situated in the same folder as the fla-file, no import is needed :) So you can either change the include to import or delete it entirely :) -- Morten Barklund - Information Architect - TBWA\Play

Re: [Flashcoders] Re: sorting a collection of points clockwise

2006-02-27 Thread Morten Barklund TBWA\\Play
Bart Wttewaall wrote: Thanks, I guess I needed a little nudge to actually get working on the method. If anyone sees a quicker method than the code below, then please say so. This would actually be one of the few places, where Array.RETURNINDEXEDARRAY could be used - just create an array of

Re: [Flashcoders] Tab problem

2006-02-24 Thread Morten Barklund TBWA\\Play
CARABUS plus wrote: How can I do to discard tab action for a full level ? _levelX.tabChildren = false; :) -- Morten Barklund - Information Architect - TBWA\Play Gothersgade 49, 4th floor - DK-1123 Copenhagen K, Denmark Phone: +45 7027 2227 - Fax: +45 3369 1174

Re: [Flashcoders] When singletons go bad

2006-02-20 Thread Morten Barklund TBWA\\Play
Manuel Saint-Victor wrote: if(_myManager==null){ Nothing is null, unless explicitly set to null. And why do you check for the existence of the staticly set _myManager both in the static singleton-accessor and in the constructor - one of them should be enough. -- Morten Barklund -

Re: [Flashcoders] Flash Player bug?

2006-02-17 Thread Morten Barklund TBWA\\Play
Tuomas Glad wrote: var test:Number = undefined; trace(test = 0); // true a=b is defined as !(ab) - and undefined0 is undefined. This undefined = 0 is true - for quite annoying reasons. :) -- Morten Barklund - Information Architect - TBWA\Play Gothersgade 49, 4th floor - DK-1123 Copenhagen

[Flashcoders] What is profile?

2006-02-08 Thread Morten Barklund TBWA\\Play
Hi all, One for the detectives in y'all: Background -- I have an object, that I ought to fetch via a singleton and save as a local variable or member of my classes, but sometimes forget to declare. Thus sometimes I reference a member or a variable of a class, that hasn't been

Re: [Flashcoders] Can you extend the _y and _height setters of a movie clip?

2006-02-08 Thread Morten Barklund TBWA\\Play
David Lochhead wrote: Hi, I've got a movieclip that can have it's _y and _height properties altered by various scripts. Is there a way I can extend the movieclip class so that the setter for these properties can be extended so I can act when the clip gets updated? Any advice appreciated.