A Flash Developer Resource Site

Search:

Type: Posts; User: Biff Tanon

Page 1 of 20 1 2 3 4

Search: Search took 0.23 seconds.

  1. Replies
    1
    Views
    385

    What I have done in the past is copy the text,...

    What I have done in the past is copy the text, create a new layer (under) the top text and break it apart (ctrl+b) Then just expand the fill by 1 px.
    That will give you a stroke for your text. :)
  2. Replies
    6
    Views
    744

    Just enclose your code in: [as code here /as]...

    Just enclose your code in:

    [as code here /as]

    you need ] after the as and before [ in /as.
  3. Replies
    6
    Views
    851

    Nothing special. I just picked level 3 for the...

    Nothing special. I just picked level 3 for the heck of it. :)
    You can load any level you want. The higher the number, the higher up on the stack. To have the movie replace the current one, just load...
  4. Replies
    6
    Views
    851

    Loading movies is the way to go. :) I'm not sure...

    Loading movies is the way to go. :)
    I'm not sure how you loaded your movies in to begin with, so forgive me if I am way off.
    If you used levels, you will need to load the home page into the same...
  5. Replies
    2
    Views
    520

    Depending on how you need to link it, there could...

    Depending on how you need to link it, there could be several ways. I would check with your peeps and see if there is any specail requirements. You may need to use a clickTAG or something......
  6. I think you just need to put a stop(); action in...

    I think you just need to put a stop(); action in the root timeline.
    That way, the main timeline will stop, your MC of the buttons fading in will play, then the main timeline will go again.

    So on...
  7. Replies
    6
    Views
    744

    I think it is just like... ...

    I think it is just like...


    on(keyPress"<[s]>") {
    //do something;
    }


    Just delete the [ and ]. I had to put them there for the code to show up. :)
  8. Thread: Combo Box

    by Biff Tanon
    Replies
    6
    Views
    478

    I think the problem is that there is no values in...

    I think the problem is that there is no values in the dropdown.
    I inserted some values (Data) in the dropdown and I was able to get the textbox to show the names. See if that helps.
  9. Thread: Combo Box

    by Biff Tanon
    Replies
    6
    Views
    478

    Let me know if you need any help with the code. ...

    Let me know if you need any help with the code.

    cheers!
  10. Replies
    2
    Views
    413

    Yup. For your buttons, you just have to load the...

    Yup.
    For your buttons, you just have to load the file into the frame name.

    on(release, releaseOutside) {
    getURL("yourPage.htm" ,"content");
    }


    Here is what your content frame would look...
  11. Thread: Combo Box

    by Biff Tanon
    Replies
    6
    Views
    478

    I got bit by these too. :) I had a dropdown that...

    I got bit by these too. :)
    I had a dropdown that had a list of things. I named it "Ltype"

    Put this code in the first frame (keyframe)
    You will need to change the values and such to fit your...
  12. Thread: loadNewbie

    by Biff Tanon
    Replies
    3
    Views
    404

    Glad to help! That could be a path problem....

    Glad to help!
    That could be a path problem.
    Depending on how you are loading your movies now, you need to include your container clip in your loading pat.
    So what might have worked before:
    ...
  13. Replies
    2
    Views
    405

    LINKAGE (http://www.k10k.net/) Specials>Pixel...

    LINKAGE

    Specials>Pixel Patterns.
    Make sure to read the license so you can give proper credit. :)
  14. Replies
    2
    Views
    405

    LINKAGE (http://www.k10k.net/) Specials>Pixel...

    LINKAGE

    Specials>Pixel Patterns.
    Make sure to read the license so you can give proper credit. :)
  15. Thread: loadNewbie

    by Biff Tanon
    Replies
    3
    Views
    404

    Hi! You can load movies another way also by...

    Hi!
    You can load movies another way also by using levels. If you have no real reason for using the empty clip, I would use levels.

    To answer your question, make sure your empty clip is in the...
  16. Replies
    1
    Views
    459

    What I would do is set up your clips to be...

    What I would do is set up your clips to be external clips. So when you click "about" it will load in the about section. When you click "portfolio" it will unload the "about" section and you won't...
  17. Replies
    3
    Views
    438

    I'm not sure I understand. If you have flash, you...

    I'm not sure I understand. If you have flash, you have the program?
  18. Thread: VB code?

    by Biff Tanon
    Replies
    1
    Views
    334

    Actionscript 1 is more like javascript......

    Actionscript 1 is more like javascript...
    Actionscript 2 is more "java-like" in the fact that you can create classes and such.
    Depending on how you handle forms and other server-side things, you...
  19. Replies
    2
    Views
    362

    In the first frame of your animation, you need a...

    In the first frame of your animation, you need a stop(); action. This will stop the movie from playing.
    Then on your button:

    on(release) {
    gotoAndStop(15);
    }

    That should take you right to...
  20. Replies
    1
    Views
    402

    Make sure you have the tdalign set to center and...

    Make sure you have the tdalign set to center and valignto middle.

    <td align="center" valign="middle">

    Otherwise, you could just use one cell instead of 3. Unless you have a need for the 3x3...
  21. Replies
    2
    Views
    551

    Hi I created this to randomly change images for...

    Hi
    I created this to randomly change images for a site. You should be able to use it and just change the files to whatever you need.

    // banner rotator -->
    function swap() {
    path = "";
    ...
  22. Replies
    14
    Views
    1,269

    Well It's too large to upload so I will try to...

    Well It's too large to upload so I will try to walk you through.

    Make a new layer (I called it giraffe) and put a keyframe on frame 106.
    Put your giraffetalk MC on the stage where/how you want...
  23. Replies
    14
    Views
    1,269

    AHHHH I see what you are trying to do. Give me a...

    AHHHH I see what you are trying to do.
    Give me a sec and I will try to get something for ya.
  24. Replies
    14
    Views
    1,269

    That is usually the best way yeah. I would just...

    That is usually the best way yeah.
    I would just create a new file (swf) that had what you wanted for your MC that got loaded in when you click. It will give you far more contol over the clip if you...
  25. Replies
    14
    Views
    1,269

    Ok, The code for your button should be ...

    Ok,
    The code for your button should be

    on(release) {
    loadMovie("movieName.swf", _root.containerName) {
    }

    That will load your new movie into a clip that is on the main stage.
    You just have...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center