A Flash Developer Resource Site

Search:

Type: Posts; User: Gogafem

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    1,782

    Hey, I a game developer with 7+ years of...

    Hey, I a game developer with 7+ years of experience and I am the founder of my independent game development studio - GGames. I have also worked for a local company here and as of recently, as a...
  2. Thread: Baseball game

    by Gogafem
    Replies
    1
    Views
    1,708

    Cool, do you have a link of screenshots/videos?

    Cool, do you have a link of screenshots/videos?
  3. Basically you need to learn more about...

    Basically you need to learn more about Actionscript. If you want, I could give you some advice and help. Feel free to e-mail me at gogafem@yahoo.com
  4. Replies
    55
    Views
    104,354

    -Real World Flash Game Development - introduces...

    -Real World Flash Game Development - introduces OOP concepts and general Actionscript 3.0 concepts. Also gives nice tips.
    -Advanced Game Design with Flash - As the name suggests, it shows you how to...
  5. Replies
    2
    Views
    4,216

    If you're still looking for help, you can e-mail...

    If you're still looking for help, you can e-mail me at gogafem@yahoo.com. I can do it for free if it's nothing complex ;).
  6. Replies
    2
    Views
    6,575

    Here is a page on Wikipedia about scripting...

    Here is a page on Wikipedia about scripting languages: http://en.wikipedia.org/wiki/Scripting_language
    As for learning scripting languages, you should be fine if you're good with any other similar...
  7. Replies
    1
    Views
    2,081

    I think that a break statement should do the...

    I think that a break statement should do the trick... So:


    for (var i:Number = 0; i < Main.floors.length; i++)
    {
    if (Main.floors[i].hitTestObject(this))
    {
    grav = 0;
    jumped = false;
    ...
  8. Replies
    22
    Views
    3,515

    Thanks and I'm glad it worked ^^. Tell me how the...

    Thanks and I'm glad it worked ^^. Tell me how the project turns out :)...
  9. Replies
    2
    Views
    2,642

    Well just make it not move only if it is moving....

    Well just make it not move only if it is moving. This can be done with a simple if statement... Example:


    if (moving)
    {
    if (collision())
    {
    stopIt();
    }
    }
  10. Replies
    3
    Views
    2,866

    Squize is right... You haven't really explained...

    Squize is right... You haven't really explained your game's engine... This question is just generic. And yes you want to make the player jump, but higher, after collision with the spring.
  11. Replies
    2
    Views
    2,752

    It really depends. If you want to submit the game...

    It really depends. If you want to submit the game on fgl.com then you should put on the full version and wait for a sponsor to place a bid. If you want to ask a sponsor you've worked with or another...
  12. Replies
    96
    Views
    31,254

    It's really just personal preference. I like...

    It's really just personal preference. I like Actionscript 3.0 better though. Not just because of the syntax, but also because of all the game libraries available for it(Like Flixel, Citrus, Starling,...
  13. Replies
    22
    Views
    3,515

    Hey there, did it work or is the new code buggy...

    Hey there, did it work or is the new code buggy too..?
  14. Replies
    22
    Views
    3,515

    I think I found the problem! You said you changed...

    I think I found the problem! You said you changed that line from gotoAndPlay to gotoAndStop. But, did you change it in the other function?


    function buttonRollover(event:MouseEvent):void
    {
    ...
  15. Replies
    22
    Views
    3,515

    Well, if you use code in an objects timeline then...

    Well, if you use code in an objects timeline then you shouldn't specify its instance name, since the code you write refers to all instances of that MovieClip. You could use an instance name in your...
  16. Umm, 1..? lol

    Umm, 1..?
    lol
  17. Replies
    22
    Views
    3,515

    No prob. Here's a CS4 version:...

    No prob. Here's a CS4 version:
    http://www.mediafire.com/?eiz2t1ttycbaebz
  18. Replies
    22
    Views
    3,515

    http://www.mediafire.com/?bnn2dvgjncc12sg Here's...

    http://www.mediafire.com/?bnn2dvgjncc12sg Here's my version... Isn't that how you want it to work? PS: It's a CS5.5 file.
  19. Replies
    22
    Views
    3,515

    Hmm, I'm going to try the code myself later......

    Hmm, I'm going to try the code myself later... And when I have a working version I'll post it on here.
  20. Thread: I need help

    by Gogafem
    Replies
    6
    Views
    18,113

    That's a fairly simple effect actually. All you...

    That's a fairly simple effect actually. All you need to do is increase the alpha by a bit on every frame. You can do this with code using object.alpha or you could animate it with a tween by changing...
  21. Replies
    22
    Views
    3,515

    Oh, it's because you used gotoAndPlay. You should...

    Oh, it's because you used gotoAndPlay. You should use gotoAndStop, since gotoAndPlay goes to a frame and plays the animation from there on. Sorry, my mistake in my earlier post.
  22. Replies
    22
    Views
    3,515

    Oh and when you don't want it to stay orange...

    Oh and when you don't want it to stay orange anymore... Just make clicked false again.
  23. Replies
    22
    Views
    3,515

    Well, that is because when you roll out it will...

    Well, that is because when you roll out it will go to frame 1. So you need to make an extra variable. Initialize a variable like so:

    var clicked:Boolean = false;

    Next make the click function...
  24. Thread: I need help

    by Gogafem
    Replies
    6
    Views
    18,113

    That's good, but you really didn't have to spend...

    That's good, but you really didn't have to spend money for it... It isn't that hard to make.
  25. Replies
    22
    Views
    3,515

    Great that it worked ^^... As for the mouse...

    Great that it worked ^^...
    As for the mouse inside/outside testing...
    You could use hitTestPoint(mouseX, mouseY, true) with an if... But for you I would recommend adding MouseEvent.MOUSE_OVER and...
Results 1 to 25 of 39
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center