Creative COW SIGN IN :: SPONSORS :: ABOUT US :: CONTACT US
LIBRARY: TutorialsVideo TutorialsReviewsInterviewsEditorialsFeaturesBusinessAuthorsRSS FeedTraining DVDs

Scrolling Thumbnail Panel

COW Library : Lee Brimelow : Scrolling Thumbnail Panel
Scrolling Thumbnail Panel
A Creativecow.net Flash Tutorial


Scrolling Thumbnail Panel

Lee Brimelow
Stanford University
San Francisco Bay Area, California

©Lee Brimelow and Creativecow.net. All rights are reserved.

Article Focus:
In this tutorial, Lee Brimelow explains how to create a scrolling panel of thumbnails that is controlled via the mouse position.



Flash Video Tutorial



Please visit the forums or read other articles at Creativecow.net if you found this page from a direct link.

  Digg it Digg itAdd Comment
Comments

Scrolling Thumbnail Panel
Hello everyone, I'm a newbie.

I know this sounds very simple, but how do you get the buttons to navigate to a url when you click on them?
by Sal McAllister on May 6, 2008
cow starcow starcow starcow starcow star
Scrolling Thumbnail Panel
Hello,
I have a bar miniatures passing from side to side of the screen.
What code i put for when I move the mouse over the bar this stand?
Help please.
Thank you.
by Alex Martin on May 3, 2008
Scrolling Thumbnail Panel
as mentioned previously...great tutorial. i wanted a vertical scrolling panel (seems simple enough), but for some reason, i cannot get it to work. i have included the code. does anyone have any idea what is wrong? thanks - cricket

panel.onRollOver = panelOver;

function panelOver()
{
this.onEnterFrame = scrollPanel;
delete this.onRollOver; //allows instances within the panel to receive button clips
}

var b = stroke.getBounds(_root);

function scrollPanel()
{
if(_xmouse < b.xMin || _xmouse > b.xMax || _ymouse < b.yMin || _ymouse > b.yMax)
this.onRollOver = panelOver;
delete this.onEnterFrame;
}

if (panel._y >= 21.3)
{panel._y = 21.3;}

if (panel._y <= -982.7)
{panel._y = -982.7;}


var ydist = _ymouse - 400;
panel._y += -ydist / 7; //speed of panel larger = slower, smaller number = faster

- AHHHHH i forgot some brackets.

by cricket reichenberger on Apr 14, 2008
Scrolling Thumbnail Panel
ok nevermind... just figured out to put

on (press) {
_root.gotoAndStop("poster")
}

on each button inside the "panel"

thanks anyway
by Betillo Orga on Jan 27, 2008
cow starcow starcow starcow starcow star
Scrolling Thumbnail Panel
hey there, great tutorial. i just have one problem which im sure is the dumbest thing. everything worked perfectly but when trying to make the thumbnail call out a lrger image, nothing seems to happen.
What I did is put inside the "panel" movieclip the A.script.

on (press) {gotoAndStop (5)
}

any suggestions?

by Betillo Orga on Jan 27, 2008


Related Articles / Tutorials:
Simple Text Animation in FlashCreating Self-Writing Text in FlashBuild A Basic Site Using AS3 in FlashAction Safe:Title Safe TemplateA Rainy Cityscape in Flash pt.3


Recent Articles / Tutorials:
Promo Breakdown - Part 2Promo Breakdown - Part 1Want to be ready for Reality? Mod your camera!Changing Shortcuts with After EffectsCreating Digital Cinema
MORE


FORUMSLIBRARYPODCASTSBLOGSMAGAZINESERVICESNEWSLETTERSNEWSSTOREEVENTS

© CreativeCOW.net All rights are reserved.

[Top]