A Flash Developer Resource Site

Results 1 to 12 of 12

Thread: Help me make fire

  1. #1
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68

    Help me make fire

    Can someone please show me or tell me how to make fire with photoshop to put on flash
    matthew thomas

  2. #2
    -Iron Myk- mykrob's Avatar
    Join Date
    Dec 2001
    Location
    Jackson, TN
    Posts
    1,356
    are you needing a still image of fire?

  3. #3
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68

    yeah

    Well i need both kinda. But in order to make it move i have to get the still one done i want the flames to look like this or simular to the one in the site.

    http://www.geocities.com/opfallenangelz/satisfied1.html
    Last edited by aussieboy; 11-03-2003 at 09:02 PM.
    matthew thomas

  4. #4
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    Link is dead even when copied & pasted.

  5. #5
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68

    thx anyways

    ok that don't help me any lol
    matthew thomas

  6. #6
    Danny Gomez Creations ® cosmiceye's Avatar
    Join Date
    Mar 2002
    Location
    under a palmtree in Jamaica waiting for psytopia 2005 to begin
    Posts
    982
    code:
    mc = createEmptyMovieClip("flame", 1);
    mc._x = Stage.width/2;
    mc._y = Stage.height/2;
    mc.lx = -40;
    mc.rx = 40;
    mc.tx = 0;
    mc.ly = mc.ry = -30;
    mc.ty = -120;
    mc.onEnterFrame = function() {
    with (this) {
    lx += (lx<-50) ? 5 : (lx>-30) ? -5 : Math.random()*2-1;
    rx += (rx>50) ? -5 : (rx<30) ? 5 : Math.random()*2-1;
    tx += (tx>10) ? -5 : (tx<-10) ? 5 : Math.random()*2-1;
    ly += (ly<-40) ? 5 : (ly>-20) ? -5 : Math.random()*2-1;
    ry += (ry<-40) ? 5 : (ry>-20) ? -5 : Math.random()*2-1;
    ty += (ty<-130) ? 5 : (ty>-110) ? -5 : Math.random()*2-1;
    clear();
    lineStyle(1, 0, 0);
    beginGradientFill("radial", [0x000033, 0xFFFF99, 0xFFFFCC], [40, 90, 80], [0, 130, 255], {matrixType:"box", x:-40, y:-120, w:80, h:270, r:0});
    moveTo(0, 0);
    curveTo(lx, ly, tx, ty);
    curveTo(rx, ry, 0, 0);
    }
    }


    ..:: P S Y T O P I A 2 0 0 5 :::..
    . . . view the psytopia reels _____RIVEND REEL | GOMEZ REEL_____ . . . . . . . . . . .

  7. #7
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    Guess this will then! Nice stuff Cosmic, but for a candle maybe?

  8. #8
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68
    matthew thomas

  9. #9
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397

  10. #10
    Danny Gomez Creations ® cosmiceye's Avatar
    Join Date
    Mar 2002
    Location
    under a palmtree in Jamaica waiting for psytopia 2005 to begin
    Posts
    982
    Originally posted by aussieboy
    yeah i mean simular to the site http://www.geocities.com/opfallenangelz/satisfied1.html
    that link is still broken man
    ..:: P S Y T O P I A 2 0 0 5 :::..
    . . . view the psytopia reels _____RIVEND REEL | GOMEZ REEL_____ . . . . . . . . . . .

  11. #11
    Danny Gomez Creations ® cosmiceye's Avatar
    Join Date
    Mar 2002
    Location
    under a palmtree in Jamaica waiting for psytopia 2005 to begin
    Posts
    982
    you can use prerendered but randomized fire effects if you export some .pngs´s of a fire animation made in a 3d prog. Works like a charm
    ..:: P S Y T O P I A 2 0 0 5 :::..
    . . . view the psytopia reels _____RIVEND REEL | GOMEZ REEL_____ . . . . . . . . . . .

  12. #12
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68

    thx

    Could i do that with photoshop? and if so how?
    matthew thomas

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center