ActionScript 3.0 :: Getting The Performance From Flash Using Curves?

Aug 28, 2009

I've been working on simple animation for a client, which you can see __here__.I have a few issues with performance. I have popped a fps counter at the top left and it seems to only run at around 30 fps on my laptop, I need it up to 60 though.

i was just wondering if anyone had any tips about getting the best performance from flash.I have used Shape instead of Sprite on the curves, which gave a slight improvement. Surprisingly I didnt notice any change in performance when I dont use the blur filter on the curves, which was odd to me.

View 5 Replies


Similar Posts:


Flash :: Draw A B-Spline Using Bezier Curves?

Aug 27, 2011

My Flash application receives B-spline data from an external application but the Flash drawing API only allows quadratic bezier curves using the Graphics#curveTo() method.Is it possible to convert a B-spline into a series of curveTo() calls?

View 1 Replies

Flash - Drawing Cubic Bezier Curves Programmatically In AS3?

Jul 14, 2010

What's the best way to draw cubic bezier curves programmatically in AS3? The Graphics class only seems to support quadratic curves. I want to be able to do something like:

var startPoint:Point = new Point(0, 0);
var endPoint:Point = new Point(5, 5);
var control1:Point = new Point(5, 0);
var control2:Point = new Point(0, 5);
var myBezier:Sprite = getBezier(startPoint, control1, control2, endPoint);

For a performance target, I'm planning on having ~50 of these on the stage at once.

View 3 Replies

Flash :: AS2 Drawing Curves For Hills - Works Randomly

Jun 30, 2011

I have an array that contains the points for drawing multiple hills. When I just draw straight lines it works fine, but that is unnatural so I want to make the top/bottom parts of a hill curved.

[Code]....

View 1 Replies

ActionScript 3.0 :: Flash.display.GraphicsPath Should Support Cubic Curves

Oct 29, 2009

I was doing something with GraphicsPath, unlucky, I couldn't solve cubic curves. I found there is a method curveTo in Graphics, but it only supports quad curves.

View 4 Replies

ActionScript 3.0 :: Flash Senocular's Path.as Points In Curves Seem Inaccurate

Aug 22, 2010

I'm working with Senocular's Path.as file and I notice that the points that it outputs on curves are not very accurate. [URL] The code has a variable for curve accuracy in there and I have tried changing it but if I set it to 1 or to 500 it doesn't effect the placement of objects on the curve.

Basically what I am doing is putting beads on a necklace and pushing them through a curve. Kinda like in the game Zuma. However when I set the positions of the beads to go up incrementally there seems to be a slight burst of speed on the curves, that speeds up at the ends and slows in the middle a little. I was wondering if anyone had any pointers on how to make the curves more accurate with this script? It is a hell of a good script by the way I'm sure I'm just stupid and not seeing something.

View 6 Replies

Performance :: Performance - Hold MouseDown To Increase Speed/power?

Sep 12, 2011

this is what i'm trying to accomplish; With a click on a movieclip (cannon_mc)a shot is being fired (ball_mc)

The longer mouse is down, the speed of wich the ball is fired with should increase.My question to you is;

What is the most efficient way to accomplish this? With a timer or something like this;

[Code]...

View 2 Replies

Performance :: Optimization - Improving Performance With Large #'s Of Objects

Jan 11, 2011

I'm devloping some library classes for flocking/steering behaviours on large numbers of objects (2000+). I'm finding that at < 500 instances, performance is reasonable. As the numbers increase, framerate bogs down.

I've seen remarkable performance with libraries such as Flint or Box2D with ridiculous #'s of particles / objects, so it should be possible to optimize / refactor my code to be a bit better.

I'm aware of the basic optimizations, such as bitwise operations and optimized for loops. Are there any more fundamental approaches I should be considering? For example, currently each instance is a vector-based MovieClip. Would working with BitmapData be more efficient?

View 1 Replies

Performance :: Flex - Using Nested ViewStacks Cause Performance To Decrease?

Nov 4, 2011

Will I take a big hit in performance using nested ViewStacks? Should I strive to handle all navigation in one ViewStack and push children manually or will the affected performance be negligible?

eg.
<viewstack>
<tabnavigator />
<tabnavigator />
<tabnavigator />
</viewstack>

View 2 Replies

Performance :: Improve Flex Performance For Invisible Views?

Mar 19, 2012

We have a medium size Flex 3.6 application that contains around 20 different page views (managed via a single lazy ViewStack) each having multiple components. Most use custom renderers.All model data is loaded at startup and changes to model instances are communicated via binding and/or collection change events.Once the user has viewed each page at least once, all page views are instantiated and happily listen to update events.Which in effect means that each time a model instance changes, all interested views receive that event and compute derived data or trigger item-renderers.I have tested and confirmed this behaviour in a proof-of-concept application. Even when setting a list to being invisible, it still listens to collection change events and invalidates any renderer affected.What would you do?

View 1 Replies

Curves Straightening When Breaking Apart Text?

Oct 7, 2009

Just installed Flash CS4 and the first thing i realized was:When I break apart text the curves straightens in some places.Is there a setting i need to set up for this not to happen?Didn't have any problems in CS3.

