How to Make a Portfolio in Flash

How to Make a Portfolio in Flash thumbnail
Flash can create truly interactive, digital portfolios for online viewing.

If you are an artist, having a portfolio is a prerequisite to land a job. Employers want to see demonstrated ability. Having an online portfolio is common for today's artist. The Flash program is capable of making portfolios into an interactive experience--whether you are showing off paintings, works of text or digital graphics, or websites.

Instructions

  1. Prepare your Images

    • 1

      Use a scanner to digitize your images. If you have very large works such as paintings on a canvas, have them professionally scanned or take digital photographs of them. If you wish to have high-quality (large file) representations of your artwork available, create two separate file copies of the image using a graphics-editing program. One file is for a thumbnail--no more than 600x400 resolution--and one file is for the larger, original image.

    • 2

      Use File > Import > Import to Library in Flash to import all of your (thumbnail) images.

    • 3

      Press Ctrl + L to open your library and drag your first thumbnail out onto the stage. Press F8 to turn it into a movie clip image. Make sure you set the registration point for your symbol to the upper-left hand corner by clicking on the graphical representation in the Symbol dialog box. Give the symbol any name you like and press "OK". Delete the movie clip from the stage.

    Create a Portfolio of Thumbnails

    • 4

      Drag your first movie clip symbol onto the stage. In the Properties Inspector, give it an instance name of "thumbnail_01" and re-size it to be small enough to fit on the stage with all of your other thumbnails.

    • 5

      Drag your second movie clip symbol onto the stage and give it an instance name of "thumbnail_02". Re-size the thumbnail to sit next to the first one. Continue adding and naming thumbnails until they are all on the stage. Re-size the document in the Properties Inspector if needed. Your stage should be large enough to show off your images full-size when clicked on.

    • 6

      Left-click on the first keyframe of your movie and press F9 to open the actions panel. Paste the following code, duplicating it as needed for all of your thumbnails.:

      thumbnail_01.onRollOver = over;

      thumbnail_01.onRollOut = out;

      var myX:Number

      var myY:Number

      function over(){

      myY = this._y;

      myX = this._x;

      this._x = 0;

      this._y = 0;

      this._xscale += 400;

      this._yscale += 400;

      }

      function out(){

      this._x = myX

      this._y = myY

      this._xscale -= 400;

      this._yscale -= 400;

      }

    Create a Portfolio that Links to External Images or Web Pages

    • 7

      Follow steps 1 and 2 of Section 2 above to prepare and arrange your thumbnail images.

    • 8

      Left-click on the first keyframe of your movie and press F9 to open the actions panel. Paste the following code, duplicating it as needed for all of your thumbnails.:

      thumbnail_01.onRelease = release_01;

      function release_01(){

      getURL("http://yourImageURLHERE");

      }

    • 9

      Press Ctrl+Enter to test your movie, clicking on all of the thumbnails in order to make sure that the web page with the full-size image is opening properly.

Related Searches:

References

Resources

  • Photo Credit The portfolio symbol of reflective on a white background image by onlinephoto from Fotolia.com

Comments

You May Also Like

  • How to Make a Portfolio

    A portfolio of your career is indispensable during an interview. As you toot your own horn about the great ad campaign you...

  • How to Create an Investment Portfolio

    A high-performing portfolio is every investor's goal. First, you'll need to develop your own objectives and strategies.

  • How to Make a Fashion Design Portfolio

    A portfolio displays the sampling of work done by an artist, designer or illustrator. Having a great portfolio is very important for...

  • How to Create Your Digital Portfolio

    A digital portfolio is an electronic document that contains samples of a person's work. Digital portfolios allow artists, photographers, writers and other...

  • What Is a Digital Portfolio?

    Digital portfolios provide a distillation of an individual's best work, typically generated over a year or a longer period of time. Most...

  • How to Make a Flash Portfolio Slideshow

    Create your background by renaming your first layer in the layer screen "background." Just right-click on the layer and rename. Fill the...

  • How to Make a Design Portfolio

    A stellar design portfolio will open doors, answer questions about your abilities and showcase your talents to prospective employers. Students just out...

  • How to Build a Portfolio in Flash

    The most dynamic, interactive and rich portfolios available on websites today are created with Adobe Flash. These sites allow prospective employers and...

  • How to Make a Digital Art Portfolio

    Making your own digital-art portfolio is a matter of following a few basic steps. First, you'll need to produce photographic images of...

  • How to Create An Online Photography Portfolio

    So, you want to present a professional or artistic compilation of your photographs to the world? The best way to do that...

Related Ads

Featured