# Explain to me the meaning of each line

**URL:** https://forum.kirupa.com/t/explain-to-me-the-meaning-of-each-line/193909
**Category:** flash
**Created:** [July 19, 2006, 6:19am UTC](https://forum.kirupa.com/t/explain-to-me-the-meaning-of-each-line/193909 "2006-07-19T06:19:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![santalea](https://avatars.discourse-cdn.com/v4/letter/s/d6d6ee/32.png) [@santalea](https://forum.kirupa.com/u/santalea)
#### Post date: [July 19, 2006, 6:19am UTC](https://forum.kirupa.com/t/explain-to-me-the-meaning-of-each-line/193909/1 "2006-07-19T06:19:52Z")

</div>

can someone help me with the meaning of each line… thanx  
[FONT=Courier New]  
[/FONT]

[AS]  
function initMap():Void {  
var send\_lv:LoadVars = new LoadVars();  
var rec\_lv:LoadVars = new LoadVars();  
send\_lv.sendAndLoad(\_global.serverURL + “mine.jsp”, rec\_lv, “POST”);  
rec\_lv.onLoad = function(success:Boolean) {  
if (success) {  
var i:Number = 0;  
while (rec\_lv[“Long”+i] != null){  
mUnit\* = new Mappie(rec\_lv[“Long”+i], rec\_lv[“Lati”+i], rec\_lv[“Ang”+i]);  
i++;  
}  
[/AS]  
[FONT=Courier New][/FONT]
