A Flash Developer Resource Site

Search:

Type: Posts; User: stork1515

Page 1 of 7 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    5
    Views
    535

    Why does this only duplicate once? It seems to...

    Why does this only duplicate once? It seems to not want to loop.

    alphaTemp = math.random()*100;
    xTemp = math.random()*100;
    yTemp = math.random()*100;
    xpos = math.random()*550;
    ypos =...
  2. Replies
    5
    Views
    535

    Thanks for the help. I'm gonna give it a go right...

    Thanks for the help. I'm gonna give it a go right now.
  3. Replies
    5
    Views
    535

    Hello- I'm a little out of practice so I came...

    Hello-

    I'm a little out of practice so I came here to consult the Flash gurus. I want to take one mc and when the movie is loaded I want to duplicate that mc a random number of times (within 40 or...
  4. Replies
    1
    Views
    416

    Can someone post some code to make a close windoe...

    Can someone post some code to make a close windoe button? It's for a friend's school project.

    Thanks
    Dan
  5. Replies
    6
    Views
    597

    you read my mind arctic!

    you read my mind arctic!
  6. Replies
    6
    Views
    597

    sorry, actually doing it that way will add the...

    sorry,

    actually doing it that way will add the numbers. You will have to make five different text boxes and then you could do it like this:

    -declare this function

    function...
  7. Replies
    6
    Views
    597

    onClipEvent (enterFrame) { _root.text =...

    onClipEvent (enterFrame) {
    _root.text = random(9)+random(9)+random(9)+random(9);
    }

    -you can put this code in an empty mc on the main timeline with your text box.

    -dan
  8. Replies
    5
    Views
    647

    is there a certain object on that frame that is...

    is there a certain object on that frame that is the majority of the "size" in that frame> If so maybe you can use mc.getBytesLoaded instead of getting the bytes from the root. Its just a thought, no...
  9. Replies
    5
    Views
    554

    I think the reason it goes back to the top of the...

    I think the reason it goes back to the top of the page in html is it is actually a different html page whereas in Flash it is still the same html page and the back and next buttons only affect your...
  10. Replies
    1
    Views
    404

    make "main" a frame label on the first frame of...

    make "main" a frame label on the first frame of that scene and try gotoAndStop ("main");


    -dan
  11. Replies
    1
    Views
    500

    Modify > Frames > Reverse

    Modify > Frames > Reverse
  12. Replies
    1
    Views
    479

    do the same thing but instead of subtracting 2,...

    do the same thing but instead of subtracting 2, add it.
  13. like this: function info () { ...

    like this:

    function info () {
    _root.stream.streaming.gotoAndPlay(2);
    songplaying="true";
    _root.clock.active = 1;
    }

    -dan
  14. You need to use a function. There are plenty of...

    You need to use a function. There are plenty of tutorials around on functions and they're all pretty good.

    -dan
  15. Replies
    3
    Views
    526

    sorry, this --> " " " input " " should...

    sorry,

    this --> " " " input " "


    should say--> variable name for input text box
  16. Replies
    3
    Views
    526

    instead of having the same variable name do...

    instead of having the same variable name do something like this:

    variable name for dynamic tex box= output
    " " " input " " =input

    now on your button put:

    on(release) {
    ...
  17. Replies
    9
    Views
    772

    _root.ball._x += 20; if(_root.ball._x >=...

    _root.ball._x += 20;

    if(_root.ball._x >= 550){
    _root.ball._y += 20;
    }
  18. Replies
    9
    Views
    772

    I'll assume you're using deva_station's code to...

    I'll assume you're using deva_station's code to do this. In this case you could put _root.ball._y -= 10; after the if statment, instead of stopping it at 400 just start moving it down when it gets to...
  19. Replies
    5
    Views
    585

    don't know what that means. You might want to...

    don't know what that means. You might want to double check your variable names, instances, and targeting to make sure everything is correct.
  20. Replies
    9
    Views
    772

    you need to put that code in an empty movie clip...

    you need to put that code in an empty movie clip and then select linkage and give it an identifier. then you can use attachMovie and removeMovieClip to start and stop the movement.

    -dan
  21. Replies
    5
    Views
    585

    its really pretty easy. all you need to do is...

    its really pretty easy. all you need to do is have an input text field and a dynamic text field that will be the text that gets changed. The only catch is it needs to be in a timeline loop or an...
  22. Replies
    4
    Views
    505

    stereokitchen is correct, the boolean value for a...

    stereokitchen is correct, the boolean value for a letter is false so neither of those if statements would work, unless you have declared z and x as numbers previously.
  23. Replies
    42
    Views
    2,853

    Thanks James. Keeping it on top... --dan

    Thanks James.

    Keeping it on top...

    --dan
  24. Replies
    2
    Views
    540

    What you can do is load the movie into a "holder"...

    What you can do is load the movie into a "holder" movie clipand then you can position the movie clip, that now has the swf loaded into it, anywhere you want.

    -dan
  25. the next one above works too!

    the next one above works too!
Results 1 to 25 of 168
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center