A Flash Developer Resource Site

Search:

Type: Posts; User: BigBrave50

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    360

    nm got it working

    nm got it working
  2. Replies
    3
    Views
    360

    loadVars variable access problem

    Hi all, I've successfully used the loadVars to pull in variables from a php script, but my only problem is accessing them via a loop.

    The script pulls the following variables into a class called...
  3. Replies
    0
    Views
    330

    AS Help for Flash Game

    Hi all, I'm making an Elevator action type game, there are doors on the L+R which represent the stair cases (take you up/down one floor at a time) and an elevator in the middle (takes you up/down as...
  4. Replies
    14
    Views
    537

    If this is the case, you probably don't even need...

    If this is the case, you probably don't even need an array. Just two variables that will get reassigned a new value (x and y coordinates) at the top of each frame.
  5. Replies
    14
    Views
    537

    Sounds like you have a movieclip thats bouncing...

    Sounds like you have a movieclip thats bouncing around the screen, and you want another movieclip to trail it?
  6. Replies
    14
    Views
    537

    This probably won't be the proper syntax (closer...

    This probably won't be the proper syntax (closer to C), but the theory is there...

    I would declare 2 arrays, why and ecks, then for each frame this thing occupies...

    i = 0;
    why[i] =...
  7. Thats really cool man, good job. Would you mind...

    Thats really cool man, good job. Would you mind sending me your fla? I'd be really interested to see how you did that. I could find some uses for something similar :)
  8. Replies
    2
    Views
    364

    To my knowledge there is no way to close out the...

    To my knowledge there is no way to close out the main stage. You can certainly stop it, and you can remove any and all movieclips in the main stage, but I don't believe there is a way to close the...
  9. Replies
    4
    Views
    371

    Yep, the upper left hand corner of the stage is...

    Yep, the upper left hand corner of the stage is (0,0) and as you move from top to bottom, the y value <b>increases</b> so wherever you see _y = _y + fall, simply replace it with _y = _y - fall. Now...
  10. Replies
    3
    Views
    594

    Actually here's a better tutorial, this one will...

    Actually here's a better tutorial, this one will give you plenty of room to edit to your liking.

    Guestbook
  11. Ok, you're going to put this code in the "ron2"...

    Ok, you're going to put this code in the "ron2" movieclip:


    onClipEvent(enterFrame){
    if(this.hitTest(_root.pint2)){
    _root.pint2.gotoAndPlay(2);}}


    Basically... If this (ron2) hits pint2,...
  12. Here is a tutorial dedicated to...

    Here is a tutorial dedicated to reading/displaying text in Flash. You will be interested in displaying as HTML so that you can put the appropriate tags around the text in question. With this you...
  13. You will need to use a function like hitTest to...

    You will need to use a function like hitTest to determine the collision between the two objects. Here is a perfect example: HitTest
  14. Replies
    3
    Views
    594

    A forum is a nasty mess for Flash, you're going...

    A forum is a nasty mess for Flash, you're going to be pulling, sending, manipulating, formulating data out the wazoo. You might try a guestbook instead. Here is a free flash-based guestbook...
  15. Replies
    5
    Views
    349

    I think the problem might be with your 'name'...

    I think the problem might be with your 'name' variable. You start off with:

    var name="mov"+(movieIndex-2);
    miolo1[name]._visible=false;

    Assuming the movieIndex starts at zero, you are then...
  16. this._xscale = this._yscale = scaleFactor; Is...

    this._xscale = this._yscale = scaleFactor;

    Is this a valid argument? I'm a little foggy on my AS syntax, but I could see this causing problems. Also, maybe try manipulating this._width and...
  17. Thread: Counter

    by BigBrave50
    Replies
    2
    Views
    401

    You will obviously need some method of storing...

    You will obviously need some method of storing that value on your webspace. Probably the best way would be to create a simple XML file, have Flash load the file (display the value if required), read...
  18. Replies
    5
    Views
    349

    Instead of loading them simultaneously and reveal...

    Instead of loading them simultaneously and reveal them one by one, could you instead load and hide them as needed?
  19. Replies
    0
    Views
    367

    MX2K4 GetURL Problem

    Hi all, strange problem I'm having. I've developed a Physics-lab in Flash and at certain points have a button that links to various excel files via the getURL function with the _blank method. ...
Results 1 to 19 of 19




Click Here to Expand Forum to Full Width

HTML5 Development Center