# How can i make it in 2 column

**URL:** https://forum.kirupa.com/t/how-can-i-make-it-in-2-column/262744
**Category:** Uncategorized
**Created:** [June 9, 2008, 4:17pm UTC](https://forum.kirupa.com/t/how-can-i-make-it-in-2-column/262744 "2008-06-09T16:17:48Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![insane21](https://avatars.discourse-cdn.com/v4/letter/i/94ad74/32.png) [@insane21](https://forum.kirupa.com/u/insane21)
#### Post date: [June 9, 2008, 4:17pm UTC](https://forum.kirupa.com/t/how-can-i-make-it-in-2-column/262744/1 "2008-06-09T16:17:48Z")

</div>

hi everyone !!! its nice to be here :thumb:…

i having a problem on how can i make a dynamic data loading in a system with the scrollbar in 2 column…

[SIZE=4]data1[/SIZE][SIZE=4] | data2 [/SIZE][SIZE=4][COLOR=Red] **↑** [/COLOR]  
data3 | data4  
data5 | data6 [/SIZE][COLOR=Red]**[SIZE=4]↓[/SIZE]**[/COLOR]

like this:  
[[SIZE=2]Creating a dynamic list from XML[/SIZE]](http://www.fuoridalcerchio.net/wordpress/2008/05/06/dynamicxmllist/)

here is the [.fla](http://www.fuoridalcerchio.net/flashexamples/dynamicxmllist.rar)

* * *

iv tried this code  
but still in one column…

for (h=0; h\<2; h++) {  
for (m=0; m\<theData.length; m++) {

```
    mc_item = container_mc.attachMovie("itemlist","item"+m, 1024+m); 
    mc_item._x = (mc_item._width + spaceBetween) * h;  
    mc_item._y = (mc_item._height + spaceBetween) * m; 
    
   
    
    mc_item.date_txt.text = theData[m].field1; 
    mc_item.location_txt.text = theData[m].field2; 
    
    positions.push(mc_item._y); 
    counter++;
    
}

}

```

result:  
[SIZE=4]data1 [/SIZE][SIZE=4][COLOR=Red] **↑** [/COLOR]  
data2  
data3 [COLOR=Red]|[/COLOR]  
data4  
data5 [/SIZE][COLOR=Red]**[SIZE=4]↓[/SIZE]**[/COLOR]

* * *

tnx!!!

---

<div class="post-metadata">

### Author: ![jon\_bla](https://avatars.discourse-cdn.com/v4/letter/j/ecc23a/32.png) [@jon\_bla](https://forum.kirupa.com/u/jon_bla)
#### Post date: [June 9, 2008, 4:56pm UTC](https://forum.kirupa.com/t/how-can-i-make-it-in-2-column/262744/2 "2008-06-09T16:56:19Z")

</div>

[http://livedocs.adobe.com/flash/mx2004/main\_7\_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash\_MX\_2004&file=00001040.html](http://livedocs.adobe.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=00001040.html)

---

<div class="post-metadata">

### Author: ![insane21](https://avatars.discourse-cdn.com/v4/letter/i/94ad74/32.png) [@insane21](https://forum.kirupa.com/u/insane21)
#### Post date: [June 12, 2008, 4:51am UTC](https://forum.kirupa.com/t/how-can-i-make-it-in-2-column/262744/3 "2008-06-12T04:51:17Z")

</div>

its more complex than what i thought!!!  
i only want a 2 column data with a scrollbar…
