my signature flash :)

  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 2nd, 2004, 7:16 am

well, Iäve done the flash movie in my signature but when the blood flyes all over the place the FPS dropps down, anyone who knows how to get it to work better and to get the file size down? its at about 340kb now and thats to much.

thanks

http://home.no/pukka/samurai.html
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post May 2nd, 2004, 7:16 am

  • UNFLUX
  • Genius
  • Genius
  • User avatar
  • Joined: Dec 20, 2002
  • Posts: 6382
  • Loc: twitter.com/unflux
  • Status: Offline

Post May 2nd, 2004, 7:28 am

the footer is fantastic! reminds me of kill bill :thumbsup:

I love it! however...

We only allow footers to be less than 6kb. So, unless you can REALLY
reduce the file size, we're going to have to ask you to remove it.
UNFLUX.FOTO
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 2nd, 2004, 7:43 am

*cries out load*

man... almost impossibly to get it down to that but I'll. try, I think the blod takes a lot of size, ill test around a bit and well see :)
Ill remove it from my sig. untill i get it to less size, If its possible :)
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 2nd, 2004, 1:33 pm

well, I wont be able to have the movie in my signature but what the heck ;)

does anyone know any good way to make blood in flash? cuz the blood atm looks abit bad, It would be great if there was an easy way, otherwize ill use photoshop and make some cool effects :)
  • UNFLUX
  • Genius
  • Genius
  • User avatar
  • Joined: Dec 20, 2002
  • Posts: 6382
  • Loc: twitter.com/unflux
  • Status: Offline

Post May 2nd, 2004, 3:17 pm

why not just draw it in flash? and duplicate the clips so the fileszize stays small.
UNFLUX.FOTO
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 3rd, 2004, 12:12 am

hmm. that could work, Ill try both and we'll se :)
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 3rd, 2004, 10:55 am

new update, blood is fixed and filesize down 100kb :)
http://home.no/pukka/samurai.html
  • UNFLUX
  • Genius
  • Genius
  • User avatar
  • Joined: Dec 20, 2002
  • Posts: 6382
  • Loc: twitter.com/unflux
  • Status: Offline

Post May 3rd, 2004, 1:40 pm

based on what this is, I have no idea why the file size is that big. You could draw everything on this in flash. Are you using jpgs?
UNFLUX.FOTO
  • FusionDesigner
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jan 12, 2004
  • Posts: 282
  • Status: Offline

Post May 3rd, 2004, 5:05 pm

What about instances, doesnt that reduce file size?
  • UNFLUX
  • Genius
  • Genius
  • User avatar
  • Joined: Dec 20, 2002
  • Posts: 6382
  • Loc: twitter.com/unflux
  • Status: Offline

Post May 3rd, 2004, 5:08 pm

saying he draws the whole thing in flash once, and then reuses it over as he needs -- yes. He could easily do this footer in flash usingonly 5 graphics, and then as many instances of each necessary for the animation.

- sword
- dude
- bg
- blood
- dudes
UNFLUX.FOTO
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 4th, 2004, 7:16 am

I have no jpgs.
I've made it so that the main characters animations is made in the scene and the "dudes" are the same movieclip. I think its the blood that makes the file size huge since the first animation I made was by drawing the blod with the pensil. I've erased most of that blood now but some is still there. could try to fix that but i dont think that'll do much.
  • joebert
  • Sledgehammer
  • Genius
  • No Avatar
  • Joined: Feb 10, 2004
  • Posts: 13455
  • Loc: Florida
  • Status: Offline

Post May 5th, 2004, 1:39 am

I'm no expert but I don't think that animation can be done under 6KB(13 if the mods let you sacrifice your avatar :wink: ) without creating/animating everything with actionscript.

Which means ALOT of stuff like this, :wink:
Code: [ Select ]
_root.createEmptyMovieClip( "box", 1 );
       with ( _root.box ){
           colors = [ 0xFF0000, 0x0000FF ];
           alphas = [ 100, 100 ];
           ratios = [ 0, 0xFF ];
           matrix = { a:200, b:0, c:0, d:0, e:200, f:0, g:200, h:200, i:1 };
       beginGradientFill( "linear", colors, alphas, ratios, matrix );
       moveto(100,100);
       lineto(100,300);
       lineto(300,300);
       lineto(300,100);
       lineto(100,100);
       endFill();

       }
box.duplicateMovieClip("box2",2);
  1. _root.createEmptyMovieClip( "box", 1 );
  2.        with ( _root.box ){
  3.            colors = [ 0xFF0000, 0x0000FF ];
  4.            alphas = [ 100, 100 ];
  5.            ratios = [ 0, 0xFF ];
  6.            matrix = { a:200, b:0, c:0, d:0, e:200, f:0, g:200, h:200, i:1 };
  7.        beginGradientFill( "linear", colors, alphas, ratios, matrix );
  8.        moveto(100,100);
  9.        lineto(100,300);
  10.        lineto(300,300);
  11.        lineto(300,100);
  12.        lineto(100,100);
  13.        endFill();
  14.        }
  15. box.duplicateMovieClip("box2",2);
Strong with this one, the sudo is.
  • puKKa
  • Proficient
  • Proficient
  • User avatar
  • Joined: Apr 02, 2004
  • Posts: 274
  • Loc: Sweden
  • Status: Offline

Post May 5th, 2004, 4:15 am

dame!
I wont do that, I think ill just make it a bit longer or something instead and make a really small one with only the samurai to show of some moves in a small box for my sig. :)
  • FusionDesigner
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jan 12, 2004
  • Posts: 282
  • Status: Offline

Post May 8th, 2004, 2:49 am

Whats all that AS do :?
  • lostinbeta
  • Guru
  • Guru
  • User avatar
  • Joined: Jun 26, 2003
  • Posts: 1402
  • Loc: Philadelphia, PA
  • Status: Offline

Post May 9th, 2004, 9:57 am

joebert: Drawing with actionscript isn't necessarily better than drawing on the stage. For each character and line of code, your file size goes up just a tad.
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post May 9th, 2004, 9:57 am

Post Information

  • Total Posts in this topic: 17 posts
  • Users browsing this forum: No registered users and 37 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
cron
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.