A Flash Developer Resource Site

Search:

Type: Posts; User: the_j0k3r

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    6,799

    This is a simple file I made as a concept which I...

    This is a simple file I made as a concept which I never bothered expanding. Go nuts.

    Demo here: http://megaswf.com/view/85ef337d295f0c75d7e7419ec6ed6482.html
  2. Replies
    3
    Views
    922

    To elaborate further on my original suggestion: ...

    To elaborate further on my original suggestion:


    function mouseHasReleased(e:MouseEvent):void {
    e.target.parent.parent.parent.gotoAndPlay();
    }

    Note that the 'e' is whatever you...
  3. Replies
    3
    Views
    922

    To get to root from a movie clip in as3 you could...

    To get to root from a movie clip in as3 you could do:


    event.target.parent.parent.parent.parent.gotoAndPlay();

    You can use


    trace(event.target.parent.parent.parent.name);
  4. Replies
    8
    Views
    2,919

    Just commenting, but isn't this thread going on 3...

    Just commenting, but isn't this thread going on 3 years old?
  5. Replies
    22
    Views
    6,331

    Game is fantastic! A couple of points, though: ...

    Game is fantastic! A couple of points, though:

    -There is a bug with starting a race, if you are holding the up key while entering the race, the message telling you to press up to start will stay...
  6. Replies
    21
    Views
    73,918

    Sticky: I'm reporting this as a bug also. It seems that...

    I'm reporting this as a bug also. It seems that not everyone has had this issue, but I can't get rid of it for the life of me, and I know some other people have had it.

    When you try and use...
  7. Replies
    7
    Views
    1,978

    Despite this sort of stuff being all over the...

    Despite this sort of stuff being all over the forums, it's a little spread out and there aren't as many definitive answers to people asking for flashvars, just people discussing it. So I present:...
  8. Replies
    1
    Views
    456

    CTRL-SHIFT-ENTER Takes you into debug mode. ...

    CTRL-SHIFT-ENTER

    Takes you into debug mode.

    It can tell you the line the error is on. You are trying to reference something that isn't there. Perhaps it isn't instantiated yet? Haven't even...
  9. Replies
    7
    Views
    1,978

    I'd reccomend doing it with Flashvars. It's quite...

    I'd reccomend doing it with Flashvars. It's quite simple in your situation, just hard code the flashvars into your html file. So it would be like <embed src=movie.swf?i=2> and <param name="movie"...
  10. Replies
    23
    Views
    1,410

    I don't agree with not banning the guy just...

    I don't agree with not banning the guy just because it's not practical. Have you seen the freelance section lately? How many people is he going to rope into working for him for such low wages?
    ...
  11. Replies
    23
    Views
    1,410

    I know people get a certain pleasure from...

    I know people get a certain pleasure from watching this guy make a fool of himself on the boards, but I would put forward that he needs to be banned right away. The guy is a thief, he takes credit...
  12. Does it give any messages or anything? It's hard...

    Does it give any messages or anything? It's hard to figure out whats going wrong with so little information.

    I used to have problems with flash crashing every 20 minutes or so, starting fast,...
  13. PM and email sent, think I have what you need :)

    PM and email sent, think I have what you need :)
  14. Replies
    5
    Views
    1,638

    With what he said about using "_height", it...

    With what he said about using "_height", it relates to whether you are in Actionscript 2 (which puts "_"'s before it's properties) or Actionscript 3 (which doesn't).

    Basically, when you create a...
  15. Replies
    4
    Views
    3,134

    I wanted to see the code where you instanciated...

    I wanted to see the code where you instanciated both movie clips, so I could be more relevant to you, but never mind. Actionscript 3 is very weird about instance names and how you use them with...
  16. Replies
    1
    Views
    462

    I'm not sure what you are asking, but if a movie...

    I'm not sure what you are asking, but if a movie clip is in your library, to add it to the stage and have the ability to control it, you right click the movie clip in your library, tick the 'export...
  17. stop(); ...

    stop();

    enter_btn.addEventListener(MouseEvent.CLICK, clickHander);

    function clickHandler(e:MouseEvent):void {
    gotoAndStop("Scene 2", 1);
    }

    AS3.
  18. Replies
    4
    Views
    3,134

    It would be easier to help if we were given more...

    It would be easier to help if we were given more of the code.
  19. Replies
    5
    Views
    1,533

    I don't think it is possible, I just tried and...

    I don't think it is possible, I just tried and realised that though it is quite easy to slow down the mouse pointer:

    addEventListener(Event.ENTER_FRAME, moveCursor);
    function...
  20. Replies
    4
    Views
    4,637

    Hi, We can use DispatchEvent to communicate...

    Hi,

    We can use DispatchEvent to communicate events from movie clips to the main timeline. This is how I would do it.

    In the main timeline, add:

    Change


    var score:Number = 0;
  21. Replies
    2
    Views
    2,934

    Here I have come up with a yucky, but stable...

    Here I have come up with a yucky, but stable solution. Improve on it at your will. I recreated your document in flash with my own boxes. Basically, take the movie clip that you are loading from your...
  22. Replies
    2
    Views
    425

    Hi, Believe it or not, they try to keep it a...

    Hi,
    Believe it or not, they try to keep it a secret, but flash can actually tell you what line the error occurs on. I don't know if you've tried already, but ctrl-shift-enter, enters debug mode, it...
  23. Replies
    1
    Views
    610

    You should really define your variables with...

    You should really define your variables with types and values.

    isNaN is a test for whether somethings is a number, for use in conditionals, it won't output anything unless you tell it to.


    var...
  24. Replies
    2
    Views
    559

    Window - Other panels - Scene. I once spent 20...

    Window - Other panels - Scene.

    I once spent 20 minutes looking for it too :)
  25. Replies
    0
    Views
    543

    Components Inside a Movie Clip

    Hi, hopefully these questions will get answered soon, as this will need to be finished quickly.

    So basically, I found when I was using flash that when I drag a checkBox component into the stage,...
Results 1 to 25 of 28
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center