Stuck!

ive just downloaded the PIXEL EXPERIMENT.
and i saw how it was done… but what if i want to change the letter how can i do that…???

Edit the letter arrays :wink:

The 1s represent the dots, and the 0s represent the empty areas.

If I remember corrently they are in something like a 5x5 multidimensional array (but whatever, doesn’t matter).

xxxxx
xxxxx
xxxxx
xxxxx
xxxxx

Now picture replacing those "x"s with 0s and 1s to make your letter, for example an “I” would be something like…

11111
00100
00100
00100
11111

(see how the 1s kind make the shape of an “I”)
Which in the AS would go something like this…

[AS]letterI = new Array([1, 1, 1, 1, 1], [0, 0, 1, 0, 0], [0, 0, 1, 0, 0], [0, 0, 1, 0, 0], [1, 1, 1, 1, 1]);[/AS]

But please note: The pixel experiment is not for people new to AS, it is quite advanced. Crawl before you can walk, walk before you can run, run before you can jump off a cliff :beam:

hehehe well i think i am trying to jump off the cliff ! :hair:

ill take a look at it…
thats alot…

and try to start a something a little more easy