A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: flash portfolio

  1. #1
    Senior Member
    Join Date
    Jan 2004
    Posts
    122

    flash portfolio

    hey guys,

    just finished my flash portfolio and wondered wot u all thought?

    www.robdewell.co.uk

    thanks, rob

  2. #2
    Junior Member
    Join Date
    Aug 2004
    Location
    Florida
    Posts
    23
    Very clean and simple - I like it!
    Fast loading and smooth too.
    Trust No1

  3. #3
    Senior Member
    Join Date
    Aug 2001
    Posts
    139
    i agree its very clean and simple but maybe too clean and simple? its hard to critique when you have your own natural bias ... but i would have to say that it needs a lot more snazzying up. just my opinion though.

  4. #4
    Flash Incompetent ChaseNYC's Avatar
    Join Date
    Jun 2002
    Location
    new york city
    Posts
    693
    hi first of all I like it, i agree with the comments above but one thing you should probably fix is the fact that your scrollbar doesnt keep scrolling if you hold down you have to keep clicking down... I had the same problem the other day and found this code useful so maybe you will also... sorry to everyone on flashkit but after over 100 posts i still don't know how to make this code soo:

    upButton.onPress = function(){
    pressing = true;
    movement = -1;
    };
    upButton.onRelease = function(){
    pressing = false;
    };
    downButton.onPress = function(){
    pressing = true;
    movement = 1;
    };
    downButton.onRelease = function(){
    pressing = false;
    };
    _root.onEnterFrame = function(){
    if (pressing == true){
    text1.scroll = text1.scroll+movement;
    }
    };

    hopefully it is self explanatory... nice site
    mmm signature

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