A Flash Developer Resource Site

Search:

Type: Posts; User: seegy87

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    11
    Views
    537

    If you were to send it in, I would do a few...

    If you were to send it in, I would do a few things first.

    I would divide the number in bytes by 1000 (or 1024 if you are picky), to get a nicer number and then round it off. (Who really wants to...
  2. Replies
    7
    Views
    499

    you need to put that code in the actions of a...

    you need to put that code in the actions of a movieclip...

    i always make a separate movieclip called actions and put all mu actions in there... then i can use onClipEvent's.

    So just find a...
  3. Replies
    4
    Views
    376

    no, i mean how have you named it?? In the...

    no, i mean how have you named it??

    In the properties panel have you got the name in the variable box, or the instance name box?

    You need to have it in the instance name box....

    So....
    ...
  4. Replies
    4
    Views
    376

    with the textboxes, are they a) dynamic (can't...

    with the textboxes, are they
    a) dynamic (can't see you doing that wrong)

    b) named with an instance rather than a variable (instance same as word before ".text"...
    i.e. _root.word.text =...
  5. Replies
    1
    Views
    479

    Forget About this... I was doing ahitTest()...

    Forget About this...

    I was doing ahitTest() with the car on itself, so it was always colliding with itself in effect.
    I have now got round this problem and everything seems ok.

    Sorry to bother...
  6. Replies
    1
    Views
    479

    hitTest() in a while loop. Problems...

    I am currently producing a racing game where you create a course then race it...
    I have a perfectly good working version, but i have the same set of code on each of my 3 cars (to control them etc). ...
  7. Replies
    125
    Views
    275,656

    Sticky: i don't know if i kept track of this...

    i don't know if i kept track of this conversation, but here is some help.. (Someone mentioned the fact that they needed help knowing how to correct their code...)



    $_GET['name']; //this would...
  8. Thread: Line Fades

    by seegy87
    Replies
    8
    Views
    779

    make a rectangle, but make it really thin without...

    make a rectangle, but make it really thin without borders. Then do your usual gradient fills with that.

    You need to open your mind :D

    (i think thats what you need to do....)
  9. Replies
    6
    Views
    1,195

    i don't know if it will work in flash, but in...

    i don't know if it will work in flash, but in html it does..
    My only idea is to set the properties of the textbox to html reading (or whatever it is) and then put <pre>tab goes here</pre> in the...
  10. Thread: Variables....

    by seegy87
    Replies
    3
    Views
    494

    i'm not sure what you're trying to do, but it...

    i'm not sure what you're trying to do, but it won't unload because the if() is not happening because the condition is not being met.

    shouldn't it be.

    if(_root.nextmovie == 0)???

    the variable...
  11. creating curved motion paths dynamically..

    i want to make a "clay pigeon" fly through the air in my latest game. The trouble i'm having is applying a curved path to it. I'm trying to implement graphs (from maths) that use;
    y = x*x
    to...
  12. Replies
    3
    Views
    613

    just go to the bottom and where it says; frame...

    just go to the bottom and where it says;

    frame rate [12] fps

    change it to;

    frame rate [25] fps

    or what ever.
    that will speed up the movie, because more frames are gone through per...
  13. Replies
    5
    Views
    480

    the load bar loaded up on every single picture i...

    the load bar loaded up on every single picture i went on. It seemed to work fine.
  14. Thread: Inventory

    by seegy87
    Replies
    4
    Views
    656

    you could do a series of...: on(press){...

    you could do a series of...:

    on(press){
    this._visible = false;
    _root.inventory.gun._visible = true;
    }


    that would however mean that it would not appear at the top of the inventory, just at...
  15. Replies
    5
    Views
    480

    there was nothing wrong with it when i went on. ...

    there was nothing wrong with it when i went on.

    It looks good though, so keep up the good work.
  16. Replies
    2
    Views
    474

    If the text box is set to "html on" then you can...

    If the text box is set to "html on" then you can put this where you want the line break <br />.

    But i think this might work. Just put this at the break point (where you want it returning) /n...
  17. Thread: draggable menu

    by seegy87
    Replies
    4
    Views
    425

    can you not just do. startDrag(stick in...

    can you not just do.
    startDrag(stick in parameters here)..

    don't the parameters declare a imaginary box that the movie cannot be dragged out of??
    They are optional and hardly ever used, but i...
  18. WOW!!! I've just been on your site and i think...

    WOW!!!

    I've just been on your site and i think its GREAT.
    The fade in/out is really great, and i love the pictures. The pictures look really good with that effect i feel.
    Job well done!!
  19. Ahhh. I just thought of a way within seconds...

    Ahhh.

    I just thought of a way within seconds of pressing "post" :typical:

    Well, you could have both your images (or however many you want) placed on the timeline.



    ...
  20. I suppose you need to make it so that the alpha...

    I suppose you need to make it so that the alpha goes to zero, then back upto 100.

    You could make it so that when the alpha is zero the picture changes.

    That could be done with some simple...
  21. simple solution: Just keep the preloader to...

    simple solution:
    Just keep the preloader to one frame, but have another layer called logo.
    Don't put any graphics on the _root timeline, but instead make a new movieclip and place your spinning...
  22. Thread: Spining whirl

    by seegy87
    Replies
    7
    Views
    752

    You can use the "bezier" function. That feature...

    You can use the "bezier" function. That feature creates nice curves. On the toolbar just look for a kind of pen nib and then select it and use it.
    I'm not sure exactly how it works and i can't...
  23. Replies
    1
    Views
    355

    Problem with +=/-= and variables.

    I have just finished making my little game, but i have a problem with the scoring.

    Basically the game is a horse racing game (you know the type at the seaside where you bet on a horse to win and...
  24. Replies
    2
    Views
    498

    thank you. I tried something like that, but not...

    thank you. I tried something like that, but not like that. thank you!!
  25. Replies
    6
    Views
    1,468

    Yeah, thats right, but to make it vanish when you...

    Yeah, thats right, but to make it vanish when you click on another button (i think thats your problem??), you have to put this on the other button...
    _level0.heart=""
    That will make the dynamic...
Results 1 to 25 of 62
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center