Author Topic: Flash Game tutorials  (Read 2837 times)

0 Members and 1 Guest are viewing this topic.

Frogfish Expert

  • Guest
Flash Game tutorials
« on: April 02, 2006, 01:27:48 am »
Anybody ever made a Flash Game?

garyfan

  • Guest
Flash Game tutorials
« Reply #1 on: April 02, 2006, 02:03:59 pm »
No, but I've heard of a few programs that are good.

spongegor

  • Guest
Flash Game tutorials
« Reply #2 on: April 02, 2006, 02:04:42 pm »
yeah, so have i.

bub1028

  • Guest
Flash Game tutorials
« Reply #3 on: April 06, 2006, 06:44:39 pm »
No.  I just got Flash, and I'm trying to build a site, much less a game.

Offline VulturEMaN

  • Global Moderator
  • SpongeBob
  • *****
  • Posts: 3,853
  • Gender: Male
  • Dengaku Man xD
    • View Profile
Flash Game tutorials
« Reply #4 on: April 07, 2006, 07:27:14 am »
ummm...this thread belongs in comp n games...not the welcome section....

Offline Chongster

  • Honorable
  • SpongeBob
  • ******
  • Posts: 1,119
  • Gender: Male
  • ^ George ^
    • View Profile
    • www.simon-chong.co.uk
Flash Game tutorials
« Reply #5 on: April 07, 2006, 09:16:21 am »
Frogfish Expert, we have these seperate forums for seperate topics, this one belongs as Vultureman quite rightly said in the Computers and Video Games section. Please be more careful where you create topics in future.

UltraSpongeyDude

  • Guest
Flash Game tutorials
« Reply #6 on: April 07, 2006, 08:02:45 pm »
Havent made any flash games, but I really want to. Anyone have any tutorials? :ph34r:

bub1028

  • Guest
Flash Game tutorials
« Reply #7 on: April 08, 2006, 04:41:37 am »
Google It.

That's what I do.

Offline SpongeBrain

  • SpongeBob
  • *****
  • Posts: 2,412
  • YEEAHHHHHHH
    • View Profile
Flash Game tutorials
« Reply #8 on: April 08, 2006, 09:58:46 am »
Flashkit.com = Good resource.
All Time

Weekly


carterhawk

  • Guest
Flash Game tutorials
« Reply #9 on: April 09, 2006, 07:22:00 pm »
http://sbmania.net/carter/flash.html

That animation is being generated through pure action script. the only thing that exists on the stage is the tall rectangle. well, a bunch of them. all identical. every aspect of the rectangles (speed, width, transparency) are all changed with each pass across the screen using the random number function.

In the link above, i layered the same banner 5 times so you can see how the random realy goes. Just give it 60 seconds to come up to full speed :D

Code: [Select]
onClipEvent (load) {
    var i = (Math.random()*100);
    var j = i/4;
    i = (Math.random()*100);
    var k = i/5;
    i = (Math.random()*100);
    var n = i/20;
    var l = 2+n;
    var m = this._x;
    this._width = j;
    this._alpha = k;
    if (i<50) {
        var z = 1;
    } else {
        var z = 0;
    }
    if (z == 0) {
        var o = 0-15;
        var p = i*o;
        this._x = p;
        var y = 0;
    } else {
        var p = (i*30)+1100;
        this._x = p;
        var y = 1;
    }
}
onClipEvent (enterFrame) {
    if (this._x>=900 and this._x<1000) {
        i = (Math.random()*100);
        j = i/4;
        i = (Math.random()*100);
        k = i/3;
        i = (Math.random()*100);
        n = i/20;
        l = 2+n;
        this._width = j;
        this._alpha = k;
        var a = 0;
        this._x = 850;
        y = 2;
    } else if (this._x<=-150 and this._x>-300) {
        i = (Math.random()*100);
        j = i/4;
        i = (Math.random()*100);
        k = i/5;
        i = (Math.random()*100);
        n = i/20;
        l = 2+n;
        this._width = j;
        this._alpha = k;
        var a = 1;
        this._x = -100;
        y = 2;
    }
    if (a == 0 or y == 1) {
        m = this._x;
        this._x = m-l;
    } else if (a == 1 or y == 0) {
        m = this._x;
        this._x = m+l;
    }
}
« Last Edit: April 09, 2006, 07:27:04 pm by carterhawk »

Offline IZ

  • Administrator
  • SpongeBob
  • *****
  • Posts: 7,289
  • Gender: Male
    • View Profile
    • http://www.spongebobcrazy.com
Flash Game tutorials
« Reply #10 on: April 13, 2006, 09:19:39 pm »
I've tried to, but I don't have the patience.

bub1028

  • Guest
Flash Game tutorials
« Reply #11 on: April 14, 2006, 09:55:16 am »
Holy crap.  Action Script is not for me.