Friday, November 13, 2009

Flash Falling Snow Effect Animation

Winter is coming, at least to North hemisphere, thus once again everything related with winter, snow, snowflakes, Christmas and Santa will be in the focus. Bloggers like to have seasonal banners and animations on their blogs.

This is the reason why you should take a look at Hayleme’s AS3 / AS2 Falling Snow Effect Animation as a good choice to enhance your blog or even as a greetings e-card solution.

flashsnowflakes

If you want to try and create your own animation you can find many helpful tutorials online, starting with Simple way to create vector snowflakes and when you’ve done with it, try to animate them using Flash Rain Effect and Flash Blurred Bubbles Effect.

*_*

Posted by flanture at 11:50:40 | Permalink | No Comments »

Monday, October 5, 2009

Free Flash Animated Background - Glowing Circles

Glowing Circles Flash file is created by author flasher3015, back in July 2008 and since than it has been sold almost 100 times. Single usage license price was $6, but now it available for free! Click on image to get the details.

freeflashfile

related posts:

_ Flash Aligned Menu V1
_ Flash Tweet Map Mashup
_ New XML Driven Flash Product Presentation
_ Advanced Flash XML Video Player
_ Flash Vector Globe Animation
_ Flashtory - Flash Photo Gallery
_ Flash Google Search - the real thing!

Posted by flanture at 15:05:29 | Permalink | No Comments »

Thursday, April 9, 2009

New XML Driven Flash Product Presentation

Treadmill is the name of this new Flash stock file, XML driven product presentation and number of features it offers is really amazing.

Prefect for products presentation, Treadmill allows you to load any of jpg, png, gif or swf files. You can have unlimited number of items displayed, but this is not proven yet, nobody used it with that much items :) However, setup is easy via XML file and each item has it own url and target. You can even use CSS formating.

You can make numerous changes via XML like scroller colors and dimensions, animation controls, border color and dimensions, margin between items and others.

Author is from Germany, Realtimefreak. This published file is only 22 Kb, opens with Flash CS3+, code is written in ActionScript 2.0.

related posts:
_ new advanced flash xml video player
_
flash vector globe animation
_
flash google search - real thing!
_
amazing welove 3D flash carousel
_
flash XML flower menu
_
animated flash calendar
_
flash background packs and tutorials
_
real fire flash effect
_
flash interactive globe and world map
_
3D XML flash carousel

Posted by flanture at 20:06:08 | Permalink | No Comments »

Thursday, March 26, 2009

Don’t Start Casino Flash Game From Scratch

With some basic ActionScript knowledge most stock Flash files are easy to adopt, modify and if required add new features. It’s always better to start from half-finished file than from scratch. Well documented stock Flash files are welcomed. If documentation is OK, methods and functions are simple to understand and extend.

When in need of creating web based casino Flash game, stock files are the right choice to go. Take a look at satya4satyanm’s ‘casino poker lotto game’, with min published size of 60kb, written in as2.0 (Flash 8+). Random spinning code is already there, no chance of hacking. Upgrade and expand the wheel if needed. Take it for a test ride. Good work there.

related posts:
_ new advanced flash xml video player
_ flash vector globe animation
_ flash google search - real thing!
_ amazing welove 3D flash carousel
_ flash XML flower menu
_ animated flash calendar
_ flash background packs and tutorials
_ real fire flash effect
_ flash interactive globe and world map
_ 3D XML flash carousel

Posted by flanture at 19:30:33 | Permalink | Comments (2)

Thursday, February 26, 2009

Flash Interactive Boy Animation

New Flash file with multiple usage, fresh and easy to manage. Interactive Flash Boy is great for products or services presentations, in educational projects, especially for teenagers, good for online quiz or different sorts of tests. It can also become part of flash games projects.

 

Flash boy animation has six different moods: very sad, crying, happy, etc. It is written in AS2.0 by greentea. File is resizable and very small, only 52 Kb.

related posts:
 _ flash vector globe animation
 _ flash google search - real thing!
 _ amazing welove 3D flash carousel
 _ flash XML flower menu
 _ animated flash calendar
 _ flash background packs and tutorials
 _ real fire flash effect
 _ flash interactive globe and world map
 _ 3D XML flash carousel

Posted by flanture at 18:50:09 | Permalink | No Comments »

Thursday, February 19, 2009

Windmill rotation example

note: this post is sequel to previous ‘about rotation’ post.

To use rotation in real world examples I have to combine it with other functions. Simple example would be windmill Flash animation. I have two movie clips, pillar which is static and windmill hands. Second one must be precisely centered in the middle of the central circle, so rotation can be perfect.

Hands movie clip instance is named mc_hands. First, we will set some variables:

var fcounter:Number = 0;
var wind_speed:Number = 0;

Next, we will create onEnterFrame function to perform hands rotation as function of wind_speed.

