A Flash Developer Resource Site

Search:

Type: Posts; User: Adamkyler

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    901

    Make it so the second and the third guy compete...

    Make it so the second and the third guy compete of that spot.
  2. Replies
    10
    Views
    1,055

    Are you using AS to start the sound or are you...

    Are you using AS to start the sound or are you just dragging and dropping the sound onto the timeline?
  3. Replies
    10
    Views
    27,006

    Try changing "mcalien.removeMovieClip()" to...

    Try changing "mcalien.removeMovieClip()" to "aliens.removeMovieClip()" If that doesn't work then I'm stumped.
  4. Looks fine to me.

    Looks fine to me.
  5. Replies
    5
    Views
    758

    CS3 Are you sure you can get nextHighestDepth from a...

    Are you sure you can get nextHighestDepth from a text instance?
  6. Replies
    10
    Views
    27,006

    For removeMovieClip() to work, the movie clip...

    For removeMovieClip() to work, the movie clip needs to be created or attached through Actionscript. I don't know about .unloadMovie().
  7. Replies
    13
    Views
    948

    Flash8 oops, double post

    oops, double post
  8. Replies
    13
    Views
    948

    Flash8 I think that it might be going to your mouse...

    I think that it might be going to your mouse relative to its parents position. Try rewriting it on the main timeline and use something like:
    picture.clip.onPress = function()
    {
    picture.clip.drag =...
  9. Replies
    2
    Views
    477

    Flash8 Try replacing the line ...

    Try replacing the line


    if(man.hitTest(ground){
    player._y-=Vel
    }

    with
  10. Replies
    3
    Views
    1,067

    Have you tried changing your screen resolution?

    Have you tried changing your screen resolution?
  11. Replies
    3
    Views
    834

    what do you mean by it freaks out?

    what do you mean by it freaks out?
  12. MX on (release) { if (this.dest == 200) {...

    on (release) {
    if (this.dest == 200) {
    this.dest = 0;
    } else {
    this.dest = 200;
    }
    this.onEnterFrame = function() {
    this._y += (this.dest-this._y)/5;
    };
    }
  13. Replies
    7
    Views
    966

    Far making multiple layers, I recommend that you...

    Far making multiple layers, I recommend that you make empty movie clips at the position 0,0 on the main timeline and name them "l1", "l2", "l3" and so on, however many layers you want. Make sure to...
  14. Replies
    9
    Views
    9,900

    its adamkyler@gmail.com

    its adamkyler@gmail.com
  15. Replies
    9
    Views
    9,900

    Are you writing the code within a movie clip, or...

    Are you writing the code within a movie clip, or on the main timeline? Before you can easily use array to contain variables, all the code must be on the main timeline. It would be helpful to see the...
  16. You should learn how to draw and use filters...

    You should learn how to draw and use filters first. Also, basic actionScript and learning physics will be useful if you plan on creating dynamic animations.
  17. Replies
    9
    Views
    9,900

    And put it all under an on (rollOut) function.

    And put it all under an on (rollOut) function.
  18. It looks like: is being activated because...

    It looks like:

    is being activated because _global.eTime is greater than _global.nowTime on the first frame, or something is undefined.
  19. Replies
    9
    Views
    9,900

    Put all of your characters depths into an array....

    Put all of your characters depths into an array. Look up a formula to find the least value in an array. Use swap depth to make the MC 1 depth level lower than the lowest depth level detected in the...
  20. Replies
    2
    Views
    2,782

    Thats not really what I am looking for. I have...

    Thats not really what I am looking for. I have created my own program that makes arrays of rotations. I then copy those arrays into my game, and I can reference to them and dynamically combine them...
  21. Replies
    6
    Views
    4,724

    try adding a trace function to it: If it comes...

    try adding a trace function to it:

    If it comes out undefined, make sure you don't have spelling inconsistencies between the clip names and what is in the array. Also, make sure that the array you...
  22. Replies
    2
    Views
    2,782

    Help with simplifying code

    Hello, I have made a AS 2.0 script that allows an object to ease into rotation. Here is the code:


    _root.onEnterFrame = function(){
    rot =...
  23. what version of actionScript are you using?

    what version of actionScript are you using?
  24. Replies
    6
    Views
    528

    CS3 "googleButton" is just an example of a buttons...

    "googleButton" is just an example of a buttons name. You need to change it to match your MC's name. You can put the code at the beginning of the main time line at the end of all the other code.
  25. Replies
    6
    Views
    528

    CS3 Here is the AS 2.0 code: ...

    Here is the AS 2.0 code:

    googleButton.onRelease = function(){
    getURL("http://www.google.com");
    }

    The "http://" is necessary, if you don't have it there it will look for Google within your...
Results 1 to 25 of 115
Page 1 of 5 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center