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 ...
0
votes
1answer
39 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
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
442 views

Attaching swf elements by ObjectID

I have swf file with some graphics I need to use in my haxe(future compiled to swf too) program. There is no problem with embedding pictures by swfmill, so i tried to disassemble the swf with swfmill ...