A Flash Developer Resource Site

Search:

Type: Posts; User: Eastwinn

Page 1 of 2 1 2

Search: Search took 0.10 seconds.

  1. Replies
    56
    Views
    15,568

    Absolutely the best Flash 3D engine I've ever...

    Absolutely the best Flash 3D engine I've ever played.

    I'm curious, what software would someone need to use to make these models? I.E. what formats are compatible?
  2. Replies
    9
    Views
    1,177

    Yeah this is a problem that involves quite a bit...

    Yeah this is a problem that involves quite a bit of math.. trigonometry actually. How much do you know about trig?
  3. Replies
    6
    Views
    614

    You need to refer to your finish clip as...

    You need to refer to your finish clip as "_root.course.finish" replacing "course" with whatever you have named your course clip.
  4. Replies
    3
    Views
    599

    Did you set its instance name to "circle"? You...

    Did you set its instance name to "circle"? You only need to export a movie clip to AS if you plan to create it dynamically in the code.
  5. Replies
    3
    Views
    599

    Try this: on(release) { stopDrag(this); if...

    Try this:


    on(release) {
    stopDrag(this);
    if (_root.circle.hitTest(this._x, this._y, true))
    {
    this._x = _root.circle._x;
    this._y = _root.circle._y;
    }
  6. Replies
    15
    Views
    2,231

    Trigonometric funtions take angles, not...

    Trigonometric funtions take angles, not coordinates. The functions in Flash also require that the angles be in radians and not degrees. So replace locx and locy in your trig functions with (...
  7. I suppose if wanted to have a more accurately...

    I suppose if wanted to have a more accurately placed line while retaining efficient code (possibly) then you could do a reverse Zeno's paradox type thing. You would first advance a line 200 px (for...
  8. Replies
    62
    Views
    5,558

    This is really great! Awesome for just learning....

    This is really great! Awesome for just learning. My only suggestion for now is a mute button or a volume slider in the HUD.
  9. Replies
    21
    Views
    10,218

    Ah, I see. Well, you could submit to newgrounds...

    Ah, I see. Well, you could submit to newgrounds as you said, games on that sites gets quite a lot of publicity. There is also UgoPlayer (www.ugoplayer.com) -- they are the same kind of site as...
  10. Replies
    21
    Views
    10,218

    You could try getting your game sponsered at...

    You could try getting your game sponsered at Armor Games, Crazy Monkey games, places like that. They'll give you money for adding in their logo.
  11. Replies
    23
    Views
    1,358

    I like it, it's fun. My only problem with it is...

    I like it, it's fun. My only problem with it is that it's kind of hard with a touchpad...
  12. Replies
    10
    Views
    3,263

    Nice idea for a game. The graphics and music...

    Nice idea for a game.

    The graphics and music are great, it's just really hard! (for me atleast)
  13. Replies
    18
    Views
    1,285

    Rofl.. I'll be working on the graphics more.

    Rofl..

    I'll be working on the graphics more.
  14. Replies
    7
    Views
    535

    I believe you would put: ...

    I believe you would put:


    _parent[currentSymbol].unloadMovie();
  15. Replies
    2
    Views
    509

    What kind of mouse movement? Direction, Speed?

    What kind of mouse movement? Direction, Speed?
  16. Replies
    18
    Views
    1,285

    OK, I updated the game to include: A point system...

    OK, I updated the game to include: A point system (counter on the right, you gain 5 points from bytes and 50 from files), stealth mode (you can spend 300 points for 10 seconds of invisibilty by...
  17. Replies
    14
    Views
    1,320

    I suggest taking advantage of the Math.random()...

    I suggest taking advantage of the Math.random() function.

    Also, I think true = 0 and false = -1 or that may just be in Visual Basic.
  18. Replies
    18
    Views
    1,285

    Thanks for the comments guys! the current main...

    Thanks for the comments guys! the current main menu is just a place holder, I'll be working on a more graphical one today. Along with that I'll probaly add more features like: A point system, the...
  19. Replies
    18
    Views
    1,285

    The counter on the right is a measure of how...

    The counter on the right is a measure of how dense the defenders will fall. I have it stop at 50, but I tink I'll lower it to the point where it's raining defenders.
  20. Replies
    18
    Views
    1,285

    [Beta] New game - Virus

    Hi,

    I've created a new game that I want you guys at flash kit to look over before I submit it to another site. It's called Virus, basicaly, you move around you virus with the arrow keys avoiing...
  21. Replies
    0
    Views
    346

    Communicating?

    Is it possible to communicate with a swf in the loader component? As in, pass variables.

    Thanks in advance,
    Eastwinn
  22. Replies
    9
    Views
    752

    There is a way to get around all of this. it is...

    There is a way to get around all of this. it is to make all of the platforms in one mc. That would mean through, that the hitTests would have to look like:

    ...
  23. Replies
    23
    Views
    1,081

    I'm a bit confused about your problems with...

    I'm a bit confused about your problems with hitTesting so I'll give you what I think your asking for:



    if (_root.marble.hitTest(_root.walls._x, _root.walls._y,true)) {
    //whatever
    }


    That...
  24. Replies
    3
    Views
    588

    It should work the same way, and there is always...

    It should work the same way, and there is always a way to add the link inside the flash button and not have it in the html document.
  25. Replies
    2
    Views
    514

    oh, I see what I did wrong. In another laugage I...

    oh, I see what I did wrong. In another laugage I use called visual basic, to refrence the object the code is refering to, you use "me" instead of "this". Thank you so much! Now I can get to the fun...
Results 1 to 25 of 32
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center