A Flash Developer Resource Site

Search:

Type: Posts; User: TheCitizen

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    294

    Text Attribute Variables?

    What in all attributes can you assign to text using actionscript?

    Can you set the orientation, IE left, right, center as well as the text size?
  2. Replies
    0
    Views
    399

    Performace Otimization Tips?

    Does anyone have any tips for optimum performance?

    For instance, are there any 'commonly' known rules of thumb like using symbols over drawn boxes and any unnecessary settings that should be...
  3. well, im making a game where the ammo that you...

    well, im making a game where the ammo that you shoot out are all duplicated clips

    I need the "enemy" objects to hit test with the duplicated ammo
  4. Hit Detection with duplicated clips - needs help!

    When I duplicate a clip, the name changes and I can no longer use the origional clip's name for hit detection.

    How do I go about testing collisions with duplicated clips?
  5. Thanks a bundle to all of you for your help! I...

    Thanks a bundle to all of you for your help! I learned a lot about z values and how they work because of you guys (and girl?).

    Thanks again
    -Citizen
  6. _root.select1 = random(10); if ((_root.select1...

    _root.select1 = random(10);
    if ((_root.select1 == 1) && (_root.spawn == true)){
    _root.count1 += 1;
    _root.newDepth1 += 1;
    _root.tree.duplicateMovieClip("treex"+_root.count1, _root.newDepth1);...
  7. How?

    How?
  8. How do I make it so that the duplicated clips...

    How do I make it so that the duplicated clips dont go above the stuff I already have in the movie?
  9. Also, is there a better way to duplicate clips...

    Also, is there a better way to duplicate clips than the way I have it set up?
  10. Didn't work. Here's my souce if you can...

    Didn't work.

    Here's my souce if you can figure out what the problem is:
  11. Yup, the clips were created using duplicateClip ...

    Yup, the clips were created using duplicateClip

    This is placed in a two frame clip with the code copied twice. The clips do duplicate but they do not get removed by the above code.

    ...
  12. Doesnt remove the movie clip - help please!

    onClipEvent (enterFrame) {
    if(_y < 400){
    _y += 8;
    }
    if(_y >= 400){
    removeMovieClip("");
    }
    }
    For some reason, the clip will move down but it wont destroy after it gets above 400 y.
  13. Replies
    2
    Views
    1,080

    /bump

    /bump
  14. Replies
    2
    Views
    1,080

    What happened to MX 2004?

    I haven't been around for awhile (school) but I seem to notice with the release of Flash 8 that people are grouping MX and MX 2004 into one category?
  15. Replies
    1
    Views
    659

    Is flash 8 compatable with flash 2004?

    Can the files go back and forth between the two versions? Have there been changes to actionscript?
  16. the only problem is that I'm working in a...

    the only problem is that I'm working in a different scene, so it doesnt work if i put down _root.gotoAndStop. I want to be able to traverse through frames within the same scene but the code doesnt...
  17. Code not going to the second frame... help!

    onClipEvent (enterFrame) {
    if (this.hitTest(_root.char.charHit)){
    gotoAndStop(2);
    _root.char._x = 20;
    }
    }
    When the object comes in contact with the object containing this code, object...
  18. How do I make a cookie to save variables?

    ?
  19. ?

    ?
  20. What do I type in for the range to embed all?...

    What do I type in for the range to embed all? What does embedding do?
  21. What do you mean by embed font? I tried that...

    What do you mean by embed font?

    I tried that second method with dynamic text and it didn't work.
  22. So, I would do the following: 1. Make a...

    So, I would do the following:

    1. Make a dynamic text field named my_txt with no variable linked to it
    2. Use:
    _root.my_text.text = "string";
    to change the text.
    3. Use:
    _root.my_text._alpha...
  23. I don't have a clue as to what you just said.

    I don't have a clue as to what you just said.
  24. I used the tutorial but can't seem to get it to...

    I used the tutorial but can't seem to get it to work. Once I have the formatting in there, how do I apply it to a dynamic text field?
  25. Is there a method for changing dynamic text alpha property?

    If so, what is the method?
Results 1 to 25 of 59
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center