A Flash Developer Resource Site

Page 1 of 3 123 LastLast
Results 1 to 20 of 50

Thread: Animated Typo Art ... WOW!

  1. #1
    Information Architect Subway's Avatar
    Join Date
    Feb 2000
    Location
    Switzerland
    Posts
    4,779

    Animated Typo Art ... WOW!

    http://fi5e.com/typo_illus.html

    Ultra inspiring.

    Fredi
    Mind Share Projects [ <- my latest projects ] [ my splash page -> ] Fredi Bach
    OS X Code (r,s) [ my Mac, web 2.0 and programming blog ]
    Not A Blog [ my personal weblog ]
    jMe Feed Aggregator [ my latest most famous project ]
    Web Command Line [ use the web like a real geek ]

  2. #2
    Señor member
    Join Date
    Dec 2000
    Location
    Huddersfield, UK
    Posts
    1,819
    Awesome
    Company, Meet Creative
    sign up, help spread the word and win a shuffle.
    ------------------------
    welcomebrand

  3. #3
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    damn nice.

    [ Hello ] | [ gerbick ] | [ Ω ]

  4. #4
    zephyr Olly K's Avatar
    Join Date
    May 2002
    Location
    The Univerity of Wales, Newport
    Posts
    1,357
    Originally posted by jamble7000
    Awesome
    - I made this!
    http://www.okkle.co.uk - creatures, art, animation and toys!
    Toilet Trumps

  5. #5
    junior master chef j_hunter182's Avatar
    Join Date
    Jun 2003
    Location
    Hull, East Yorkshire, UK
    Posts
    556
    that takes ASCII to another level.

    PS: Dont watch the book antiqua one then flick bag to Flashkit. MY EYES! MY BEAUTIFUL EYES!

  6. #6
    Didn't do it. japangreg's Avatar
    Join Date
    Mar 2001
    Location
    \o/ |o| |o_ /o\
    Posts
    784
    Hee-hee...

    'Lyin', Cheatin', That's all you seem to do...'

    as Ws form a face; couldn't figure out who it was until I looked at the address bar...

    =^_^=
    Last edited by japangreg; 06-18-2004 at 11:33 AM.
    Hush child. japangreg can do what he wants. - PAlexC
    That was Zen - this is Tao.

  7. #7
    Junior Member
    Join Date
    May 2002
    Location
    Madison, CT
    Posts
    15
    That is very cool! ^.^
    -Let them see what is not there and feel what does not touch them. When they no longer trust their senses, that is the time to strike!

  8. #8
    Senior Member webcorps's Avatar
    Join Date
    Jul 2000
    Posts
    264
    wow, that was very cool...

  9. #9
    Illuminatus! fospher.com's Avatar
    Join Date
    Jan 2002
    Location
    5th Dimension
    Posts
    2,185
    oldie but goodie...the biggie one is the best.

  10. #10
    Senior Member webcorps's Avatar
    Join Date
    Jul 2000
    Posts
    264
    i missed that one, dont like BIG too much, but wow, that was the most impressive...especially the face!

  11. #11
    ¤ ¤ ¤ PAZ ¤ ¤ ¤ nordberg's Avatar
    Join Date
    Nov 2000
    Location
    east of west
    Posts
    4,704
    hmmmm, cool stuff. who's got that kind of time?

    it's the same each time, so i assume that it's NOT code generated?

    Ah, these boys is all swelled up. So this was earlier...getting set to trade. Then, woooaaah differences.
    Blog ¤ Photos ¤ Book

  12. #12
    (sic) Covenent's Avatar
    Join Date
    Dec 2000
    Location
    Ireland
    Posts
    709
    Originally posted by nordberg
    hmmmm, cool stuff. who's got that kind of time?

    it's the same each time, so i assume that it's NOT code generated?
    I presume its code generated. Its most likely that they were generated repeatedly until a good generation came up, and as they are being generated the data on how they were generated is being stored so that they can be played back again.

  13. #13
    ¤ ¤ ¤ PAZ ¤ ¤ ¤ nordberg's Avatar
    Join Date
    Nov 2000
    Location
    east of west
    Posts
    4,704
    yeah, i assumed it was code generated, but then noticed that it repeats.
    interesting either way....

    Ah, these boys is all swelled up. So this was earlier...getting set to trade. Then, woooaaah differences.
    Blog ¤ Photos ¤ Book

  14. #14
    Senior Member webcorps's Avatar
    Join Date
    Jul 2000
    Posts
    264
    could it be that he is attaching the letters to a path through code, maybe with the new drawing components and then attaching the letters? id love to find out how this is done....

  15. #15
    (sic) Covenent's Avatar
    Join Date
    Dec 2000
    Location
    Ireland
    Posts
    709
    I'm not that impressed to be honest, I've done similar things myself.

    Basically just involves creating a new movieclip each frame with a textfield inside it whose value is say the next letter in the song (easily found using substr). Then jazz it up a bit by adding some seemingly randomness, such as rotating the newly created movieclip by a certain amount each frame etc.

    As for actually drawing the shape of the person (I only watched the B.I.G. one btw) you create a new Flash movie, import a photo of the person on stage and add some actionscript like the following on the first frame.

    Code:
    this.x = new Array();
    this.y = new Array();
    this.time = -1;
    this.lineStyle(1, 0x000000, 100);
    this.onEnterFrame = function () {
     if (Key.isDown(Key.CONTROL)) {
     this.time++;
     this.x[this.time] = this._xmouse;
     this.y[this.time] = this._ymouse;
     this.lineTo(this._xmouse, this._ymouse);
     } else {
      trace("x = new Array("+this.x+");");
      trace("y = new Array("+this.y+");");
     }
    }
    So all you have to do is to hold CONTROL to draw around the image, and then when you let go you in the Output Panel you will see the Actionscript you need to use to position each movieclip with the textfield at a particular time.

    Its obviously a little more in depth that that, but thats how I would approach it anyway.

    I didnt explain this very well did I?

  16. #16
    Member
    Join Date
    May 2004
    Location
    blah
    Posts
    81
    If you liked that, you'd like this:

    http://www.romanm.ch/
    blah.

  17. #17
    Senior Member webcorps's Avatar
    Join Date
    Jul 2000
    Posts
    264
    I didnt explain this very well did I?
    actually you did, thats kind of along the same lines that I was imagining...except for the keystroke thing of course...

  18. #18
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    fine, who wants to make me one of these then?



    flash really hates me.

    [ Hello ] | [ gerbick ] | [ Ω ]

  19. #19
    Illuminatus! fospher.com's Avatar
    Join Date
    Jan 2002
    Location
    5th Dimension
    Posts
    2,185
    Are you talking about a drawing API setting the coordinates for the face? Dont really understand where you were talking about the CONTROL part...is that some part of system of setting the coordinates thru AS? Elaborate on that a bit more please. The overall concept is easily understandeable, but Im sure the execution will take the ****s out of you...bugs galore.

  20. #20
    Senior Member webcorps's Avatar
    Join Date
    Jul 2000
    Posts
    264
    if you are talking about key.CONTROL, he is refering to the control key on the keyboard, if it is down, then the code can commence with the write output...

    and if someone does make one for gerbs, id love to see the source... ok, im lazy....
    Last edited by webcorps; 06-18-2004 at 06:31 PM.

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