A Flash Developer Resource Site

Search:

Type: Posts; User: RangrJay

Page 1 of 7 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    416

    I started creating a tank shooter game, a...

    I started creating a tank shooter game, a loooooong time ago. I never finished it, but i did get the tank shooting in a 360 degree manner, and made a 3d clip of a car flipping (made it in Swift 3D)...
  2. Thread: depth control

    by RangrJay
    Replies
    7
    Views
    564

    I've seen some stuff based one what you want, but...

    I've seen some stuff based one what you want, but it was used in 3D physics, which is pretty high up on the guru scale. And from what i've seen, it was used in rotations and what not that didn't...
  3. Replies
    3
    Views
    461

    could you give us some more details? Like what...

    could you give us some more details? Like what is it doing? How is it embedded? etc
  4. Replies
    17
    Views
    1,435

    Are you perfoming a fadeIn, fadeOut tween one...

    Are you perfoming a fadeIn, fadeOut tween one time on each MC? if so, then try this.


    //Put in your actions layer
    var counter:Number = 0;
    import mx.transitions.Tween;
    import...
  5. Replies
    3
    Views
    371

    while i didn't look at the fla, a quick...

    while i didn't look at the fla, a quick suggestion, did you create an eventListener? if not you should, that way when one of those keys are pressed they'll fire their event.
  6. Thread: Code location

    by RangrJay
    Replies
    2
    Views
    493

    Above pretty much nailed it, its all about...

    Above pretty much nailed it, its all about organization and ease of use.

    For instance in one of my recent projects I created a layout based on a vBNS cloud, with a lot of MCs. In this case, I...
  7. Replies
    17
    Views
    1,435

    what will happen is when that method is called,...

    what will happen is when that method is called, it'll start that first tween. Then onMotionFinished() it will set off the second method to fade it in.

    As for the 3 second timer deal, you got two...
  8. [RESOLVED] Guru's got one for ya...file.as class error

    So something dumb was causing this big mess. I have been calling all my funct staticly, instead of creating a new object in my project. That's what I did, and it works fine.
  9. I see what your saying, but that doesn't really...

    I see what your saying, but that doesn't really address my problem. The problem is within the static function. If I set the function to just


    public function ShrinkNetwork(mc:MovieClip,...
  10. Replies
    1
    Views
    501

    that is definitely possible, but looking at your...

    that is definitely possible, but looking at your code, I would do it a bit differently (resizing the box that is).

    put the following code in your action layer, not on the object.


    import...
  11. [RESOLVED] [F8] Guru's got one for ya...file.as class error

    **Error** C:\LOCATION\ihsCode.as: Line 18: Instance variables cannot be accessed in static functions.
    var newX:Number = GetNewX(mcArray[i]);

    This is the error I'm getting. And I'm not...
  12. on(release) { _root.gotoAndStop("Scene 3",...

    on(release)
    {
    _root.gotoAndStop("Scene 3", 1);
    }
  13. Replies
    5
    Views
    514

    name your buttons. then in your AS stop();...

    name your buttons. then in your AS

    stop();
    buttonName.onRelease = function():Void
    {
    gotoAndPlay(4);
    }
    //and etc for the rest of your buttons.
  14. Replies
    5
    Views
    542

    first off, some advice, you don't want to use...

    first off, some advice, you don't want to use more then one scene for a website. it just makes things too complicated. Second any preloader for a SWF will work. Third, you got to make sure you...
  15. did you think to try myClip.onEnterFrame =...

    did you think to try

    myClip.onEnterFrame = function():Void
    {
    var myNewVar:String = "maybe this will work";
    delete myClip.onEnterFrame;
    }
    //I have programmed in Flash in a while, but there...
  16. Replies
    1
    Views
    386

    nextFrame(); is used to advance the timeline one...

    nextFrame(); is used to advance the timeline one frame regardless of the event in the frame. If you have a tween, it will only play that first frame. (prevFrame(); reverses it).
  17. Replies
    11
    Views
    504

    something for the most l33t

    how would you take a back button in an html doc, and point it to a certain keyframe in a flash project??
  18. Replies
    4
    Views
    359

    the easiest way is prolly javascript.

    the easiest way is prolly javascript.
  19. Replies
    4
    Views
    437

    could you post your fla....if your doing what i'm...

    could you post your fla....if your doing what i'm thinking, you don't need any more then 2 or 3 keyframes, and the effect will all be done in AS.
  20. what are the names of your arrays? and how are...

    what are the names of your arrays? and how are they defined?
  21. the ';' after your strict data type for your...

    the ';' after your strict data type for your function doesn't belong, put an open brace '{'

    simple mistake, easy to miss
  22. Replies
    7
    Views
    763

    ok, i quickly made a dropdown for you so you can...

    ok, i quickly made a dropdown for you so you can see how it was done...and a side note, for your variables, make sure they are all one word, with no symbols or special characters (except the dot and...
  23. Replies
    7
    Views
    763

    ok, my components are a bit different, I use...

    ok, my components are a bit different, I use flash 8. i haven't used mx 2004 in a long time and had to reinstall a trial version. but the components were responding correctly, there's probably a...
  24. Replies
    7
    Views
    763

    are you using flash mx2004 or flash 8?

    are you using flash mx2004 or flash 8?
  25. Replies
    5
    Views
    693

    ok, a couple more questions, each movie is...

    ok, a couple more questions, each movie is already preset with a fade in action?? well, with the way you have it set now, it will probably just straight replace that, that's because you loading the...
Results 1 to 25 of 168
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center