Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default Scroll Pains!!!

    I am new to Flash and i'm trying to put together a portfolio site. My problem
    is I want to create a scrollpane which contains thumbnail buttons of my work,
    but I have no idea how to do this! I don't want to use the scrollpane component
    because I want to customize the buttons so that they are invisible and scroll
    up or down when the mouse rolls over them. I can make my thumbnail buttons and
    the invisible ones but when it come to putting it all together I am clueless.
    If someone could help me out I would be most grateful!
    Cheers.

    illustratorman Guest

  2. Similar Questions and Discussions

    1. Still having major download pains
      Hi all This is driving me totally crazy. The Flash 9 download will not work for me as I see it won't for quite a few others, I just get an empty...
    2. I want a scroll bar. I might die.
      So I've been reading through the help files and my "Flash MX2004 for Dummies" for a while now... still haven't quite got it. I have a staticframe...
    3. Scroll 2 text by one scroll bar?
      Is there anyway to scroll 2 text fields at the same time by using one scroll bar?
    4. Scroll text with scroll bar
      I've created a chunk of text and I want it to scroll in a window. Managed to put a scroll bar on it, but cannot figure out how to size the window and...
    5. Scroll help
      I don't know how to scroll texts and graphics. i mean i want to scroll them at the control of mouse (i'm not talking abt movie). Currently i'm using...
  3. #2

    Default Re: Scroll Pains!!!

    There is no reason you couldn't use the ScrollPane component. Just set the
    scroll bars to no, drag content to false, and setup your own buttons to move
    the content.

    --
    Jim Fee
    Viking Electronic Services
    jfee (at) vikinges (dot) com

    "illustratorman" <webforumsuser@macromedia.com> wrote in message
    news:c4s04f$obp$1@forums.macromedia.com...
    > I am new to Flash and i'm trying to put together a portfolio site. My
    problem
    > is I want to create a scrollpane which contains thumbnail buttons of my
    work,
    > but I have no idea how to do this! I don't want to use the scrollpane
    component
    > because I want to customize the buttons so that they are invisible and
    scroll
    > up or down when the mouse rolls over them. I can make my thumbnail buttons
    and
    > the invisible ones but when it come to putting it all together I am
    clueless.
    > If someone could help me out I would be most grateful!
    > Cheers.
    >

    James Fee Guest

  4. #3

    Default Re: Scroll Pains!!!

    How do you set up the action script so your own buttons work?
    illustratorman Guest

  5. #4

    Default Re: Scroll Pains!!!

    for which ever event you want them to work on, just have it do the
    following:

    var curr_x:Number = [path to my scrollpane].hPosition;
    curr_x = curr_x (+/-) [some value];
    if (curr_x < 0){
    curr_x = 0;
    }
    [path to my scrollpane].setHPosition(curr_x);



    you can do the same type of thing for y/vPosition.

    --
    Jim Fee
    Viking Electronic Services
    jfee (at) vikinges (dot) com
    "illustratorman" <webforumsuser@macromedia.com> wrote in message
    news:c4v58j$cgr$1@forums.macromedia.com...
    > How do you set up the action script so your own buttons work?

    James Fee Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139