wind_speed = change_wind_speed(wind_speed);      if ((wind_speed < 40)&&(wind_speed > -40)) {          mc_hands._rotation += wind_speed;   }else {             wind_speed = 0;             mc_hands._rotation += wind_speed;   }
We use if else conditional loop to limit wind_speed to some reasonable amount, between -40 and 40. Beyond this limits wind will be too strong for windmill to operate without risk. Next, we have to deal with change_wind_speed function.
function change_wind_speed(a:Number):Number {     fcounter += 1;

    // wind direction change    if ((fcounter % 100) == 0) {                // every 100 frames wind changes its direction and speed            bd = Math.random()*50-25;           da = Math.random()*5-2.5;           a = a + bd + da;            return a;   }else{              // small, per frame change   da = Math.random()*5-2.5;   a = a + da;                return a;   }}
We have created situation where every frame wind changes its speed in very small amount, variable da. Change is between -2.5 and 2.5. That’s not all. To make things more random and interesting, we have another bigger change on every 100th frame. That’s why we use fcounter variable to count frames and bd variable (big difference) to change wind speed amount between -25 and 25.

Windmill is ready to generate some clean energy.

 download windmill

Posted by flanture at 14:13:32 | Permalink | No Comments »

Monday, February 16, 2009

Flash Money for Bloggers

This is something really new - flash animation : money falling from the sky. Effect shows paper dollars and quarters. Coins are 3D rendered and they look truly realistic. Take a look at image preview:

 

This is great file for all those millions of MMO (make money online) bloggers as header animation, sidebar link or whatever. Since file can easily be customized everyone can make unique creation to suit its needs. Awesome work with this one from FlashBros.

File is written with ActionScript 2.0 and opens with Flash 8 (8+). You are free to change animation speed and size, to control number and direction of falling money and this process doesn’t require any previous ActionScript knowledge.

related posts:
 _ flash vector globe animation
 _ flash google search - real thing!
 _ amazing welove 3D flash carousel
 _ flash XML flower menu
 _ animated flash calendar
 _ flash background packs and tutorials
 _ real fire flash effect
 _ flash interactive globe and world map
 _ 3D XML flash carousel

Posted by flanture at 18:32:09 | Permalink | Comments (1) »

Saturday, February 14, 2009

About rotation (beginners)

Actually this one is about _rotation, since AS2 is main subject. In AS3 underscore is gone. Some functions I’ll be using here are also deprecated in AS3 since they are included in built-in classes. Easiest way to use _rotation is to name your mc instance, say box1 and create this function:
onEnterFrame = function(){  box1._rotation += 10;}
On every new frame box1 will rotate 10 degrees clockwise. All values from 0 to 180 will rotate clockwise direction and negative values from 0 to -180 will rotate counterclockwise. Values out of range will also work like they are normalized to given interval. Sure, this is boring. To give it some more action, try to make rotation as function of mouse position. Use next code:
var speed:Number;

onEnterFrame = function(){  speed = _xmouse - box1._x;  box1._rotation += speed / 10;}
Variable speed is distance from mouse x position and our box1 movie clip. If mouse has grater x than box movie clip, speed variable is positive value and if mouse has smaller x value than box movie clip, speed value is negative and rotation is counterclockwise. If only one direction is needed we use Math.abs method to find distance and since it produce only non-negative values, rotation is always in clockwise direction.
var speed:Number;

onEnterFrame = function(){  speed = Math.abs(_xmouse - box1._x);  box1._rotation += speed / 10;}
We divide speed with 10 to get reasonable values for rotation. If we skip this step speed can be up to half of Stage width, 200 or more and box will rotate too fast.

download example

- to be continued -

Posted by flanture at 16:26:54 | Permalink | No Comments »

Tuesday, February 10, 2009

Flash Vector Globe Animation

This file is created today. It is green recycle floral transparent globe vector animation made in flash 8. Author is paulcopsey1.

 

Other interesting files from same author are: coffee cup animation, satellites orbit Earth, laptop flash animation, human heartbeat blood flow and many more.

Related posts:
_ flash google search - real thing!
_ amazing welove 3D flash carousel
_ flash XML flower menu
_ animated flash calendar
_ flash background packs and tutorials
_ real fire flash effect
_ flash interactive globe and world map
_ 3D XML flash carousel

Posted by flanture at 12:07:03 | Permalink | Comments (1) »

Monday, February 2, 2009

Flashtory Flash Photo Gallery

Cleverly named Flashtory (Flash factory), just like Flanture, represents one excellent Flash stock files author, with more than 20 awesome files over at MultiMedia Files directory. He offers vertical and horizontal Flash resizable galleries, scrolling news reader, vertical motion scroller and many other really good files.

One of the latest creations is flash netish resizable gallery album, two level Flash image gallery with HTML formatted description photos and unlimited number of entries via XML external file. Gallery interface is clean with smooth tweens, perfect for CD and web presentations. Here are some screenshots of gallery:

flash image gallery navigation bar

gallery look and feel

single image view with cool tween included

Posted by flanture at 20:12:13 | Permalink | No Comments »