ActionScript 2.0 :: CPU Heavy Alpha Shift?

Sep 22, 2006

So i am building a site for a client, and in it i have incorporated an automatically cross-fading background made of large photos.Wheneve they cross fade programatically my CPU gets WORKED!

I am using

Code:
if (this.photo1.imageholder1._alpha<100-this.fadeSpeed) {
this.photo1.imageholder1._alpha += this.fadeSpeed;
}

as the fading command. Is it just a characteristic of flash that it HATES to do ALPHA changes?

View 6 Replies


Similar Posts:


ActionScript 2.0 :: Heavy SWF File Size

Aug 3, 2010

I have an expandable banner project to do and the final swf file has to be under 40kb. My swf size is actually 144kb and I don't know what to do to get to 40kb.I've tryed to compress my images but I can't to 40kb even if they are all squashed up.I've tryed also to load my PNG's file externally using Loader but it just don't decrease the swf size.

View 0 Replies

ActionScript 2.0 :: Snow Effect Not Processor Heavy?

Nov 18, 2008

Has anyone found a script in AS2 for a nice snow effect that it doesn't make the computer go crazy with so much processor calculations?I tried almost every script around and makes my website completely crash most systems.my flash file is about 600k with quite a few menus and 930 x 630...so its a bigger res than most

View 4 Replies

Java :: Use Eclipse And Make Heavy Use Of The M2Eclipse Plug-in

Oct 30, 2010

Our project badly needs to move to Flexmojos4 to get a fix, but this requires Maven 3. Our project makes extensive use of Maven and we really love it, but have configured it very heavily. Between a dozen modules we probably have 50+ pages of XML configuration.

We also use Eclipse and make heavy use of the M2Eclipse plug-in. We also use the following Maven plug-ins:

Resources
BuildNumber
SQL
Hibernate3
Flexmojos

[Code]...

View 2 Replies

ActionScript 3.0 :: Heavy Calculation Prevents Screen Update?

Feb 8, 2009

I'm not 100% sure thats the problem, but It seems so. One other thing it could be, is maybe the screen doesnt update untill an event listener has completely finished?

Anyway here is my problem: My app does some pretty heavy calculations when the user clicks on a certain button. From testing, the calculation can take up to 3 seconds to complete. What I want to happen is, as soon as the user clicks the button, a "please wait" appears in the middle of the screen. 3 seconds later, after the calculations have completed, the "please wait" sprite disappears again.

However I cant seem to make that happen. Right now, when the user clicks the button, the please wait sprite does not show up at all. Using trace statements I'm pretty sure whats actually happening is, after the 3 seconds of calculations, the please wait sprite is set to visible and then invisible at essentially the same time, so you dont actually get to see it on screen.

Heres the code:

