A Flash Developer Resource Site

Search:

Type: Posts; User: @

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: pan and zoom

    by @
    Replies
    5
    Views
    4,321

    Well, since I put in the drag and drop code, you...

    Well, since I put in the drag and drop code, you are going to need two things. Both of them are going to be if statements. You are going to need to check the x and y on mouse move and on button...
  2. Replies
    5
    Views
    400

    without seeing the source file, I really can't...

    without seeing the source file, I really can't help you debugg this anymore than I have. There might be an issue with using the same instance of a button on the same layer, or you might be using...
  3. Replies
    5
    Views
    400

    try not using a - in the frame label. just use...

    try not using a - in the frame label. just use healthDef and healthChart
  4. Thread: pan and zoom

    by @
    Replies
    5
    Views
    4,321

    Understanding the approach to this project is...

    Understanding the approach to this project is key.

    You are going to have 2 things here. A map (image) and a mask.

    Are you dynamically loading the "map"? If so, that's giong to involve some...
  5. Well, your code snipet has "dancGIF.load" not...

    Well, your code snipet has "dancGIF.load" not "danceGIF.load". Also, it isn't ever defined. You need a var danceGIF = new something();.

    I am guessing you are trying to load an xml list of images...
  6. Replies
    3
    Views
    471

    The loaders are just that. A loader. You can...

    The loaders are just that. A loader. You can delete them or let garbage colleciton pick them up. The loader should load something INTO a container.
  7. Replies
    5
    Views
    400

    Try changing it to gotoandstop();

    Try changing it to gotoandstop();
  8. CS3 /nod

    /nod
  9. Replies
    14
    Views
    13,347

    something like this.. var timerFormat = new...

    something like this..

    var timerFormat = new TextFormat();
    timerFormat.font = "Courier"; //replace with what ever font.. KEEP IN MIND THE SYSTEM HAS TO HAVE THE FONT!...
  10. Replies
    6
    Views
    1,057

    Flash8 The enemies tend to randomly explode before the...

    The enemies tend to randomly explode before the missile has even hit them. (FIXED)
    The original enemy movie clip doesn't even want to explode. (FIXED)
    The score counter won't tick for each kill....
  11. Replies
    6
    Views
    1,057

    Flash8 Okay.. i guess we are going to have to move it...

    Okay.. i guess we are going to have to move it off screen too..


    onClipEvent (load) {
    if(_root.myFlag == undefined) {
    _root.myFlag = true;
    this.removeMovieClip();
    _root.laser._y = -30;
    }...
  12. Replies
    6
    Views
    1,057

    Flash8 Next fix.. this is for the bug that shows up.....

    Next fix.. this is for the bug that shows up.. probably from the get go.. but even more noticable with my fixes from above..

    change the code on the missile from..

    onClipEvent (load) {

    ...
  13. Replies
    6
    Views
    1,057

    Flash8 Second problem.. on the control layer you...

    Second problem..

    on the control layer you have..

    for (i=2; i<=numEnemy1; i++){
    enemy1.duplicateMovieClip( "enemy1"+i, i+100 );

    }

    change it to.. (remove the 1 in "enemy1")
  14. Replies
    6
    Views
    1,057

    Flash8 First problem.. on the control layer of the...

    First problem..

    on the control layer of the root.. put this..

    score = 0;

    select the score text box. in the "var" field of the properties window. enter "score".

    This will start your score...
  15. I could think of a couple of ways to do this. ...

    I could think of a couple of ways to do this.

    My first guess for them after reading their HTML flash code, is that they are using variables in the embed code.

    You do that by setting an extra...
  16. Replies
    14
    Views
    13,347

    I haven't coded in AS2 in a while.. and this post...

    I haven't coded in AS2 in a while.. and this post was made ohh.. a year ago.. but.. I will give the milliseconds a try.. NOTE: I wouldn't suggest doing this. Having a setInterval firing every 1...
  17. Replies
    9
    Views
    13,395

    crappy

    I just noticed, what I would call a bug when using this feature.

    The exe's screen size increases. The size difference appears to be distributed to the top and bottom of the projector. Just an FYI
  18. Replies
    3
    Views
    829

    EKKK!! I think i know what the issue is.. ...

    EKKK!!

    I think i know what the issue is.. Your images are included in your production file? Hence the attach command?

    I wouldn't do this unless you were going for a standalone application. I...
  19. I have seen this issue a bunch of times.. And...

    I have seen this issue a bunch of times.. And it's a little odd that people don't update their coding style to something that is much easier to maintain.

    Defining code in or on a visual object...
  20. Replies
    4
    Views
    1,447

    Another way of doing the same thing is to create...

    Another way of doing the same thing is to create your timeline based animation.

    Start position should be the same as the ending position. Exactly!

    For examples sake.. lets say we have 50...
  21. Replies
    6
    Views
    642

    One of the first major drawing techniques I...

    One of the first major drawing techniques I learned in flash was tracing. I typically stay with the line tool.. and through the use the control and shift keys along with the left mouse button you...
  22. Replies
    4
    Views
    1,447

    /nod

    /nod
  23. Replies
    6
    Views
    642

    Looking at what you have here.. and trying to...

    Looking at what you have here.. and trying to come up with something that is cool as the images here is my suggestion for a neat presentation.

    Bring the rendered image into flash.

    Lock the...
  24. Replies
    7
    Views
    1,606

    Cool.

    Cool.
  25. I have seen this problem a couple of times....

    I have seen this problem a couple of times. on(release) {} type functions seem to have a real issue with scope. I personally haven't used these since Flash 4. I am much more in favor of giving the...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center