# E in 3d fla sample in kirupa.com

**URL:** https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622
**Category:** Uncategorized
**Created:** [April 18, 2003, 6:44pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622 "2003-04-18T18:44:17Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Sikander](https://avatars.discourse-cdn.com/v4/letter/s/b2d939/32.png) [@Sikander](https://forum.kirupa.com/u/Sikander)
#### Post date: [April 18, 2003, 6:44pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/1 "2003-04-18T18:44:17Z")

</div>

i got this [http://www.kirupa.com/lab/ein3d.htm](http://www.kirupa.com/lab/ein3d.htm) so how can i use my own words instead of e?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 18, 2003, 7:01pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/2 "2003-04-18T19:01:34Z")

</div>

The code you are talking about uses points in an array to draw lines to.

If you look in the Action Script in the first frame, at the bottom, that’s the array. The first entry in the X array corresponds to the first entry in the Y array, and so on.

If you’re truly ambitions, you can code your own points on the grid to represent your own text.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 18, 2003, 7:04pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/3 "2003-04-18T19:04:13Z")

</div>

Note: I tried to change it to a square, but apparently, one of your points MUST cross over the origin.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 18, 2003, 7:06pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/4 "2003-04-18T19:06:29Z")

</div>

i didn’t get it.

there is

Xcoords = new Array(-3, 3, 3, -1, -1, 2, 2, -1, -1, 3, 3, -3);  
Ycoords = new Array(5, 5, 3, 3, 1, 1, -1, -1, -3, -3, -5, -5);

what i edit in it?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 18, 2003, 7:34pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/5 "2003-04-18T19:34:40Z")

</div>

Imagine a coordinate plane.

The first array is the X value of each “point,” an entry in each array corresponding to the same entry in the second array, the Y’s of the “points.”

So,

XCoords(2,-3,0);  
YCoords(2,1,0);

Would give a triangle with points  
(2, 2), (-3, 1), (0, 0)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 19, 2003, 1:23pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/6 "2003-04-19T13:23:48Z")

</div>

i want to know what i edit in it if i want to change word “e” to “Sikander”.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 21, 2003, 1:12pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/7 "2003-04-21T13:12:42Z")

</div>

So i can’t do that?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 21, 2003, 1:24pm UTC](https://forum.kirupa.com/t/e-in-3d-fla-sample-in-kirupa-com/18622/8 "2003-04-21T13:24:11Z")

</div>

If you wanted to change the “e” to “Sikander” you would have to find the coordinates of every point in every letter and set each letter up in different arrays, set up like the original e.

Well I’m not sure about the seperate array thing, but I’m sure it would be very difficult.