Code:
private function mouseDownListener(e:MouseEvent):void {
pleaseWaitSprite.visible = true;
trace("now visible");

[code]....

The trace statements "now visible" and "now invisible" show up at exactly the same time in the output window, even though there is 3 seconds of calculations between them. I guess the same thing is happening with the visible code.

Ive tried e.updateAfterEvent() but not surprisingly that didnt help. I think I need something more like e.updateDuringEvent() ... ?

View 14 Replies

IDE :: SWF Optimization - Heavy Graphics - Convert A MovieClip To Sprite

Jun 19, 2009

I'm coding games that come with the graphics done. Unfortunately the designer has some bad practices, such as not using Sprite symbols - never. And the files have dozens (even hundreds) of symbols in the library, very few of them with any animation. I would like to re-brand such symbols as Sprite to save some CPU (and maybe even kB), but my graphics-related skills are very low. Where should I start? Check and convert the symbols at authoring time or it's possible to do this at runtime? Can I effectively convert a MovieClip to Sprite (I'm guessing casting to sprite won't help much) or another light image type?

View 3 Replies

Flex :: BitmapData Heavy Usage - Memory Disaster (Spark / FB4)

Apr 12, 2010

I've got a flex component which works pretty well but unfortunately turns into a disaster once used in a datagroup item renderer of about 40-50 items. Essentially it uses bitmapdata to take screenshot of a fully-rendered webpage in mx:HTML (this version of webkit rocks btw, miles better than flex 3). The code is pretty self-explanatory I think. [URL]. I've optimized it all I could, browsed, search for answers and already trimmed it down a lot, I'm desparate to reduce the memory usage (about 600mb after 100 draw). The Garbage collector has little effect.

View 3 Replies

ActionScript 3.0 :: Download Music And Heavy Files To Users Hard Disk?

May 1, 2010

MMO best practice. Download music and heavy files to users hard disk? I have just downloaded a Hello Kitty MMO app for research (for my kid of course).I am developping my English teaching app with LOADS of classical music, mp3 sentences and heavy background bgs. Would the best idea be for client to download these to their hardisk ie I would not need to stream them and therefore save a fortune on bandwidth charges from my ISP?

View 3 Replies

Application :: Heavy Flash Animation /interactive Infographic Be Adapted Or Made Into An App?

Jan 12, 2012

My question is can this site's [URL]..flash animation architecture/ interactive infographic be made or adapted into something more accessible like an app?

What would it take do to something like this. I need help wrapping my head around a project like this.

View 2 Replies

ActionScript 2.0 :: Menu To Call And Load Image-heavy Movies Separately

Jan 13, 2010

I am trying to create a flash service tutorial to appear on a website that will be able to play and load 6 steps of a process separately when prompted with a button click. I do not want to link back and forth between web pages to do so, but rather have the files loaded on demand and played within one flash movie "viewer" to keep things clean.

Each movie is going to be somewhat image heavy. load each of the 6 step movies within one main movie file?

View 2 Replies

ActionScript 3.0 :: Delegate Heavy Computations To Be Handled Asynchronously (on The User's Machine)?

Aug 20, 2010

Is it possible to delegate heavy computations to be handled asynchronously (on the user's machine)? When it's done, I could just fire an event, catch the new data, and update. I have played with this for lesser operations, by just setting up a que and only handle a few operations per frame; but is there another method? That feels like a heavy handed workaround, and it won't scale with faster/slower machines. IE: 12 operations per frame works fine on the test machine, but my machine can handle more, but won't do it because it's hard coded.

View 2 Replies

ActionScript 3.0 :: Setting The Alpha Of MovieClip With Objects Changes The Alpha Separately For Each Object

Oct 23, 2010

[URL] i want the object to fade out but in the object there's a lot of overlapping pictures and each becomes half transparent. how to make the movieclip to change the alpha as it was without objects?

[Code]....

View 2 Replies

ActionScript 3.0 :: Curious Tip: Flipping Sprite.alpha=0 To Alpha=1 Back And Forth With No Logic?

Dec 15, 2011

just spotted this curious trick. If you want to flip something to go invisible on a click, and then reappear on another click (etc etc), try this:

create the sprite, setting alpha to either to 1 OR -1
mySprite.alpha=1; //OR
mySprite.aplha=-1;

[code]....

View 9 Replies

ActionScript 2.0 :: Loading A Movie A Solid Shape Is There With Alpha At 100% Then Over A Period Of 5 Secs Its Alpha Is Reduced To 0?

Jun 27, 2003

using AS, on loading a movie a solid shape is there with alpha at 100% then over a period of 5 secs its alpha is reduced to 0.

i'm new to this......please help if you want to if you don't have a good weekend but think of me struggling onwards and upwards...

View 14 Replies

ActionScript 2.0 :: Colour Shift In Swf?

Jun 21, 2010

I have a psd that is to be the background of a flash site that i'm working on. I've tried every combination of exporting from photoshop and flash but the end result (in the browser) is always significantly brighter.Does anyone know what the best prossess for keeping the colour of imported raster content accurate in swf while keeping the size moderate?

View 1 Replies

Grouping Causes Motions To Shift?

May 7, 2009

I have a simple movie of a person - torso, arms, legs, each on a separate layer.  I'm adding a walk cycle and use tweens to move the arms and legs.  This works fine when I export to an swf.  But when I group and try to export to a movieclip, the arms jump way up.  This seems like a simple problem of adjusting coordinates, origins, etc.  But I'm kind of a newbie, so does someone have a suggestion for me?  How do I export to a movieclip and have it playback the same as when exporting to a swf?

View 5 Replies

ActionScript 2.0 :: Colour Shift In Swf

Jun 21, 2010

I have a psd that is to be the background of a flash site that i'm working on. I've tried every combination of exporting from photoshop and flash but the end result (in the browser) is always significantly brighter. Does anyone know what the best prossess for keeping the colour of imported raster content accurate in swf while keeping the size moderate

View 1 Replies

ActionScript 3.0 :: XML Imported Links Shift?

Jan 14, 2009

I have an issue with links in a text box which are pulled in from a xml file.The problem is that when I have the antialias setting set to Advanced the links will shift their position to the left when you hover over them. If i turn the antialias setting off or to Normal the problem is fixed, but the text doesn't look as nice.

Here are the settings for my textbox.

Code:
bodyText.defaultTextFormat = txtFmt;
bodyText.styleSheet = cssStyle;
bodyText.embedFonts = true;
bodyText.antiAliasType = AntiAliasType.ADVANCED;

[code].....

View 0 Replies

ActionScript 3.0 :: Distinguishing Between Left And Right Shift On Mac?

Jun 17, 2009

As mentioned in this post KeyLocation.LEFT and KeyLocation.RIGHT only work a Windows PC, not on a Mac. I found that out the hard way during a presentation today :X

Is there any fix to determine which shift key is pressed on a Mac?

View 5 Replies

ActionScript 2.0 :: Way To Say Like If BOTH Shift And Space Are Down GotoAndStop?

Jan 12, 2010

I was just wondering is there a way to say like if BOTH shift and space are down gotoAndStop(3);?

View 1 Replies

ActionScript 2.0 :: Resize The Clip If The Shift Key Is Down

Apr 19, 2010

when a moive clip is clicked in my program it's instance is saved in a var _root.dis_one. My code makes the movie clip move when the shift key isn't down according to the arrow keys, and it is supposed to resize the clip if the shift key is down _root.dis_one is storing the proper var, but i am having a trouble with the resizing part. It will rezise a pre-maid movie clip, but it won't resize my dynamic movie clips. is there a certain way to rezise a dynamic MC?

[Code]....

View 3 Replies

ActionScript 2.0 :: Shift The Co-ords Of The Mouse?

Jul 30, 2006

Am having a poke around with an area when pressed, it will reloated the mouse position.I dont think it is this simple.

_root.nozone.onPress = function(){
_root._ymouse = 10;
_root._xmouse = 10;
}

View 1 Replies

F5 :: Stop JPGs Doing Jiggle Shift Error?

May 1, 2009

I broke apart all JPGs and converted them to symbols.And they all have correct X & Y coordinates.But while tweening the JPGs shift a tiny bit. Anyone know how to stop the JPGs doing the jiggle shift error?(I've seen it before, and thought I could fix it by breaking apart the JPGs and making symbols out of them, but the JPGs still have that quiver bug now)

View 2 Replies

ActionScript 2.0 :: Circularly Shift Array Elements?

Aug 2, 2009

why the below script does not keep circularly shifting my array (ie. array = [1,2,3,4] -> [4,1,2,3]->[3,4,1,2] etc..)

var myArray:Array = new Array();
var tempArr:Array = new Array();
myArray[0] = 1;

[code]....

View 1 Replies

ActionScript 3.0 :: Pop Or Shift More Than One Element Of An Array In The Same Time?

Dec 28, 2011

How can I pop or shift more than one element of an array in the same time? I have been searching, and I can't find the answer anywhere. My new project is to pop or shift 3 element of an array of let's say of 100 elements, and with a click of a button display them into a textfield having in mind the date factor. If today I click the button, it'll give me the same numbers, all the day; but when tomorow i'll click the button, it will give me another set of numbers all the day long, and so on. Do I make sense and continue, or I just forget about it ? I have the button, the array, how to acces the date, and flash CS 5.5. All I need I believe, is How to pop or to shift more than one element.

[Code]....

View 6 Replies

Actionscript 3 :: Polarized Shift Of Percentage Values?

Jan 1, 2010

differencePercentage = Math.round(((Pay.init / Pay.current) * 100) - 100);

and that gives me the difference in percent between initial and current pay, but it's reversed. When it's positive i.e. pay is above the initial value it says -X%, and when it's below it says X%.

View 2 Replies

Flash :: Bitwise-shift Operations In AGAL?

Jan 18, 2012

If I encode all colors into one single float value (RGB) as:

//Each Channels are from 0 - 255
red << 16 | green << 8 | blue;

How can I retrieve those color channels back in AGAL? There doesn't seem to be any bitwise operators.

View 2 Replies

ActionScript 2.0 :: Link Shift Text On Hover?

Aug 9, 2011

I have attached and sample file with problem that show when you hover over the red link it shift the text. It only happens when I use antiAliasType = advance or my text field set to readability in combination to external or internal StyleSheet.

View 6 Replies

ActionScript 3.0 :: How To Pitch Shift Recorded Audio

Jan 15, 2012

What I'm trying to do is take a recording from the mic which is converted into bytearray. It will look something like this

ActionScript Code:
function startRecord():void{
mic.addEventListener(SampleDataEvent.SAMPLE_DATA, micSampleDataHandler);
}function stopRecord():void{
mic.removeEventListener(SampleDataEvent.SAMPLE_DATA, micSampleDataHandler);
soundBytes.position = 0;
[Code] .....

View 2 Replies

ActionScript 2.0 :: Emulate The Nissan Shift Intro?

Mar 28, 2003

I am trying to make something along the lines of http:[url]....isn't that cool? here is what i have so far http:[url]....

View 13 Replies







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