Tagged Questions
4
votes
3answers
375 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
2answers
166 views
About embeding assets(images) in AS3 project
I am using flex sdk 4.5.1 and flash develop to compile my AS3 project. I have small images, about 12KB which is silly to load them using Loader class, so embeding is better solution.
However when ...
0
votes
2answers
359 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
596 views
how to override base path parameter inside flex application
I'm having difficult time solving an absolute/relative path issues.
When using as3 and embed my swf via swf object JS, one of the parameters that being transferred to the embed JS function is ...
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
199 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 ...