Tuesday, June 28, 2016

atnbgsetupleftbuttonbaraddwhattomovereadout()

backatnbgbegin()

atnbgsetupleftbuttonbaraddwhattomovereadout() {
var readout = createreadout()
idreadout(button);stylereadout(button);initializereadout(button)

function createreadout() {
var readout = document.createElement("div")
document.getElementById("atnbgleftbuttonbar").appendChild(readout)
return readout}

function stylereadout(readout) {
var id = document.createAttribute("id")
readout.setAttributeNode(id)id.value = "atnbgwhattomovereadout"}

function stylereadout(readout) {
var style = document.createAttribute("style")
readout.setAttributeNode(style)
style.value = "position:absolute;left:0%;bottom:0%;width:100%"
style.value = style.value + ";height:5%;color:violet;background-color:lightgrey"}

function innitializereadout(readout) {
var wtm = "atnbgframe"
var initval = document.createTextNode(wtm)
readout.appendChild(initval)}

}