An Adobe SWC file is a package of precompiled Flash symbols and ActionScript code that allows a Flash or Flex developer to distribute classes and assets, or to avoid recompiling symbols and code that will not change.
0
votes
1answer
37 views
Why do I Get an 'Implicit Coercion of Value; error when exporting a swc from Flash Pro CS6 into Flash Builder?
I create my symbol with a class name
I publish as an SWC, and in flash buildr it looks like this
I import MyRect and try and use it
var redRect:MyRect = new MyRect;
addChild(redRect);
I ...
0
votes
0answers
55 views
Overriding swc-class does not work
I tried to override a class inside a swc-file, as described here:
How to monkey patch or override a swc class in Flex?
I placed it inside my main src folder, within the same file path as the class ...
0
votes
2answers
47 views
Conflicted inherited definition when using SWC
I am using Flash CS6 and I am stuck by the inherited definitions.
Suppose I have a class named Button such as:
public class Button extends MovieClip
{
public var _text : TextField;
}
In the ...
2
votes
1answer
52 views
How to sharing classes code in different SWFs?
I am working on a Flash project. In the project there are lots of isolated FLA files which may share the same common classes code. To clarify the project limitation:
I could ONLY use Flash CS6 IDE. ...
0
votes
1answer
63 views
How to exclude classes when compiling SWC from Haxe?
This question is specifically for creating SWCs from Haxe in FlashDevelop (not from AS3 code).
Is there a compiler argument to specify some classes to NOT be compiled within a SWC? And if so, is it ...
1
vote
1answer
66 views
Making Pre-Compiled Code/ Data Structures
I am trying to make a word game in Flash/as3.
Here I am using Prefix tree (Trie) data structure to store all the valid English words and then iterate through them whenever the user makes a new word.
...
-1
votes
1answer
56 views
Using <compc> to build SWC
I am using ant to build swc automatically, but the built swc only 3K. I checked several solutions, but there is nothing difference with my build.xml, Help!
my build.xml looks like as following
...
0
votes
1answer
129 views
using fdt to compile flex project using flex sdk as runtime shared swc
I've been trying to compile flex project using flex SDK 4.5.1.
I use eclipse FDT.
I want my flex application not to take a lot of space.
my all page contains like 4 different swf files and each one ...
2
votes
2answers
83 views
How do you create a swc for a native extension?
I am trying to implement in-app billing with an Android app I am creating in Flash Builder, so I downloaded a native extension to handle this (https://github.com/pozirk/AndroidInAppPurchase). It comes ...
1
vote
2answers
58 views
How to use a font embedded in a SWC
I exported a SWC from Flash CS3 with a font embedded.
Now I want use it in some TextFields, but I don't know how to use the font.
0
votes
2answers
92 views
How to add a SimpleButton in a Flash Builder project from SWC?
I exported a SWC from Flash CS3 and the assets works, except the Buttons, they look like another library items.
The code:
package {
// ...
import flash.display.Sprite;
import ...
0
votes
2answers
114 views
how to share a component in as3
I have a custom component(eg. MyButton) used in several swfs. I'd like to share the component in runtime, thus once our designer change the button's visual effect, we need not publish all flas that ...
1
vote
1answer
43 views
How do I prevent client applications from linking two different versions of my library?
In AS3/Flex, there doesn't seem to be anything out of the box that prevents client applications from linking (either externally or "statically") two versions of my SWC. Historically, when this has ...
0
votes
1answer
93 views
When using a swc with embeded files the files are missing but the swc compiles with out errors?
I am making a swc file with code that I have made in actionscript and it works correctly. However after I take all the code and put it into a swc library and it creates the swc with out any compile ...
0
votes
2answers
229 views
Assets from SWC not included in SWF in Flash CS6
I have an asset FLA file that includes symbol assets.UI.something and there is a corresponding class assets/UI/something.as.
When I'm publishing it into SWC, I can unzip it and see (in catalog.xml) ...
0
votes
1answer
105 views
Definition for symbol not found when embedding swc
When i embed the symbol "Tile" from swf, it works ok, when i try embedding the same symbol from swc, FlashDebugger throws this error:
Error: definition for symbol 'Tile' not found
...
2
votes
1answer
124 views
Compiling SWC file with ant fails: “include-sources doesn't support the path-element attribute”
I am trying to compile a src folder into a SWC file.
But it returns the following error:
build.xml:9: include-sources doesn't support the "path-element" attribute
This is my build file:
...
0
votes
0answers
78 views
Using external SWC or source in Actionscript3 and Flash
I'm making a flash game for facebook. I have to use a SWC for facebook actionscript api. But somehow it doesn't work. I tried adding SWC file from Actionscript settigs, also tried linking the source ...
0
votes
1answer
154 views
Creating a SWC image/file library at runtime using external files
I'm working on a Flash GUI project which has many images need to be dynamically loaded at runtime.
Problem:
Currently everytime a class initializes, it loads its assets (images) from HDD, but that ...
0
votes
1answer
214 views
Flash export Movie to SWC, load and play it in Flex ActionScript Project
I can not run AS included into SWC library. I made two test-projects - one in Flash Pro - just as it was described in the answer here:
the link
with addition of some AS3 code that animate the blue ...
2
votes
2answers
471 views
FlasCC SWC within Mobile AIR Project
I am writing a barcode scanner for iOS and Android using Flex Mobile and ZXing. I have optimized ZXing as much as I can, but it is still too slow to use for continual scanning on some older devices. I ...
1
vote
2answers
309 views
Flex error, unable to load SWC
Need help in a very weird error in Flashbuilder where a SWC seems to magically appear and is giving me errors. All the updates to the SWC is not being recognised by Flashbuilder.
In my Libs ...
0
votes
2answers
354 views
how to use .swc file in flex project
I have a flex project in which I need to as3xls library (.swc file) in my project. Now I have downloaded that swc file and included it in flex-sdk\frameworks\libs and I am able to use the .as files of ...
0
votes
0answers
49 views
Flash Builder instantiate swc document
I'm building an app in Flash builder. This needs to play+manipulate a number of animations authored in Flash Professional.
If the fla has exported symbols, I can instantiate those and they are ...
1
vote
2answers
383 views
How could I convert an existing SWF file to an SWC for using as a library?
I am new to the ActionScript world and I bumped into a problem that is hard for me. I have an SWF file that contains some classes that I cannot recompile from source but want to use again in a ...
1
vote
2answers
98 views
Figuring out the package name of a *.SWC file so that I can import it
I am a noob to flex so this probably comes across as a ridiculous error to you guys, but I can't for the life of me figure out what would be the name of the package/class for the .swc file I just ...
0
votes
0answers
156 views
Adding a .swc file to a Flex Library fails when attempting to use its components
I am attempting to add a .swc file to my Flex project. The steps I follow are :
Go to Project -> Properties -> Flex Build Path -> Library Tab -> Add SWC
At this point, I add the .swc file. It does ...
0
votes
1answer
353 views
Flash Builder (Flex) Air Project mx.* libraries swc Class mx.logging.targets::LineFormattedTarget could not be found
A teammate on my project added a swc that had some mx logging classes in it, and now my project won't compile. Error:
Class mx.logging.targets::LineFormattedTarget could not be found.
I'm on the ...
1
vote
1answer
197 views
Compile-time shared library symbols in Flash
Our Flash project has the following structure. Two FLA files with graphical assets (symbols), imported into a pure AS3 code project using SWCs.
There are some symbols that are used in both ui.fla ...
0
votes
1answer
96 views
flash alchemy: passing array of floats
Doesn't work:
var b:ByteArray = new ByteArray();
b.writeFloat(-50.000000);
b.position = 0;
cpp.processFloat(b,b.bytesAvailable);
CPP:
static ...
0
votes
0answers
137 views
Socket Serve API with Stencyl
Alright so I have asked this question in the PlayerIO forum, and the Stencyl Forum, and now I am bringing it to you.
I am trying to use the Player I.O. socket server with Stenyl to make a multiplayer ...
1
vote
0answers
86 views
How to access Alchemy/C functions from Haxe
I am writing a project in Haxe targeting flash. We have licensed a library written in C, which is being provided as an Alchemy-compiled SWC.
I can figure out the compilation options (I think), my ...
0
votes
1answer
69 views
using two swc files (movie clip inside have the same instance name);
I have two SWC files first.swc and second.swc
the problem : movieclips inside this two SWC files have the same instance names ( the difference is the graphics applied for them).
How can i call a ...
0
votes
1answer
98 views
flexmojos ignoring configuration?
I am trying to build out a SWC file from a Flex library, and no matter what I do, flexmojos (3.6.1) seems to build a "config.xml" file in the bin/classes folder that is empty, and uses that for ...
0
votes
2answers
894 views
How do I load dynamic image assets into adobe air
The app I'm working on displays four random images at one point. These four images come from a set of fifty images. If this was a standard Flex project I would just set the img.source property:
...
0
votes
0answers
182 views
Flex Maven how to create rsl from third party swc library
there are some swc file used in my project,when I compile the project by maven,I have to install the swc to maven repository,like:
mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swc ...
0
votes
1answer
104 views
Can a class check if it exists in an SWF or in an FLA?
I have an AS2 component which I need to behave differently in an SWF from an FLA. Can it determine its state programmatically?
Part of the problem here may be too that when I compile it as an SWC it ...
1
vote
1answer
1k views
Exporting SWC from flash for use in Flash Builder Actionscript Project
I've created a class in my Flash Builder Actionscript project.
I then created an FLA with the graphics for that class, made a symbol of it and linked it to the class. Then I published a swc.
If I ...
0
votes
1answer
108 views
Compiling swc with sources or only with asdoc
How to compile swc-library with documentation (asdoc) and sources in Flash Builder 4.6? If I compile Flex-application I can set check compile with sources, but for the library project I don't have ...
0
votes
1answer
860 views
How do I use compc to build a swc that dynamically links in Flex components?
In Flash Builder 4.6, when managing a Flex project, under the Build Path options for a Flex Library Project, I can select between "external" and "Merged into code" Framework linkage, with "external" ...
0
votes
1answer
93 views
Flex - Missing constructor arguments in an included swc lib
I've written a swc lib using flash pro cs6. Among others the swc contains "LPChat" class:
package {
import com.adobe.serialization.json.JSON;
import flash.display.Sprite;
import ...
0
votes
0answers
120 views
Adobe Native extension and open source libs
I am trying to use a open source .dll in AS3 using the Native extensions. The platforms are Windows and MAC.
As a first step i downloaded a hello-world example and linked the code into the project. ...
0
votes
1answer
73 views
Linking Project To Robotlegs Files In FDT
I am trying HelloFlash in FDT - from the demo bundle.
I have robotlegs v1.5.2 as a linked resource from: D:\as3-robotlegs\robotlegs-framework-v1.5.2\src
The robotlegs files are not seeing each ...
0
votes
1answer
43 views
Set parameter for movieclips to determine the frequency they'll show up on stage on Flash Builder
I'm making a video game-like project with Flash Builder (Flex if you wish).
I have an array of movieclips (which are SWCs that I've called from Flash). These movieclips are separate actions of the ...
0
votes
0answers
71 views
currentFrame of swc returns 1
I .swc files that are animations. I am trying to get if the animation is nearing the end so I am comparing mc.currentFrame vs mc.totalFrames.
The problem is that, on .swcs currentFrame and totalFrames ...
0
votes
0answers
304 views
.swc file not being created in Flex 4.6
I just downloaded the source for the OSMF (v 2) and it does not include a .swc file so I decided to create one. Here are the steps I took and I have no errors, the class files are there but NO .swc ...
0
votes
1answer
75 views
SWC debug or release version
Are there debug and release versions of swc's, I only noticed the option of creating a swc, If there are debug or release versions how can we create the debug version in flash professional.
Thanks
1
vote
1answer
153 views
Why can't I build a swc in my Flex Builder Project after pasting a class?
This may be a bug report for Adobe, but thought I'd ask here for workarounds...
When I create a new Flex Library Project, a .swc is automatically created in the /bin folder. When I add a new class, ...
2
votes
1answer
535 views
Can you debug swc in flash builder
Can you debug and step through the code of a swc files in flash builder?
Let's say you even have access to source code (coming from flex library project or flash professional project)! If how?
...
0
votes
0answers
182 views
Debugging flex and php project with flash professional in flash builder
I've two projects inside flash builder for PHP Premium. http://www.adobe.com/products/flash-builder-php.html
Flash Professional project type (because project has graphic and animation needs)
Flex ...