View 1 Replies

ActionScript 3.0 :: Get Access To Bezier Curves?

Sep 15, 2009

How to get access to Bezier Curves from ActionScript3?

View 2 Replies

Charts - Yield Curves Using Adobe Flex?

Aug 31, 2010

I want to create Yield curves using adobe flex. pls, any one have an Idea how to create yield curves in a chart using flex...

View 1 Replies

ActionScript 3.0 :: Lower Degree Of Bezier Curves?

Aug 22, 2010

I just learnt degree elevation and subdivision from some books.But I found these useless.I want to convert higher degree curves to many quadratic Bezier.

View 4 Replies

ActionScript 2.0 :: Making Drawn Curves Invisible?

Jun 27, 2006

I've made a drawn menu with curves in my root. This menu loads dynamically swf into an empty container mc. Within some of these swfs, there are full page image galleries. However, the drawn curves seem to stick on top of these swf: I can still see them although the rest of the content is invisible. Now I want to make those curves also invisible...

Code:
//API AND LINES//
box2.lineStyle (1, 0xff00ff,0);
box2.beginFill(0xCCCCCC,0);
box2.moveTo(0,0);

[code]....

Now I want to realise a function in an externally loaded swf that makes these lines/curves invisible. i was thinking myself of something like

Code:
btImages.onPress = function (){
_root.line.lineStyle(0.5,0xCCCCCC,0);
gotoAndStop (3);
}

But unfortunately thsi doesnt work.

View 6 Replies

ActionScript 3.0 :: How To Dynamically Animate Bezier Curves

May 21, 2009

I have to dynamically animate some bezier curves that have to look like this. Here is the archive of my approach and I'm not sure is the best one. I mean it kind of eats the whole processor.

View 1 Replies

ActionScript 2.0 :: Drawing Curves Like Spline Chart?

Nov 25, 2010

I have five dots(MovieClips) in my stage. I want to draw a curve which should touch all the five dots. The x position of dots are incremented by 50 px and y position is random.I can do this using lineTo. But it has not got any curve effect.

Here is the code using lineTo

