def=returns for a specified model an array of three values: [lineWidth, lineColor, lineAlpha]

Flash3DInstance..model[modelID].getLineStyle(); &sam=

//creates a throbbing of the wireframe lines


myWorld = new Flash3D(270, 200, 0);

p = myWorld.newModel("myPyr", "pyramid");

p.rotate(30, 30, 0);

dir = 1;

_root.createEmptyMovieClip("throb", 200);

throb.onEnterFrame = function() {

var ls = p.getLineStyle();

if (ls[0] %26lt%3B= 0 || ls[0] > 10) {

dir *= -1;

}

p.setLineStyle(ls[0] %2B dir, ls[1], ls[2]);

myWorld.render();

}