A Flash Developer Resource Site

Search:

Type: Posts; User: 5Five555

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. Why would you want to switch actionscript...

    Why would you want to switch actionscript versions in the middle of a program? Being able to do that wouldn't even make sense, everything would fail because it'd be in a different syntax.

    I was...
  2. Replies
    4
    Views
    1,239

    He is probably reupdating the x and y coordinates...

    He is probably reupdating the x and y coordinates of the photo whenever the window is resized, which dispatches an Event.RESIZE event.
  3. Replies
    8
    Views
    1,481

    Nope, I meant it's a good thing I'm not the only...

    Nope, I meant it's a good thing I'm not the only person helping, or he might have gone with my more complex solution compared to your simpler one.
  4. Replies
    4
    Views
    1,239

    The part about making the swf fit the whole...

    The part about making the swf fit the whole browser screen is done with Javascript and CSS. Depending on how you embed the swf into the page, via swfobject or some other method, they all usually...
  5. Replies
    15
    Views
    2,816

    You can run it in debug mode, cause the error,...

    You can run it in debug mode, cause the error, and when the program stops and shows you the line, go to Window -> Debug Panels -> Variables. This shows you all the variables and their values. You can...
  6. Replies
    8
    Views
    1,481

    Oh yea...this is why we have more than 1 person...

    Oh yea...this is why we have more than 1 person helping!
  7. Replies
    8
    Views
    1,481

    It looks like it's moving along a zigzag pattern...

    It looks like it's moving along a zigzag pattern of lines, no curving or collisions at all. All that requires is an array of points and have the object move from one point to the next. But if you...
  8. Replies
    15
    Views
    2,816

    I'm gonna come right out and say it: Ever heard...

    I'm gonna come right out and say it: Ever heard of arrays and loops?

    Now that that's done with, are you developing in Flash CS3/4/5 (doesn't matter). If you are, have you tried running this in...
  9. Replies
    1
    Views
    724

    This will allow your swf's dimensions to change...

    This will allow your swf's dimensions to change without affecting any of the objects.


    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;

    I personally don't know...
  10. In the properties window of your document, click...

    In the properties window of your document, click the dropdown menu from Player and click AIR.
  11. Replies
    1
    Views
    714

    Sure, a mask is still a DisplayObject. Whatever a...

    Sure, a mask is still a DisplayObject. Whatever a DisplayObject can do, a mask can do.
  12. Well unfortunately I have little experience with...

    Well unfortunately I have little experience with external swfs and the built in components. I don't know if external swfs have their own stage property or if they use the main swf's stage. Maybe you...
  13. Did you try to understand the error message? It...

    Did you try to understand the error message? It says line 284, which is that if statement that you posted.

    The first error is saying the function you're calling requires an argument of the type...
  14. Maybe you should look at the details of the...

    Maybe you should look at the details of the error, like what line it occurred on and the stack of function calls that led up to it. Since the error says "parameter CHILD", I'm educationally guessing...
  15. Was that the solution?

    Was that the solution?
  16. Why do you have + 240 and -240 in your code when...

    Why do you have + 240 and -240 in your code when you said 120 in the post?
  17. Thread: Advice needed

    by 5Five555
    Replies
    4
    Views
    950

    No that's not what I meant. I was just saying my...

    No that's not what I meant. I was just saying my portfolio is HTML instead of Flash. The point I was trying to get across was about XML. For me having everything in one XML file makes changing...
  18. Thread: Advice needed

    by 5Five555
    Replies
    4
    Views
    950

    I would want to make it as easy to change the...

    I would want to make it as easy to change the content as possible. It would be really really annoying to have to open up Flash, make a change, then compile it just to make one little change. My...
  19. Replies
    6
    Views
    971

    Do a trace of currentDirection right above the...

    Do a trace of currentDirection right above the trace for directionQueue[0]. The problem might be that, like I said a few posts ago. The value in the array is completely dependent on what...
  20. Replies
    8
    Views
    2,643

    I would just give those functions actual names so...

    I would just give those functions actual names so you know which one you're calling. I have nothing against inline functions except for readability in some cases. In your case I cannot tell which...
  21. Replies
    6
    Views
    971

    In your original post you said Now you're...

    In your original post you said

    Now you're saying

    After reading your original post again, is your problem actually that robotFacing always returns a 0? Cause now I'm a bit lost at what you're...
  22. Replies
    1
    Views
    620

    Are the games and the main menu all one big swf?...

    Are the games and the main menu all one big swf? Or is the main menu its own swf and the games their own separate swfs and the main menu loads the games in externally using the Loader class? Or is...
  23. Thread: Max/MinChars

    by 5Five555
    Replies
    2
    Views
    738

    You're talking about minimum characters in a...

    You're talking about minimum characters in a textfield right? Well you can easily check the length of the text when you actually need to use the text with


    var len:int =...
  24. Replies
    8
    Views
    2,643

    Do you know about the yoyo property of TweenMax?...

    Do you know about the yoyo property of TweenMax?


    object.x = 0;
    TweenMax (object, 30, {x:30, repeat:1, yoyo:true});

    It makes the tween play backwards every other cycle.
    If your repeat is 1,...
  25. Replies
    2
    Views
    745

    If it uses Flash Player to run then it cannot be...

    If it uses Flash Player to run then it cannot be turned into an executable (I'm pretty sure). But if you switch the player to AIR, then you can create a .air file which is like an installer. It will...
Results 1 to 25 of 391
Page 1 of 16 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center