1
I am new to JavaScript. How can this be done properly?
function setColors(e){ e.style.backgroundColor=’red’; e.style.borderColor=’green’; e.style.color=’blue’; } function getColors{ var E=new Array( document.getElementById(‘a’), document.getElementById(‘b’), document.getElementById(‘c’) ); for(i=0;i<=E.length;i++) setColors(E[i]); }
Answer Question
| July 12, 2009 2:54 PM
Functions, help, JavaScript, objects, References
function setColors(e){ e.style.backgroundColor=’red’; e.style.borderColor=’green’; e.style.color=’blue’; } function getColors{ var E=new Array( document.getElementById(‘a’), document.getElementById(‘b’), document.getElementById(‘c’) ); for(i=0;i<=E.length;i++) setColors(E[i]); }
use vba to draw graphics in ms word
can vba create drawing “free hand” or by joining forms and circles together (putting one near another is good enough)
Answer Question
| June 6, 2008 4:04 PM
Microsoft Word, objects, VBA, VBA editor
can vba create drawing “free hand” or by joining forms and circles together (putting one near another is good enough)
1





