Return-Path: X-Original-To: apmail-flex-issues-archive@minotaur.apache.org Delivered-To: apmail-flex-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8D03A11D3F for ; Sat, 23 Aug 2014 19:22:11 +0000 (UTC) Received: (qmail 3633 invoked by uid 500); 23 Aug 2014 19:22:11 -0000 Delivered-To: apmail-flex-issues-archive@flex.apache.org Received: (qmail 3606 invoked by uid 500); 23 Aug 2014 19:22:11 -0000 Mailing-List: contact issues-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 issues@flex.apache.org Received: (qmail 3597 invoked by uid 99); 23 Aug 2014 19:22:11 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Aug 2014 19:22:11 +0000 Date: Sat, 23 Aug 2014 19:22:11 +0000 (UTC) From: "john tolvich (JIRA)" To: issues@flex.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (FLEX-34469) Uncaught exception in compiler MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLEX-34469?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14108099#comment-14108099 ] john tolvich edited comment on FLEX-34469 at 8/23/14 7:21 PM: -------------------------------------------------------------- i searched for unicode decimal 1165 using hex 0x048d i found the symbol inside some swf file: BankBkgClip.swf ArialBold.swf Arial.swf MenuItemClip.swf ... the code that reference swf files look like this: package { import flash.display.*; [Embed(source="BankBkgClip.swf", symbol = "BankBkgClip")] public dynamic class BankBkgClip extends flash.display.Sprite { public function BankBkgClip() { super(); return; } } } package { import flash.text.*; [Embed(source="ArialBold.swf", symbol = "ArialBold")] public dynamic class ArialBold extends flash.text.Font { public function ArialBold() { super(); return; } } } any idea ? was (Author: pbx06): i searched for unicode decimal 1165 using hex 0x048d i found the symbol inside some swf file: BankBkgClip.swf ArialBold.swf Arial.swf MenuItemClip.swf ... the code that reference swf files look like this: package { import flash.display.*; [Embed(source="BankBkgClip.swf", symbol = "BankBkgClip")] public dynamic class BankBkgClip extends flash.display.Sprite { public function BankBkgClip() { super(); return; } } } any idea ? > Uncaught exception in compiler > ------------------------------ > > Key: FLEX-34469 > URL: https://issues.apache.org/jira/browse/FLEX-34469 > Project: Apache Flex > Issue Type: Bug > Affects Versions: Adobe Flex SDK 4.6 (Release), Apache Flex 4.13.0 > Environment: Windows 7 64 > Reporter: john tolvich > > both the latest version of flex 4.13 and an older (4.6) gives me for example : > For flex 4.6 > Uncaught exception in compiler > java.lang.IllegalArgumentException: symbol 1165 not defined > at flash.swf.Dictionary.getTag(Dictionary.java:182) > at flash.swf.TagDecoder.decodePlaceObject23(TagDecoder.java:1424) > at flash.swf.TagDecoder.decodeTag(TagDecoder.java:299) > at flash.swf.TagDecoder.decodeTags(TagDecoder.java:186) > at flash.swf.TagDecoder.decodeDefineSprite(TagDecoder.java:2717) > at flash.swf.TagDecoder.decodeTag(TagDecoder.java:314) > at flash.swf.TagDecoder.decodeTags(TagDecoder.java:186) > at flash.swf.TagDecoder.parse(TagDecoder.java:134) > at flex2.compiler.media.MovieTranscoder.getDictionary(MovieTranscoder.java:195) > at flex2.compiler.media.MovieTranscoder.extractDefineTag(MovieTranscoder.java:243) > at flex2.compiler.media.MovieTranscoder.doTranscode(MovieTranscoder.java:98) > at flex2.compiler.media.AbstractTranscoder.transcode(AbstractTranscoder.java:120) > at flex2.compiler.as3.EmbedUtil.transcode(EmbedUtil.java:233) > at flex2.compiler.as3.EmbedUtil.transcode(EmbedUtil.java:115) > at flex2.compiler.as3.EmbedEvaluator.evaluate(EmbedEvaluator.java:252) > at macromedia.asc.parser.MetaDataNode.evaluate(MetaDataNode.java:39) > at flash.swf.tools.as3.EvaluatorAdapter.evaluate(EvaluatorAdapter.java:351) > at macromedia.asc.parser.StatementListNode.evaluate(StatementListNode.java:60) > at flash.swf.tools.as3.EvaluatorAdapter.evaluate(EvaluatorAdapter.java:936) > at flex2.compiler.as3.EmbedEvaluator.evaluate(EmbedEvaluator.java:332) > at macromedia.asc.parser.ProgramNode.evaluate(ProgramNode.java:80) > at flex2.compiler.as3.EmbedExtension.parse2(EmbedExtension.java:70) > at flex2.compiler.as3.As3Compiler.parse2(As3Compiler.java:461) > at flex2.compiler.CompilerAPI.parse2(CompilerAPI.java:2948) > at flex2.compiler.CompilerAPI.parse2(CompilerAPI.java:2905) > at flex2.compiler.CompilerAPI.batch2(CompilerAPI.java:471) > at flex2.compiler.CompilerAPI.batch(CompilerAPI.java:1291) > at flex2.compiler.CompilerAPI.compile(CompilerAPI.java:1522) > at flex2.tools.oem.Application.compile(Application.java:1349) > at flex2.tools.oem.Application.recompile(Application.java:1287) > at flex2.tools.oem.Application.compile(Application.java:886) > at flex2.tools.flexbuilder.BuilderApplication.compile(BuilderApplication.java:359) > at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder$MyBuilder.mybuild(ASApplicationBuilder.java:319) > at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder.build(ASApplicationBuilder.java:129) > at com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.build(ASBuilder.java:198) > at com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.build(ASItemBuilder.java:70) > at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.buildItem(FlexProjectBuilder.java:607) > at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.build(FlexProjectBuilder.java:382) > at com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilder.build(FlexIncrementalBuilder.java:187) > at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728) > at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) > at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199) > at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239) > at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292) > at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) > at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295) > at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351) > at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374) > at org.eclipse.core.internal.resources.Workspace.buildInternal(Workspace.java:513) > at org.eclipse.core.internal.resources.Workspace.build(Workspace.java:422) > at org.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAction.java:180) > at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) > For flex 4.13 : > Error:[Flex (module topsecret.swf.flex)]: symbol 1165 not defined -- This message was sent by Atlassian JIRA (v6.2#6252)