Whats wrong with this code?

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Whats wrong with this code?

    Hi all,

    Whats wrong with this code? Am I able to create objects in a loop like this?

    var obj : Object;
    for (i=0; i<10; i++){
    obj = new Object();
    obj.x = Math.random(5);
    obj.y = Math.random(5);
    }

    For some reason I have problems when I do multiple instances like that based
    on the same variable.

    Any ideas?
    Pea

    Pea Guest

  2. Similar Questions and Discussions

    1. math.random.whats wrong with my code?!!
      Why is it doing this?? What I want is for my mc to slide to a new random x position when it is less than 5 pixels away from its target, it keeps...
    2. Anyone know whats wrong with this?
      hi all, I have a form with a text box and a checkbox. If the text box is empty the page retreives records based on this text and if the check box...
    3. whats wrong with my fullscreen code?
      on(press) { if ("fullscreen" == true ) { fscommand("fullscreen", "false"); } else { fscommand("fullscreen", "true"); }}
    4. [PHP] Whats wrong with my code?
      Stevie D Peele wrote: Yeah. You need a ; at the end of the line before that. Like: include ($include);
    5. Whats wrong with this code?
      Ray, This is the wrong syntax for the CASE expression. There are two valid kinds of CASE expression: CASE <expression> WHEN <value 1> THEN...
  3. #2

    Default Re: Whats wrong with this code?

    isn't it
    ----
    for (i=0; i<10; i++){
    obj[i] = new Object();
    ----
    ?
    I am confused
    --

    Pierre Alain

    com


    "Pea" <com> a écrit dans le message de
    news:c28hpb$26e$macromedia.com... 
    this? 
    based 


    PierreAlain Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139