A Flash Developer Resource Site

Search:

Type: Posts; User: friedegg3

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Thanks!

    Thanks!
  2. Ta DA! Works. I had moment of panic when it...

    Ta DA! Works. I had moment of panic when it didn't work the first time, but it was the stage focus.

    I take it keyboard events will not work in a loaded SWF. Eh, whatever works.

    Thanks...
  3. SWF loaded into container keyboard events not working

    I am loading game levels swf's into a container swf.

    The game level swf doesn't register the keyboard events. The EnterFrame and MouseEvents work with the preface...
  4. Replies
    1
    Views
    892

    Button disappearing

    Greetings!

    I am having quite a curious problem. I have a button on frame four that takes you to frame 5. When I return to frame four, said button has disappeared. Plus I receive all the output...
  5. Well, fixed it. The jigsaw game was loaded with...

    Well, fixed it. The jigsaw game was loaded with the x and y positions at 220 and 200 (approx). Once I changed the loader to have the x and y at '0', the game worked perfectly.

    I will have to...
  6. allPcsAreCorrect() checks an array to see if all...

    allPcsAreCorrect() checks an array to see if all the pcs have been placed.

    The only other objects in the container are a backdrop that is behind the loader and a drop down menu to the side that...
  7. Any body? Bueller? Bueller?

    Any body? Bueller? Bueller?
  8. Here is the code for the drop and drag: ...

    Here is the code for the drop and drag:


    function dragPcs(e:MouseEvent):void
    {
    for (var i=0; i<PcsArray.length; i++)
    {
    if (PcsArray[i].hitTestPoint(mouseX,mouseY,true))
    {...
  9. loaded swf in container swf drop and drag not working

    I have a jig saw puzzle that works fine on its own, but once loaded into a container swf, the drop and drag becomes sporadic. The pieces will not drag, then they will drag but not drop, then they...
  10. Replies
    230
    Views
    512,225

    Sticky: Xmas themed slot machine

    Just what the title says: a Xmas themed slot machine.

    Slot Machine Game

    Discuss
  11. Replies
    0
    Views
    848

    Xmas themed slot machine.

    link:

    http://lk186.aisites.com/xmas2010/xmasgame2010.html

    Discuss.
  12. Replies
    3
    Views
    622

    I just wanted to thank you again for answering my...

    I just wanted to thank you again for answering my question and pointing me in the right direction, with further research, I was able to utilize the timer complete event to help with a number of...
  13. Replies
    3
    Views
    622

    Thanks, I was able to get it to work by adding a...

    Thanks, I was able to get it to work by adding a timer complete event with the reset:



    var addTenPointsTimer:Timer=new Timer(500, 10);
    var currentScore = 0;
    score.text = "0";

    function...
  14. Replies
    3
    Views
    622

    TimerEvent only works once

    I can only run a timer.start(); command once, the second time it will only run once instead of the value of 10 repeat.



    var addTenPointsTimer:Timer=new Timer(500, 10);
    var currentScore = 0;...
  15. Replies
    2
    Views
    572

    Please, can you tell me your solution? I'm...

    Please, can you tell me your solution? I'm having the exact same problem.
  16. Replies
    5
    Views
    3,005

    Thanks! I was able to make it work.

    Thanks! I was able to make it work.
  17. Replies
    5
    Views
    3,005

    display score as dollar and cents amounts

    I’m making a game that requires the user to earn money.
    I’m able to display the numbers using:

    scoreDisplay.text = gameScore.toFixed(2);

    But I cannot seem to create a variable that will...
  18. Thread: Hand cursor

    by friedegg3
    Replies
    1
    Views
    432

    The only way I know of (and that no way suggests...

    The only way I know of (and that no way suggests it is the one and only way) is when the MC already is placed on the stage as an instance.

    In the properties box, with the MC selected, change the...
  19. Replies
    1
    Views
    2,765

    In all of your event listeners you are assigning...

    In all of your event listeners you are assigning the function 'clickedButton', so each button takes you to frame 2. Change the EASY_BUTTON event listener's function to 'clickedButton3', the...
  20. Replies
    3
    Views
    589

    I'm assuming it's setChildIndex('some number');,...

    I'm assuming it's setChildIndex('some number');, where the 'some number' is the level in the stacking order and controled with the MOUSE_DOWN and MOUSE_UP handlers.

    it 'knows' which level to...
  21. Replies
    2
    Views
    625

    function GameOver(event:Event) { if...

    function GameOver(event:Event) {
    if (blnGameOver) {
    gotoAndStop("gameover");
    stage.removeEventListener(Event.ENTER_FRAME,movepika);...
  22. Replies
    2
    Views
    802

    Thank You! Both work fine!

    Thank You!

    Both work fine!
  23. Replies
    2
    Views
    802

    Drag with hitTestObject question

    Is it possible while dragging a mc to have a conditional statement?

    What I would like to do is drag a mc and if it overlaps another mc, the dragging mc changes frame. It will only change frames...
  24. I’ve downloaded your fla and have some...

    I’ve downloaded your fla and have some comments:

    First your script is unorganized. For example: You have script for the mountains on lines 5, 6 and 8, then again on line 20 and 21, and again on...
  25. I tried to download your fla, but the link was...

    I tried to download your fla, but the link was broken.

    Keeping all you AS on the main time line is not a bad idea.

    You could check which frame your balloon mc is on by altering the following...
Results 1 to 25 of 68
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center