Flash CS4 refuses to let go

Flash still has the ASO file, which is the compiled byte code for your classes. On Windows, you can see the ASO files here: C:\Documents and Settings\username\Local Settings\Application Data\Adobe\Flash CS4\en\Configuration\Classes\aso On a Mac, the directory structure is similar in /Users/username/Library/Application Support/ You can remove those files by hand, or in Flash you can select Control->Delete … Read more

as3 – COMPILER ERROR 1120: Access of undefined property * 7

When you see the error: 1120: Access of undefined property ‘VariableName’. This means you have not defined or declared the variable (or function when accessing it as a property of an object/class). Here is an overview: 1120: Access of undefined property projectsNum. projectsNum = projectTitle.length(); // You have declared [var projectNum:Number;] Error source = s … Read more