Tagged Questions

4
votes
3answers
359 views

Embed many graphics using an array

In AS3 you can embed a graphic into a Class variable: [Embed(source="MenuAssets.swf", symbol="topSquare")] public var TopMenuItem:Class; I have hundreds of assets in this one website ...
3
votes
4answers
1k views

as3 - getting library symbols from an Assets class

I have created an assets.swf, in which I want to keep all my symbols. Then, I have created an Assets class which does the embedding. It looks like this: public class Assets extends MovieClip { ...
0
votes
0answers
40 views

Turning flash animations into assets that can be applied to multiple different objects

My question is related to this user's post here. I was wondering if anyone here knew any good resources that detail this process? Currently I have a friend that has made some great character ...
0
votes
1answer
38 views

Flash 10 Attaching a png file from an external swf compiled with swfmill

I wish to load an external swf compiled with swfmill, at run time. In other words, loading it asynchronously (not compiled together with the file). This swf contains 2 assets: file1.png and file2.png. ...
0
votes
2answers
348 views

bitmap data as movie clip

I import my images with imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete); imageLoader.load(imageRequest); and then try and cast as a movieclip: var newImage:MovieClip = ...
0
votes
1answer
1k views

AS3 & Swfmill: How to access assets in swfmill-generated library swf

I'm creating library swfs in as3 this way, works like a charm (except for the slow mxmlc compiler): package { import flash.display.Sprite; public class Library extends Sprite { ...
0
votes
1answer
193 views

Flash AS3 CS4 Project Organisation

I have a large .fla file with all my movieclips (and associated classes) for an entire site in the library. The whole thing is getting unmanageable - compiling very slowly - and not getting any ...