Return-Path: X-Original-To: apmail-flex-dev-archive@www.apache.org Delivered-To: apmail-flex-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A6E1D1084C for ; Sat, 21 Sep 2013 13:52:14 +0000 (UTC) Received: (qmail 70118 invoked by uid 500); 21 Sep 2013 13:52:04 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 69850 invoked by uid 500); 21 Sep 2013 13:51:51 -0000 Mailing-List: contact dev-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list dev@flex.apache.org Received: (qmail 69841 invoked by uid 99); 21 Sep 2013 13:51:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Sep 2013 13:51:50 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aharui@adobe.com designates 64.18.1.218 as permitted sender) Received: from [64.18.1.218] (HELO exprod6og125.obsmtp.com) (64.18.1.218) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Sep 2013 13:51:43 +0000 Received: from outbound-smtp-2.corp.adobe.com ([193.104.215.16]) by exprod6ob125.postini.com ([64.18.5.12]) with SMTP ID DSNKUj2kWKNxgjSW/CnkvuWFAVo35+A9dw3v@postini.com; Sat, 21 Sep 2013 06:51:22 PDT Received: from inner-relay-2.corp.adobe.com (mail-321.sea.adobe.com [153.32.1.52]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8LDpIrb020337 for ; Sat, 21 Sep 2013 06:51:19 -0700 (PDT) Received: from nacas02.corp.adobe.com (nacas02.corp.adobe.com [10.8.189.100]) by inner-relay-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8LDpIOU005900 for ; Sat, 21 Sep 2013 06:51:18 -0700 (PDT) Received: from NAMBX02.corp.adobe.com ([10.8.127.96]) by nacas02.corp.adobe.com ([10.8.189.100]) with mapi; Sat, 21 Sep 2013 06:51:18 -0700 From: Alex Harui To: "dev@flex.apache.org" Date: Sat, 21 Sep 2013 06:51:17 -0700 Subject: Re: [FlexJS] Falcon compiler errors - need help Thread-Topic: [FlexJS] Falcon compiler errors - need help Thread-Index: Ac620aVWMK4r11U7SF+75KM3iBvLfQ== Message-ID: In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Microsoft-MacOutlook/14.3.6.130613 acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org The code there says it can't resolve the base class for the MXML file. How did you add your new component to the project? The external tools won't know about any changes you make to the FB Project Properties so any changes you do make have to be reflected in the External Tools Config. -Alex On 9/21/13 2:35 AM, "OmPrakash Muppirala" wrote: >I am trying to create a new set of components with FlexJS. I am following >the pattern set by the jquery application here [1],[2]. I created a new >manifest file with the one component I am testing(Application), updated >flex-config.xml to include a new namespace. Then, I am creating a new >application with the root Application tag based on the new namespace. > >The default mxml compiler does not show any problems. But when I compile >it with the Falcon compiler, I am getting this error: > >Loading configuration: >C:\p\flex_os\workspace\FlexJS\FlexJSSDK\frameworks\flex-config.xml > >Internal error: java.lang.NullPointerException > at >org.apache.flex.compiler.internal.targets.FlexAppSWFTarget$FlexDelegate.is >FlexInfo(FlexAppSWFTarget.java:977) > at >org.apache.flex.compiler.internal.targets.FlexAppSWFTarget.findAllCompilat >ionUnitsToLink(FlexAppSWFTarget.java:460) > at >org.apache.flex.compiler.internal.targets.Target.buildAllCompilationUnits( >Target.java:297) > at >org.apache.flex.compiler.internal.targets.Target.getBuiltCompilationUnitSe >t(Target.java:306) > at >org.apache.flex.compiler.internal.targets.SWFTarget.build(SWFTarget.java:2 >28) > at=20 >org.apache.flex.compiler.clients.MXMLC.buildSWFModel(MXMLC.java:658) > at=20 >org.apache.flex.compiler.clients.MXMLC.buildArtifact(MXMLC.java:644) > at org.apache.flex.compiler.clients.MXMLC.compile(MXMLC.java:525) > at org.apache.flex.compiler.clients.MXMLC.mainNoExit(MXMLC.java:214) > at org.apache.flex.compiler.clients.MXMLC.mainNoExit(MXMLC.java:182) > at >org.apache.flex.compiler.clients.MXMLC.staticMainNoExit(MXMLC.java:154) > at org.apache.flex.compiler.clients.MXMLC.main(MXMLC.java:141) > > >Is there something obvious that I am missing? If not, I will clean up my >code and check it in (into a branch perhaps?) > >Thanks, >Om > >[1] >https://fisheye6.atlassian.com/browse/flex-asjs/frameworks/as/src/org/apac >he/flex/jquery >[2] >https://fisheye6.atlassian.com/browse/flex-asjs/examples/FlexJSTest_jquery