gotoAndLearn() saved by 2Advanced.net!!

I’m so happy to report that 2Advanced.net has offered to provide free hosting for gotoAndLearn(). This will be high-speed hosting and they are providing the hosting absolutely free so that we can continue this great resource. You all know 2Advanced.com as the place for some of the best motion graphics Flash work in the business. But they also run a kickass hosting service as well. I want to publicly thank Tony Novak from 2Advanced for being so generous. I would also like to thank Patrick from UltraShock as well as Rob from theFWA for taking their valuable time to help put me in touch with Tony. Seriously, thanks so much guys!

So to all the gotoAndLearn() users out there, show 2Advanced some love in anyway you see fit. We should be back online for good in a matter of days!

Also thanks to Mike and John from Adobe for trying to help out. I really appreciate it.

Lee :-)


gotoAndLearn() Server Statistics

Below is a server report from a typical week on gotoAndLearn(). Thanks so much to Sean Foushee for getting this information for me!

Date Accesses Bytes Visits
07/25/06 12,084 119,782,681,831 1,910
07/26/06 10,463 115,221,812,090 1,829
07/27/06 11,506 136,269,208,364 2,036
07/28/06 16,891 132,549,287,932 1,942
07/29/06 14,361 82,266,577,245 1,249
07/30/06 12,048 88,028,246,061 1,372
07/31/06 13,957 133,646,762,237 2,164
08/01/06 11,259 130,406,626,110 2,115
08/02/06 11,601 142,405,611,712 2,114
08/03/06 12,297 121,047,182,494 1,917
08/04/06 8,979 101,634,924,522 1,684
08/05/06 6,590 72,490,925,353 1,141
08/06/06 7,702 80,041,477,113 1,252
08/07/06 12,677 112,840,841,855 1,872
08/08/06 11,187 114,163,253,763 1,973
08/09/06 11,258 116,349,714,451 1,997
08/10/06 12,004 115,083,776,761 1,969
08/11/06 9,100 87,727,919,507 1,641
08/12/06 7,160 71,689,589,039 1,105
08/13/06 6,434 76,012,181,772 1,212

Lee


BezierTween Flake Particles

It’s been a while since I did an experiment just for the fun of it. This uses Airtight Interactive’s BezierTween class together with the Fuse tween library. Yes I know you can do bezier tweens with Fuse but I haven’t really played with that yet. Click on the image to check it out. The code for the experiment is below that.

Main Code Block
[as]import mx.transitions.Tween;
import mx.transitions.easing.*;
import com.leebrimelow.effects.*;

var leader:MovieClip = this.attachMovie(“leader”,”leader”,1);

function getNewPosition()
{
leader.x = Math.random()*Stage.width;
leader.y = Math.random()*Stage.height;
leader.p1 = Math.random()*Stage.width;
leader.p2 = Math.random()*Stage.height;
}

function tweenLeader()
{
getNewPosition();
var twX:BezierTween = new BezierTween(leader, “_x”, leader._x, leader.x, 1, true, leader.p1, leader.p2);
var twY:BezierTween = new BezierTween(leader, “_y”, leader._y, leader.y, 1, true, leader.p2, leader.p1);
twY.onMotionStopped = tweenLeader;
}

getNewPosition();
tweenLeader();

var count:Number = 2;
this.onEnterFrame = function()
{
var t:MovieClip = this.attachMovie(“flakes”,”flakes”+count,count++);
t._x = leader._x;
t._y = leader._y;
}[/as]

Flake Class

[as]import com.mosesSupposes.fuse.*;

class Flake extends MovieClip
{
public function Flake()
{
ZigoEngine.simpleSetup(Shortcuts,PennerEasing);
tweener();
}

private function tweener():Void
{
var f:Fuse = new Fuse();
f.push({target:this,scale:Math.random()*1000,tint:Math.random()*0xFFFFFF,rotation:Math.random()*520,alpha:0,seconds:Math.random()*7,func:function(){this.removeMovieClip();}});
f.start();
}

}[/as]

Lee :-)


Official plea to Adobe: Help save gotoAndLearn!!

The constant struggle to find hosting for the FLV files is really preventing me from putting more free tutorials out there for people. I’m truly hoping that Adobe sees the tremendous value of the site and will offer to provide hosting for the Flash video files. Surely there is some server space laying around :-) . Even besides the educational content, gotoAndLearn() is an example of how great Flash video has become. I know based on my experience as part of the learning advisory board that they are commited to providing the best training possible for the community. Well gotoAndLearn() has over 10,000 users who are as anxious as I am to keep the site alive.

I would be willing to put a “Powered by Adobe” graphic on the interface of the player if that sweetens the deal :-) .

Lee


AS3 Sound Spectrum Contest Results!!

There were so many great entries in this contest and deciding on a winner was hard! After much deliberation and help from the great group of mods at the GTAL forums, I’m officially declaring the winner to be trioptic with his fullscreen masterpeice! It has such a cool feel to it and is kind of like watching a painting melt. I love the soundtrack too! Trioptic will be receiving a 6-month Premium subscription to the Lynda.com Online Training Library.

The runner-up award goes to Deviant1853 for his Viz2 entry. This great entry was also accompanied by a Visualization AS3 class which helped to put it on top. Great work Deviant! Deviant will be receiving a copy of my Flash Professional 8 Video Integration CD-ROM courtesy of Lynda.com.

Below is a little Flash app I built which links to all of the entries. Here is the FLA as always. The tooltip displays the name of who created it. Be sure to have Flash Player 9 installed before checking them out!

Thanks everyone!!
Lee


1 - 5 of 7 Prev 5Next 5