Solidworks screen size
Solidworks screen size
(OP)
I had found a macro to set the Solidworks screen size (the part/assembly side) to a size you want so that you can save the jpg file at the desired size, but I can't find it anymore. The reason for this is that I am using a macro on Lenny's site called RotateViewPro and I wanted to make an animated gif out of the images.
http://webpages.charter.net/mkikstra/SolidWorks.ht...
If you don't know the screen size macro I am talking about, do you know of another way to set it?
Flores
http://webpages.charter.net/mkikstra/SolidWorks.ht...
If you don't know the screen size macro I am talking about, do you know of another way to set it?
Flores






RE: Solidworks screen size
You mean something along the lines of:
CODE
Dim modelDoc As Object
Dim modelView As Object
Sub main()
Set swApp = CreateObject("SldWorks.Application")
Set modelDoc = swApp.ActiveDoc
Set modelView = modelDoc.activeView
modelView.Scale2 = 1.43
modelDoc.graphicsRedraw2
End Sub
Remember...
"If you don't use your head,
your going to have to use your feet."
RE: Solidworks screen size
The macro I had previously found did just that, but there are several Solidworks sites with macros, and I haven't been able to find it again.
Flores
RE: Solidworks screen size
http://www.nhcad.com/old/html/example13.html
One note: the file window can't be maximized for it to work, it has to be smaller than maximized. After using "RotateViewPro", I used Irfanview to batch-convert the jpg's to a "gif" file.
Finally, I downloaded Microsoft GIF Animator at:
http://www.rocketdownload.com/details/inte/4282.ht...
Flores