A Flash Developer Resource Site

Search:

Type: Posts; User: tigersbite

Page 1 of 13 1 2 3 4

Search: Search took 0.80 seconds.

  1. Replies
    1
    Views
    2,223

    Here's a work-in-progress that may help you out....

    Here's a work-in-progress that may help you out.
    I have movie clip in the library containing a 5x5 black circle and a dynamic text field named "mytext".


    var width = 100;
    var height = 100;
    var...
  2. Replies
    2
    Views
    389

    I'm not aware of any way to completely protect...

    I'm not aware of any way to completely protect flash content. There are a variety of software packages available that can rip content from .swf files - even protected ones.
  3. Replies
    11
    Views
    518

    Where exactly is the problem? It was appearing to...

    Where exactly is the problem? It was appearing to work correctly with the size change, but I'm not as familiar with the file. We'll get it working.
  4. Replies
    11
    Views
    518

    Make sure the shape inside your movie clip...

    Make sure the shape inside your movie clip (frame) is the same size as the instance you placed on the stage. If you edit the frame clip, you'll see the square is 38.8 x 38.8. Make it 40 x 40, then...
  5. Replies
    2
    Views
    410

    Click on frame 60 and uncheck the SCALE checkbox...

    Click on frame 60 and uncheck the SCALE checkbox in the Porperties panel. Should do the trick
  6. Hard to tell ehat's going wrong without viewing...

    Hard to tell ehat's going wrong without viewing the flash file. The code you have certainly shoudl increment the variable.
    fyi - you can shorten the statement by:
    volume +=1;
    it does the same...
  7. Thread: Masking

    by tigersbite
    Replies
    1
    Views
    444

    Oh, you've slammed smack dab into one of the more...

    Oh, you've slammed smack dab into one of the more annoying aspects of Flash 5. You can't dynamically move a mask or drag it around. You can tween it.. but you can't manually move the loopy thing....
  8. Replies
    7
    Views
    647

    add arguments to startDrag(minX,minY,maxX,maxY)...

    add arguments to startDrag(minX,minY,maxX,maxY)
    This creates a rectangular area within which the clip can be dragged.
  9. First, on the scrollbar issue, you would have to...

    First, on the scrollbar issue, you would have to set a flag when you press a button, and resets it when you release. Then, have a movie clip whose sole purpose is to loop and move the content so long...
  10. Replies
    1
    Views
    692

    Test to see if the piece is within a range...

    Test to see if the piece is within a range instead of exact coordinates.
    for example:

    if ((_x> targetX-10 || _x<targetX+10)) && (_y> targetY-10 || _y<targetY+10))
  11. I just need to nail down exactly what you need....

    I just need to nail down exactly what you need.
    As is, the script works if you are moving your mouse around the original window (the one that opens the link).
    I'm guessing that you want the script...
  12. Replies
    2
    Views
    501

    You can display 360 panoramas in flash by...

    You can display 360 panoramas in flash by scrolling the image left/right. It doesn't create the fisheye effect you get with the java plug-ins. Just constant scrolling.
    To create the panoramic image,...
  13. Replies
    2
    Views
    423

    "Flash Player poses threat"

    Not sure if this has been posted yet, but I saw this today.
    http://www.cnn.com/2003/TECH/internet/03/07/macromedia.warns/index.html
  14. Yes, it is possible. Hopefully, this will help...

    Yes, it is possible. Hopefully, this will help steer you in the right direction.
  15. Replies
    6
    Views
    702

    A couple things. First, I'd suggest getting rid...

    A couple things.
    First, I'd suggest getting rid of the 2nd and 3rd keyframes on the main timline. Place the menu instances all in frame 1.
    Second, give an instance name to the SubBoardsMenu clip...
  16. Here's a modified version for you. This way, you...

    Here's a modified version for you. This way, you can add any number of items (change proroll's width) and the scrollbar and scroll limits will automatically adjust.
  17. Not sure which book. I've gotta get one myself to...

    Not sure which book. I've gotta get one myself to get up to date on MX. I just thumb through them to see which one seems like my speed.
  18. Replies
    6
    Views
    622

    Most likely they linked the sound from the...

    Most likely they linked the sound from the library and manipulated it using an actionscript sound object. Not hard to do.

    You have to link to a sound in the library, create a sound object, then...
  19. Replies
    2
    Views
    406

    Just keep in mind that there are applications...

    Just keep in mind that there are applications that easily rip Flash elements and actionscript from compiled flash movies, so Flash is not a secure solution.
  20. Here's a solution.

    Here's a solution.
  21. Replies
    2
    Views
    512

    The best way I can think of right off the bat is...

    The best way I can think of right off the bat is to save each sushi bit as a .png with transparency active. Import each .png into flash, convert each to a movie clip. Then, you can do any variety of...
  22. Replies
    1
    Views
    354

    Here's a small sample that shows the reversing...

    Here's a small sample that shows the reversing effect I think you want. Inside each movie clip there's a hidden button that controls the status of the clip. Rollover and it plays. Roll off and the...
  23. Replies
    5
    Views
    623

    See if this example is what you're looking for....

    See if this example is what you're looking for. The first is just a 20 frame movie clip. The second has a gotoAndPlay(1) added frame 20.
  24. Replies
    5
    Views
    623

    Instead of allowing the clip to loop on its own,...

    Instead of allowing the clip to loop on its own, place a gotoAndPlay() in the last frame to force it to loop.
  25. Replies
    2
    Views
    459

    Do you have an updated video card driver? Also,...

    Do you have an updated video card driver?
    Also, try running Flash 5 while in safe mode (press and hold F8 during bootup) and see if the problems are still present. If it works ok in safe mode, then...
Results 1 to 25 of 314
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center