Показать сообщение отдельно
  #12 (permalink)  
Старый 24.07.2009, 11:22
Аватар для B~Vladi
Модератор Всея Форума
Отправить личное сообщение для B~Vladi Посмотреть профиль Найти все сообщения от B~Vladi
 
Регистрация: 14.05.2009
Сообщений: 4,021

var i=1;
stage.new_player_model = function (left, top){
    var onew=document.createElement("img");
    onew.src="sprites/full_plt/looking e0.gif"
    onew.id='b'+i
    onew.width=64
    onew.what="player"
    onew.left=left
    onew.top=top
    onew.actor='full_plt'
    onew.pscen='running_e'
    onew.animations = new Array("running_e")
    onew.wvector='w'
    onew.nvector='n'
    onew.evector='e'
    onew.svector='s'
    onew.vector='e'
    onew.routx='5'
    onew.routy='0'
    onew.rmv='0'
    onew.style.width=onew.width+'px'
    onew.style.position="absolute"
    onew.style.left=onew.left+'px'
    onew.style.top=onew.top+'px'
    onew.timeturn=ttimeline.length
    ttimeline.push(onew.id)
    i++
    document.getElementById("oworld").appendChild(onew)
}
Ответить с цитированием