ActionScript 3.0 :: How To Optimize Graphics On Stage
Jan 3, 2010
I build games, which tend to run slowly when there are more than a dozen or so graphics being moved about the stage. I feel that my code is clean (I have researched code optimization) but not sure how I can make improvements with graphics. Currently, all graphics are created in Photoshop and imported to Flash as .png (I need semi-transparency, hence the .png format). I then set the image quality to low inside the library.
Every image usually resides within its' own sprite or movieClip. My games seem to slow down a fair deal when an image is introduced (such as a semi-transparent cloud drifting across the screen). Is there a special way to handle images when performance is an issue? I've only heard of stuff like cacheAsBitmap and other such fancy terms.
View 4 Replies
Similar Posts:
Jun 1, 2010
I have an .as class file which creates a circle at the mouseX and Y, another .as file that acts as a getter/setter for my array and a .flv file to run to script. It's sposed to create a circle at the mouse coordinates and expand. the problem is, it creates the circle which expands but depending on how far away you click from the top left, the circles fly right off the stage towards the bottom right.
I traced the x and y coordinates of the circles but their coords aren't changing. heres the code
///// AS File /////
package com.tools.circleDraw {
import flash.display.Sprite;
import flash.display.Graphics;
[code]....
View 1 Replies
Jul 9, 2010
Regarding the code below, when Document class is "Main" [the intended default condition] I do not get the graphics declared in class Thing (ie., in object myThing:Thing) put on stage. Why??? Whereas when I define Document class as Thing, then yes theses graphics do appear on stage. So the syntax itself is OK
[Code]...
View 0 Replies
May 16, 2003
does anyone knows how to make a scalleable swf without having to scale the graphics aswell?
View 4 Replies
Mar 8, 2010
I have created an animation where a motion tween takes a graphic out of the stage, but this is replicated in my projector. s
View 4 Replies
Jul 7, 2009
I have a client who wants some graphics to appear "coming onto the screen from the sides." They are flames, to be exact. She does not want them to just come in inside the "box" (stage). She wants them to appear coming in from the sides of the browser window. Is there a way to do this? That is, can you make graphics or movie clips that start off outside of the frame appear in the browser when the swf file is saved?
View 2 Replies
Feb 6, 2009
I'm have trouble attaching graphics to the stage from a class. I can do it on the timeline but the code doesn't work in a package.[code]this doesn't seem to work even if I import the picture in the package.[code]
View 1 Replies
Mar 20, 2006
I have searched this forum and can't seem to find an answer. I'm loading an external movieclip inside an empty movie clip. But when the clip loads, I can see all my graphics that i have placed outside the stage area, that i want animating in.
I understand I can use a mask, but i feel like the mask is slowing my animation down because of how big it is. There must be another way.
View 6 Replies
Apr 9, 2005
I was wondering about MC and hey can help to lag a game out. I set up an advanced class system so i don't have to use MC to simulate walls, all i use isthe x,y,width and height. Well anyway since i don't need MC anymore I was wondering if there is a way to attach Graphics instead of MC cause a Graphics file size is relatively small than that of a graphic, I think. If anyone could tell me thats true and show me a way to attach graphics that would be nice. I haven't tried it yet but maybe if I exported the graphic from the library imihgt be able to call its name, but it doesn't have an instance name so im stuck.
View 2 Replies
Oct 8, 2009
i am trying to receive in my function as a parameter either a shape or a sprite and then access their graphics property, but this gives me an error:
Code:
public static function makeRect( obj:DisplayObject, ...
var g:Graphics;
if(obj is Sprite){
[code]...
//1119: Access of possibly undefined property graphics through a reference with static type flash.display:Graphics.
View 1 Replies
Jan 3, 2008
im working with games ryt now, im animator, my knowlegde in scripting is basic, im just curious with my project right now, i need to provide the .fla the problem with my .fla is to big, 200mb, is there any way to reduce the .fla without editing the inside of .fla,
View 4 Replies
Jun 18, 2009
I do many photography flash sites. I usually bring in all the images and then select each one, click their bitmap properties and adjust the quality individually.
View 2 Replies
Jul 8, 2009
Think of it as a calendar that picks up the item specified in the given date or something similar to that This sample code works, but does look like it's looping way too many times and potentially kill the system if you have many item in the k_arr...
[Code]...
View 8 Replies
Feb 4, 2010
When using to load XML file, I have used Event.COMPLETE, Event.Progress, IOEventListener. Since listeners take up memory ressources.
I was wondering if it's a good way and habit to optimize after it has been completed locaded by removing them.
[Code]...
View 6 Replies
Oct 4, 2002
All variables start offset by 1 (a=1, b+2, c+3, etc..)I want the values to all start over when they reach 7.You can see the lower half of code displays these images, basically rotating around a circle.What is most efficient way to script? I assume an array.
a += 1; if (a==7) {a=1};
b += 1; if (b==7) {b=1};
c += 1; if (c==7) {c=1};
[code]....
View 14 Replies
Sep 4, 2009
So I have 10 buttons, and I would like them to all do similar actions, but I was wondering if it's possible to optimize the code somehow.
When you rollover the button I would like it to alpha IN, and then when you rollout I'd like it to alpha OUT. Lastly, onPress I'd like to go to a different keyframe in the scene.[code]...
View 4 Replies
Oct 14, 2010
Is it better to optimize an image before importing it into Flash, or letting Flash optimize it during the export?
View 2 Replies
Jan 13, 2011
How can I make this code smaller adding 100 swfs or more.
var seccion:String="home";
var loader:Loader = new Loader();
function loadSection():void {
[code]....
View 4 Replies
Sep 15, 2010
Is there is a way to optimize flash for search engines??
View 4 Replies
Jun 7, 2010
I'm building an application in Actionscript using Flash assets, and my frame rate becomes very low (~7 fps) when I attempt to render 20+ assets on the screen, even though most of those assets are stopped movie clips. I've tried setting .cacheAsBitmap to true, which helps a bit, but not enough. What else can I do to get the frame rate up? I've noticed that some movie clips seem to impact it more than others, but I'm not sure how to alter them to make them easier to render.
View 2 Replies
Jan 5, 2011
I have a question about making flash games in Flex.Right now I am developing a 2D fighting game, here's the link[url]...
However, I am not sure how efficient I programmed the main loop.
Since I have never read a tutorial or seen any other Adobe Flex games out there, I didn't know how to implement them. I have a Timer instance that calls an update function every 24 frames, which updates all of the game objects and views. [code]...
View 1 Replies
Sep 12, 2009
i want to know if there is any way i can optimize the tween effect i'm doing. below if the code:
ActionScript Code:
stop();
// import classes needed
import fl.transitions.Tween;
[Code].....
View 6 Replies
Jan 31, 2010
i'm making a website and it has some parts with flash such as the background. You can see the site here: [URL] You will see that the preloading of the background is too long beacuse i have 4 images as background in the library. the images are 950 x 650 pixel jpegs that in the library use the Photo(compression). So when the swf is on loading it take a lot of time.
View 0 Replies
Sep 9, 2010
[code]...
This is all working fine. How can I further optimized the code (make it shorter) for last section?I created the loop for root.d and root.e of xml using for loop and while loop but then it does not add the xml values to the attachmovie text. I don�t know why?
View 5 Replies
Oct 16, 2011
I'm just installing Apparat, and I'm interested in using it to optimize my SWFs.
On its google code page some optimizations are listed out .. sliding window, flowgraph ... so is it possible to make use of these optimizations? how?
I have heard of the -reducer command, does it perform the optimizations? are there other commands you can use? or do you have to build apparat yourself and access it via scala?
View 0 Replies
Jan 27, 2012
I have this code:
ActionScript Code:
variables.ex1 = this["ex" + exerciseID].text;
variables.ex2 = this["ex" + exerciseID].text;
variables.ex3 = this["ex" + exerciseID].text;
variables.ex4 = this["ex" + exerciseID].text;
variables.ex5 = this["ex" + exerciseID].text;
variables.ex6 = this["ex" + exerciseID].text;
variables.ex7 = this["ex" + exerciseID].text;
But I want to optimize this. I want those variables "variables.ex1, variables.ex2, etc" are dynamic.
View 1 Replies
Sep 9, 2010
XML.onLoad = function(loaded) {
if (loaded) {
buttonArray = [b,b1,b2];
[code].....
View 1 Replies
Aug 7, 2009
I've been working with AS3 now for a few months and am making good progress in it (I'm a AS2 transfer student). However, on a project I'm working on I'm having a little issue with performance within the browser. I was wondering if anyone had some tips on how to optimize the following code as I include this object about 600 times in my flash to make a waterfall (which causes resource drain in the browser)?[code]...
View 6 Replies
Sep 22, 2009
got some FLVPlayback playback problems on IE7. Videos start after too much time. try and click on the right banners:
[URL]
Did you ever had some similar problem? Do you think that maybe there's some solution? Does FLVPlayback do a progressive download by default? Could raising the default bufferTime (0.1)
View 2 Replies
Oct 16, 2011
I'm just installing Apparat, and I'm interested in using it to optimize my SWFs.On its google code page some optimizations are listed out .. sliding window, flowgraph ... so is it possible to make use of these optimizations?I have heard of the -reducer command, does it perform the optimizations? are there other commands you can use? or do you have to build apparat yourself and access it via scala? I typed "reducer help" on the command line, and it seems that this program performs some of the listed optimizations:[code]
View 1 Replies