var fDesc=new Array();
fDesc[0] = "Concept Design & Illustration Software
Explore design concepts and produce stunning artwork with Autodesk® SketchBook® Designer illustration software. In addition to the professional-quality sketching capabilities that people have come to expect from Autodesk SketchBook software, SketchBook Designer enables professional designers and artists to use a hybrid paint and vector workflow for concept design illustration and graphic design. Within its intuitive creative environment, even new users can be productive in minutes.
Autodesk SketchBook Designer for AutoCAD
Access the advantages of SketchBook Designer directly from inside AutoCAD® software. Autodesk SketchBook Designer for AutoCAD adds integrated workflows that enable instant access within AutoCAD to illustration, painting, and concept design capabilities.
SketchBook Designer is especially helpful for:
Quickly expressing concept ideas
Creating professional-quality design illustrations
Sketching, marking up, and annotating directly on top of AutoCAD content
Manipulating and compositing images to quickly create variations when ideating, or live iteration during concept reviews.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}