Modelling a Aircraft - F9F-5

 From:  Michael Gibson
2036.22 In reply to 2036.21 
Hi Kevin, re: background image toggle:

> That would be very helpful, what script do I have
> to enter to get this to work ?

Use this script - this script targets a specific image name, change the name that is at the front of the script inside the ' ' quotes to target a specific image.
code:
script:var imgname = 'F9F-5 Side.jpg'; var images = moi.view.getBackgroundImages(); for ( var i = 0; i < images.length; ++i ) { var img = images.item(i); if ( img.fileName.indexOf( imgname ) != -1 ) img.hidden = !img.hidden; }


If you set that up under Options / Shortcut keys, that will allow you to toggle a particular image on or off with one keystroke.

- Michael