565

flash mouse x y

this.createTextField("mouse_txt", 999, 5, 5, 100, 100);mouse_txt.html = true;mouse_txt.wordWrap = true;mouse_txt.border = true;mouse_txt.autoSize = true;mouse_txt.variable = yCoord;mouse_txt.selectable = false;this.createTextField("mouse_txty", 800, 50, 5, 100, 100);mouse_txty.html = true;mouse_txty.wordWrap = true;mouse_txty.border = true;mouse_txty.autoSize = true;mouse_txty.variable = yCoord;mouse_txty.selectable = false;//var mouseListener:Object = new Object();mouseListener.onMouseDown = function() { var table_str =_xmouse; var table_stry =_ymouse; mouse_txt.htmlText = table_str; mouse_txty.htmlText = table_stry;};Mouse.addListener(mouseListener);вот написал с хелпами скрипт, мне нужн стобы поля в которые вписываются значения х и У имели variable = yCoord,хКоорд именачтобы потом передать эти Вариаблы дальшене могу добиться чтобы эти созданные TextFieldы имели такие Вары
0