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

2006-03-02 Thread Morten Barklund TBWA\\Play
Morten Barklund TBWA\Play wrote: Morten Barklund TBWA\Play wrote: 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 em

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

2006-03-02 Thread Morten Barklund TBWA\\Play
Morten Barklund TBWA\Play wrote: 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.[

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

[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] 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 Gothe

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 th

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: I had MyManager declared and in my variable declaration chunk up top but had not added in the last part(=null) private static var _myManager : MyManager; I'm going to try changing that and see how if that helps. That would exactly be the problem - as the variable is

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 - I

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 !(a= 0 is true - for quite annoying reasons. :) -- Morten Barklund - Information Architect - TBWA\Play Gothersgade 49, 4th floor - DK-1123 Copenhagen K, Denmark Phone: +45 7027 2227 - Fax: +45 3369 11

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. I've

[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 define

Re: [Flashcoders] Tell me more about "_global"

2006-02-01 Thread Morten Barklund TBWA\\Play
Steven Sacks wrote: Making a class for globals is lame. I don't get why people do stuff like that. It's completely unnecessary. Here's how I make a namespace for globals in one line. On frame one of the root timeline: _global.APP = {}; Wow. That was so hard. I can make the same, now it's