[FLMX] variableN ????

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

  1. #1

    Default [FLMX] variableN ????

    hi everybody...
    now, i've got a variable N that is a number > 0

    now i've got another variable X... its value must be the same as the
    variable JimN where JimN is a variable i called from an external file

    for example....

    Jim1 = "abc"
    Jim2 = "def"
    Jim3 = "ghi"
    Jimn = "lmn"

    if n = 1 then X = Jim1
    if n = 2 then X = Jim2
    if n = 3 then X = Jim3
    if n = n then X = Jimn

    how can i do it?

    i tried this... but :-(
    numbnews = 1;
    titolo = NewstitoloIT2&numbnews;


    Thanks.. bye



    Mirko Guest

  2. Similar Questions and Discussions

    1. flmx loadtext
      hello, some good page that explains how to build a simple text loader?
    2. flmx newbie help swf projector
      Hi, I'm building a projector file, and I wish to add in it a button to close the projector iteself. Any suggestions? Second: how to autostart the...
    3. [FLMX] $version
      I have the following piece of code in my Flash movie: var v = new Array() ; var vn = new Array() ; v = $version.split(" ") ; // For example:...
    4. FLMX: Backgroundfader
      Hi I like to do a background fader like the one in the diesel.com menu. How can I built it? On (rollover) and on (rollout) doesn't work because...
  3. #2

    Default Re: [FLMX] variableN ????

    since you have this kind of symmetry, store your variables in an array. Much simpler.
    rlc5611 Guest

  4. #3

    Default Re: [FLMX] variableN ????

    thanks
    "rlc5611" <webforumsuser@macromedia.com> ha scritto nel messaggio
    news:c60g71$p8u$1@forums.macromedia.com...
    > since you have this kind of symmetry, store your variables in an array.
    Much simpler.


    Mirko 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