Search Our Web Design Blog...

Thursday, December 16, 2010

50 sites...

http://www.1stwebdesigner.com/inspiration/50-gorgeous-flash-websites-you-definitely-should-see/

Tuesday, December 14, 2010

code for flash and timeline

requirements for Flash site

  • 1024x768
  • 3+ flash buttons/pages to your site
  • buttons must be movie clips with rollover events
  • 3+ pages must contain content
  • each page must contain an animated movie clip which loops throughout the page/time
  • transitions between pages (a simple tween to play after click)
  • a background that is appropriate to your site/product
  • a heading/title for each page
  • published as .html file

Tuesday, December 7, 2010

timeline


You need to make a new layer for each "page" of your site and add a frame label at a specific point for that "page". We will make transitions later, for now you just want to have some area for content on your timeline

code to add function to buttons in flash

EVERYTHING IN PINK NEEDS TO BE CHANGED TO MATCH YOUR DOCUMENT:


yourButtonsInstanceName
.addEventListener(MouseEvent.CLICK, functionname);

function
functionname(event:MouseEvent):void
{
gotoAndPlay("framelabel");
}