Hi All.

I just wanted to let you know that I figured out what the problem was.

I didn't find it on any website though...

In FP6 the following does not work:

var string:string = "blah";

if(string)
{
        doSomething();
}

But if you do:

var string:string = "blah";

if(string != undefined)
{
        doSomething();
}

It works!


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Cannasse
Sent: 10. mars 2006 11:28
To: Open Source Flash Mailing List
Subject: Re: [osflash] Flash 7 -> Flash 6 downgration - help!

Jónatan Einarsson wrote:
> That could very well be the case.
> 
> The question is, how do I figure out where it is braking?
> 
> Do you know where I could find a good reference of changes from FP6-FP7?
> 
> je

Maybe on macromedia website.
In Livedocs, you can see for a given class/method if it's been introduced in 
FP7.

Nicolas

_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org



_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to