Code:
_root.createEmptyMovieClip("circle",1);
with (_root.circle) {
clear();

[code]...

I tried curveTo to achieve this. But it is not working.

View 2 Replies

ActionScript 3.0 :: Drawing Arcs As Cubic Bezier Curves?

Jun 30, 2011

Does anyone know of any code examples of drawing arcs as cubic bezier curves? (Yes cubic, not quadratic.) I have 2 end points, a center point, and a radius. I suppose I would also need to define a direction as well, since it could go around clockwise or counter-clockwise.

View 0 Replies

ActionScript 3.0 :: Trace Mouse Movement To Bezier Curves?

Sep 20, 2009

I am looking to trace mouse movement and convert to curves then have a spritefollow the traced path - similar to the iphone app Flight Control.

View 2 Replies

ActionScript 3.0 :: Generating A Good Control Point For Curves?

Dec 15, 2010

Im trying to animate a particle in a way that it just curves. If your familiar with beziers (im not) then you know that there is a start point, a control point and an end point.I am finding it difficult to dynamically generate a good control point.So a line starts at x:0, y:0and ends at x:100, y:0I know just from basic mathematics that i could find out the middle point:x:50, y:0Then i could just randomly specify a y value of say... 10. So my curve now looks something like this:

starts at {x:0, y:0}
control point at {x:50, y:10}
ends at {x:100, y:0}

[code].....

View 10 Replies

ActionScript 3.0 :: Possible To Draw Trail With Curves Rather Than Straight Lines

Feb 20, 2012

I've had a look at the Graphics class in AS3 and come up with a dynamic mouse trail. It works, but it's pretty rough and ready. I wonder if anyone could give it a once-over and see if there is a more elegant and efficient way to accomplish this?[code]is it possible to draw the trail with curves rather than straight lines, so that the curves mimic the path the trail would take to smooth out the jagged lines drawn when the cursor is moving quickly?

View 2 Replies

Actionscript 3.0 :: Random Tweening - Make The Curves Of The Animation Nice And Smooth

Feb 11, 2009

Im animating an around in 3d space with papervision and Id like to make the curves of the animation nice and smooth, if I put random values into the xyz and bezier values the turns are quite weird and erratic. Does anyone know of a way I can animate something around in smooth curves, but not have to create specific values for the tween?

View 2 Replies

Flash :: CS3 (mac) Sluggish Performance?

Dec 2, 2009

PowerMac Dual 2.3 GHz G5/8 GB RAM I suspect I'm not using best practices, as this is my first project, but my the flash file is getting very sluggish to work on. The swf (AS 2.0) publishes fine and runs OK off the server and in the browser, but the Flash application is slowing down to a crawl making work very unpleasant indeed. Not that it was ever that fast to begin with. The Flash file size is presently 15 megs. It's got a log of symbols in the library and a lot of small jpgs used as navigational buttons, and utilizes many instances of the loader component to dynamically load external files: Is this too much of a demand on the app's resources? I do think that some of this has to do with a poorly implemented user interface (first attempt by Adobe to make Flash "look and feel" like a CS app), but I'm sure there are other issues.

View 1 Replies

Flash Cs4, And Other Compilers - Difference In Swf Performance?

Mar 8, 2009

I was wondering, because people do suggest this, but i've never explicitly had it verified:does the flash cs4 compiler actually generate a SWF file, that is more optimized and faster, than the flash cs3 compiler?and what about other compilers? custom as3 compilers, are there faster ones?I don't mean the time it takes to compile the .fla, but the speed of the SWF file.

View 1 Replies

Internet Explorer Flash Performance?

Nov 11, 2009

Steps to reproduce my problem:Create simple dot DisplayObject in flash

dot.graphics.beginFill( color);
dot.graphics.drawCircle( 0, 0, 2 );
dot.graphics.endFill();

Draw dot to bitmap many times a frame

bitmapData.draw( dot, null, null, "normal", null, _smoothing );

Test FrameRate in combination of browsers,flash plugin versions on Win32

Expect:

Framerate to be close in most cases

Observed:

I am seeing a 25% decrease in framerate under IE7 using Flash10b.ocx(10.0.22) and 50% decrease in framerate using Flash10c.ocx(10.0.32). PLugins under FireFox, Safari and in Mac OSX don't exhibit the same slowdown.

I would like to get help/confirmation on a performance problem that I see in Internet Explorer. The Adobe and Flash community is great on the Internet but I have been surprised to see no information on this, just a few reports about movie playback on 10.0.32 vs. 10.0.22.

My guess is that in IE flash plugin is passing draw calls to Win32 and that this is slow.

Instead of drawing each time on the bitmap using draw, cache the draw calls to a bitmap and use CopyPixels. When I do this the performance is the same across browsers, within 10%.

bitmapData.copyPixels(dot.bitmapData,dot.bi tmapData.rect,new Point(dot.x,dot.y),null,null,true);

Loop I am using:

function enterFrame(e:Event) {
bitmap.lock();
for (var i:int=0;i<particles.length;i++) {

[code]....

View 2 Replies

Test The Performance Of A User's PC In/for Flash?

Apr 8, 2010

I'm a developer on nice space MMO using Flash. On new PCs performance is quite good, but some features shouldn't be enabled on older PCs because the framerate drops to shit if we do. Flash wasn't made for this, but hey, pushing boundaries is fun.

An example is fullscreen mode. Of course every user can manually enable it, but "advertising" it to a user with and oldie PC would be a bad idea - but for the Alienware crowd it would be dumb not to.

So I want to find out how "capable" a user's PC is to decide if I should enable or disable some features for him.

View 2 Replies

Flash :: CPU Performance Proeblems With Animation?

Jun 24, 2010

Well I'm having a hell of a time trying to get my CPU down under 45% when running my current application. I've tried all sorts of optimization tricks and tips with little success and I'm at a point now where I need a fundamentally different approach.

Problem and Current Approach In the main view of my application I have a single enterframe handler.I have my frame rate down as low as 10 fps. This handler notifies 16 seperate movie clips to draw wedges of varying angles using Lee Brimelow's wedge class. So, 16 times every enterframe, I have 16 movieclip graphic clear, begin fill, draw wedge, endfill all being co-ordinated by my single enterframe handler.

[Code]...

View 2 Replies

Flash - AS3 CPU Performance With 100 MovieClip Copies

Aug 16, 2010

I have a movieclip wich has a simple movement of a simple shape. This movieclip is copied many times to create a graphical effect. As the number of copies, or the complexity of the movieclip increases, CPU usage goes up. As from 90 copies, when I keep moving the mouse over the swf movie in a circle, playback stops (hangs). When the mouse movement stops, the swf continues again at the right position, as if calculation has continued, but updating the display has not. Now this is a quadcore pc, and we're 2010. I can't believe or accept that 100 mc's is the maximum number of movieclips that can be rendered. The obvious question is what can be done to optimize CPU performance ?

I'm using AS3, flash player 9.
Movieclip is a simple rectangle shape which moves along 1 axis.
var myLinkage:Class = Class(getDefinitionByName(getQualifiedClassName(McToRepeat)));
var newMC:MovieClip = new myLinkage();
containerMC.addChild( newMC );

View 1 Replies

Professional :: Flash SWF Performance Testing And Data?

Jan 10, 2011

Looking for some recommendations on tools that can be used independent of the source (that is just on the swf) to check for Frames Per Second, total size and how often the movie loops.
 
Needed for Flash Banner ad quality assurance.

View 5 Replies

Best (performance) Way To Animate 55 Png Images In Adobe Flash?

Jan 14, 2010

We are using Adobe Flash to produce software for an interactive touch screen kiosk.I have 55 1024x768 24 bit PNG images.I want to play them (fairly regularly...once every 5 minutes or so) without them stuttering but can't find a good dependable way, main problem is I think Flash GC's them after an arbitrary idle period.Reason I'm doing this is because the FLV attempts we have made aren't sufficiently high quality.I also looked at using a H.264 but that obscures any other assets placed over it.I have a number of text fields sitting over this animation. The machine in question is a Core2 Duo, 4GB Ram, GeForce 9500GT.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved