Basic Flash Help & Graphic Program Reccomendation

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

  1. #1

    Default Basic Flash Help & Graphic Program Reccomendation

    Hi,

    I've just recently gotten into flash and am currently trying to work on a
    signature banner for some forum use that I have with flash. It's going to
    be around 550x150 and have contact information and a small lil movie to go
    with the theme. However, I've been workin on it for a couple of days and
    have run into some problems.

    [url]http://www.geocities.com/dazed_jaggz/Jgz_Sig.swf[/url]
    Here is a link to the actual work I was making, its nothing in depth like I
    want at the moment, but I've got to start somewhere to learn.

    List of Problems:
    1) I specified the movie properties as 550x150 (might of been 110, I'll
    update if I need to), but the movie still comes out as much larger than
    those specs.

    2) The animation of the blue panels coming up was off the movie screen and
    then comes up to it using a basic motion tween, however, they show them off
    the movie area as well. How do I make those not show up until on the actual
    signature? A mask? If so can you help me with doing this...

    3) To make the Menu move from horizontal to vertical I did a number of
    layers (3) and created guides for each letter on their separate layer to
    make them move. Is there any easier way? I feel like I basically rigged it
    instead of doing it properly.



    Also, the "skin" of the banner is something that I had trouble with. It
    doesn't look appealing at all to me, and I know I can make a much better one
    with the proper program. I have a couple of programs already for doing
    graphical work, but I feel they're not correct for making a skin like this.
    I have Adobe Photoshop 6.0, JASC Paintshop Pro 7 / Animation Shop 3, and
    Metacreations Painter 3d. I want to make really nice textures and skins for
    this banner and a site I'm going to start once I get the hang of Flash. Any
    suggestions? Thanks in advance...

    Jaggz

    **Note: I am also postin this on the macromedia.flash NG in case of no
    answer here**


    Jaggz Guest

  2. Similar Questions and Discussions

    1. Button with graphic skin, transition with states,graphic vanishes???
      Hi, Two issues. I've got three buttons (components) in a canvas (in an application) that are graphical (round graphics with transparent...
    2. Integrate Flash graphic with MySQL???
      I am a DBA and I provide data to the developers at my company in XML format. The developers create Flash graphics and use the XML to populate data...
    3. Acrobat 5 and external graphic program photoshop 7
      Hello everybody! Yes I know, Acrobat 5 is an old version and we do have newer versions but the users in our company want to work with this old...
    4. Digital camera reccomendation
      Hi there , we just bought an olympus 350 and were supprised that it is way better than we expected..its 3.2 and 3x zoom. have you had a fiddle...
  3. #2

    Default Re: Basic Flash Help & Graphic Program Reccomendation

    Jaggz,

    1. Scaling
    If you put the flash file in an html file, the scaling problem will go away.
    Otherwise, use the fscommands

    fscommand(fullscreen=false);
    fscommand(allowscale=false);

    .... to control the scaling effect. Check the actionscript dictionary,
    they're in there.

    2. Blue panels
    I don't see anything on your page that looks like what you've described, so
    I'm not sure what you mean. Sorry. :(

    3. Menu
    It looks like you want a popup menu. You can either use motion tweens,
    actionscript, or a combination of the two. You can make a movie clip called
    myMenu, with your menu graphic in it, and put a button in the first frame
    with a play action, and a stop action in the frame. Like so:

    button script:
    on(rollOver){
    play();
    }

    frame 1 script:
    stop();

    .... So the movie is stopped at frame 1, until someone mouses over the
    button. Then it plays and opens the menu, which you have to do with a motion
    tween. At the last frame of the tween, put the stop action again, and paste
    a new instance of the button that returns to the first frame:

    on(release){
    gotoAndStop(1);
    }

    I prefer straight actionscript, in which a button changes the value of a
    variable. For example, if the instance of your menu is called "myMenu" and
    you set a variable to be the desired y-coordinate (_root.myYCoordinate),
    then you can play with that. If you aren't familiar with (a) instances or
    (b) variables, then you're better off with motion tweens for right now.

    Check FlashKit. [url]www.flashkit.com[/url]
    They have lots of movies and tutorials for every level.

    J-Dogg

    "Jaggz" <sgrantomNO@SPAM.swbell.net> wrote in message
    news:l8jfb.270$bY1.133059740@newssvr11.news.prodig y.com...
    > Hi,
    >
    > I've just recently gotten into flash and am currently trying to work on a
    > signature banner for some forum use that I have with flash. It's going to
    > be around 550x150 and have contact information and a small lil movie to go
    > with the theme. However, I've been workin on it for a couple of days and
    > have run into some problems.
    >
    > [url]http://www.geocities.com/dazed_jaggz/Jgz_Sig.swf[/url]
    > Here is a link to the actual work I was making, its nothing in depth like
    I
    > want at the moment, but I've got to start somewhere to learn.
    >
    > List of Problems:
    > 1) I specified the movie properties as 550x150 (might of been 110, I'll
    > update if I need to), but the movie still comes out as much larger than
    > those specs.
    >
    > 2) The animation of the blue panels coming up was off the movie screen and
    > then comes up to it using a basic motion tween, however, they show them
    off
    > the movie area as well. How do I make those not show up until on the
    actual
    > signature? A mask? If so can you help me with doing this...
    >
    > 3) To make the Menu move from horizontal to vertical I did a number of
    > layers (3) and created guides for each letter on their separate layer to
    > make them move. Is there any easier way? I feel like I basically rigged
    it
    > instead of doing it properly.
    >
    >
    >
    > Also, the "skin" of the banner is something that I had trouble with. It
    > doesn't look appealing at all to me, and I know I can make a much better
    one
    > with the proper program. I have a couple of programs already for doing
    > graphical work, but I feel they're not correct for making a skin like
    this.
    > I have Adobe Photoshop 6.0, JASC Paintshop Pro 7 / Animation Shop 3, and
    > Metacreations Painter 3d. I want to make really nice textures and skins
    for
    > this banner and a site I'm going to start once I get the hang of Flash.
    Any
    > suggestions? Thanks in advance...
    >
    > Jaggz
    >
    > **Note: I am also postin this on the macromedia.flash NG in case of no
    > answer here**
    >
    >

    J-Dogg 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