A Flash Developer Resource Site

Search:

Type: Posts; User: fuzzywuzzywooky

Page 1 of 4 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    787

    thanks. I didnt know divs could have scrollbars....

    thanks. I didnt know divs could have scrollbars. I'll try it out.
  2. Replies
    7
    Views
    663

    the text is a bit hard to read on that...

    the text is a bit hard to read on that background: you should try either changing the text color or fading the background. All of those bars at the top and bottom turn me off as well: you only...
  3. Replies
    2
    Views
    787

    [Question} Weird iframe?

    I am wondering how the scrolling textbox seen here works. Is it an iframe, or is it something done in PHP? Or is it some other html code that I've never heard of? I'd like to do something sort of...
  4. fun. I broke it on 1 part. On the last stage, i...

    fun. I broke it on 1 part. On the last stage, i jumped into an edge and got stuck facing left. Nice recyling of old games.
  5. Thanks, adit_ya_sharma. I like your first idea. ...

    Thanks, adit_ya_sharma. I like your first idea. I'll try it out.

    Other advice is still encouraged though.
  6. [Help(advice)] Moving characters with background.

    Ok, I have this basic sidescrolling game where the background scrolls and the character remains in one place. My code basically moves the background left when the right button is pressed, simulating...
  7. why did it not work the other way? just curious.

    why did it not work the other way? just curious.
  8. Replies
    1
    Views
    368

    i did a quick program using this: ...

    i did a quick program using this:

    onClipEvent(enterFrame){
    backgroundWidth = Stage.width;
    backgroundHeight = Stage.height;
    this._x = backgroundWidth - _root._xmouse;
    this._y =...
  9. put this on the first frame inside the mc: stop()...

    put this on the first frame inside the mc: stop()

    then put this on the mc: onClipEvent(mouseDown){this.play()};

    ...or are you meaning something more complicated?
  10. Replies
    1
    Views
    5,262

    Go away, you pirating scumbag.

    Go away, you pirating scumbag.
  11. Replies
    2
    Views
    509

    i cant turn it invisible b/c theres going to be a...

    i cant turn it invisible b/c theres going to be a whole lot of them, and i'm afraid that would lag up the program. fortunately, i'll probably be using duplicatemovieclip, so it'll work fine. thanks...
  12. Replies
    2
    Views
    509

    removeMovieClip()?

    i've included my program. you may not need to look at it. just explain to me how removeMovieClip() works, and why it wont remove one of my movieclips. Maybe this should be in the n00b forum. I...
  13. Replies
    7
    Views
    643

    Sorry i'm so bad at explaining. I'll try to be...

    Sorry i'm so bad at explaining. I'll try to be clearer. What this is is a game. When right is pressed, the character moves 5 pixels right. I also want the main character movieclip to play the...
  14. Replies
    7
    Views
    643

    i guess basically what i'm asking is: how do i...

    i guess basically what i'm asking is: how do i make something only happen once, even though a frame loop is going on.
  15. Replies
    2
    Views
    468

    thanks. you're probably right that this was in...

    thanks. you're probably right that this was in the wrong forum
  16. Replies
    2
    Views
    468

    game inventory

    for a standard rpg inventory (think baldur's gate or dungeon siege) would it be better to use a mc for the inventory or a separate swf? and how would i go about using the swf if thats the better way?
  17. for one thing, theres going to be a huge loading...

    for one thing, theres going to be a huge loading time, because sound files are far from small. unless you want to run this only from your harddrive, i would suggest dropping most or all of them. ...
  18. Replies
    7
    Views
    643

    that correction doesnt work b/c walkthisway keeps...

    that correction doesnt work b/c walkthisway keeps getting assigned "right" when the right key is down. so even if you assign it null, it will be changed back to "right". I should have told you that...
  19. Replies
    7
    Views
    643

    functions and enterFrames

    //code on a movieclip
    onClipEvent (enterFrame) {
    if (Key.isDown(Key.RIGHT)) {
    walkthisway = "right";
    _root.WalkDirection(walkthisway);
    }

    //WalkDirection function code
    WalkDirection =...
  20. Replies
    8
    Views
    647

    duplicateMovieClip (target, new mc name, mc...

    duplicateMovieClip (target, new mc name, mc depth);

    I found the answer, if you're still wondering. The duplicate movieclip code goes like this. You forgot the depth, didn't you? Either that or...
  21. Replies
    8
    Views
    647

    I dunno. It prbly has something to do with...

    I dunno. It prbly has something to do with levels, but I don't know anything about those.
  22. Replies
    8
    Views
    647

    So the mountains and mc's are on different...

    So the mountains and mc's are on different layers? It may help if you posted the random generator script that you are using.
  23. Replies
    1
    Views
    375

    IMHO, the best way is to use javascript to resize...

    IMHO, the best way is to use javascript to resize the page, or use a javascript popup that pops up a page of the exact size you need, or use a combo of css styles and tables to center the swf.
  24. It depends what you want the users to be able to...

    It depends what you want the users to be able to do. Do they get separate content, or are nonusers not allowed, or what?
  25. Replies
    8
    Views
    645

    i use this, but now that i look at it,...

    i use this, but now that i look at it, joejoe2288's would be way simpler, so go with that.
Results 1 to 25 of 81
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center